From e8bfeb0783f7213b1e2407d7b1f9285ede2e8fa1 Mon Sep 17 00:00:00 2001 From: may-hartov Date: Thu, 25 Dec 2025 09:33:05 +0200 Subject: [PATCH 1/6] include only the updated properties in set request payload --- .../commands/fs/set/fab_fs_set_capacity.py | 4 +- .../commands/fs/set/fab_fs_set_connection.py | 6 +- .../commands/fs/set/fab_fs_set_domain.py | 24 +++----- .../commands/fs/set/fab_fs_set_folder.py | 4 +- .../commands/fs/set/fab_fs_set_gateway.py | 4 +- .../commands/fs/set/fab_fs_set_item.py | 44 ++++++++----- .../commands/fs/set/fab_fs_set_onelake.py | 4 +- .../commands/fs/set/fab_fs_set_sparkpool.py | 11 ++-- .../commands/fs/set/fab_fs_set_workspace.py | 4 +- src/fabric_cli/utils/fab_cmd_set_utils.py | 61 ++++++++++++++----- tests/test_utils/test_fab_cmd_set_utils.py | 45 ++++++++++++-- 11 files changed, 140 insertions(+), 71 deletions(-) diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py b/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py index db66cbb6..09ced881 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py @@ -29,8 +29,8 @@ def exec(virtual_ws_item: VirtualWorkspaceItem, args: Namespace) -> None: args.output = None vwsi_capacity_def = get_capacity.exec(virtual_ws_item, args, verbose=False) - json_payload, updated_def = utils_set.update_fabric_element( - vwsi_capacity_def, query, args.input, decode_encode=False + updated_def = utils_set.update_fabric_element( + vwsi_capacity_def, query, args.input ) def _prep_for_updated_def(data): diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py b/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py index 8e59d272..0663716e 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py @@ -25,9 +25,10 @@ def exec(connection: VirtualWorkspaceItem, args: Namespace) -> None: args.deep_traversal = True args.output = None vwsi_connection_def = get_connection.exec(connection, args, verbose=False) + connectivity_type = vwsi_connection_def.get("connectivityType", "") - json_payload, updated_def = utils_set.update_fabric_element( - vwsi_connection_def, query, args.input, decode_encode=False + updated_def = utils_set.update_fabric_element( + vwsi_connection_def, query, args.input ) def _prep_for_updated_def(data): @@ -36,6 +37,7 @@ def _prep_for_updated_def(data): data.pop( "connectionDetails", None ) # Remove 'connectionDetails' if it exists + data["connectivityType"] = connectivity_type # Add 'type' back return json.dumps(data, indent=4) connection_update_def = _prep_for_updated_def(updated_def) diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py b/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py index 43183c6f..bc640bda 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py @@ -26,28 +26,22 @@ def exec(virtual_ws_item: VirtualWorkspaceItem, args: Namespace) -> None: args.output = None vwsi_domain_def = get_domain.exec(virtual_ws_item, args, verbose=False) - _, updated_def = utils_set.update_fabric_element( - vwsi_domain_def, query, args.input, decode_encode=False + updated_def = utils_set.update_fabric_element( + vwsi_domain_def, query, args.input ) - def _prep_for_updated_def(data): - data.pop("id", None) # Remove 'id' if it exists - data.pop("type", None) # Remove 'type' if it exists - data.pop("name", None) # Remove 'name' if it exists - data.pop("tags", None) # Remove 'tags' if it exists - return json.dumps(data, indent=4) - - domain_update_def = _prep_for_updated_def(updated_def) args.name = virtual_ws_item.short_name args.id = virtual_ws_item.id utils_ui.print_grey(f"Setting new property for '{virtual_ws_item.name}'...") - response = domain_api.update_domain(args, domain_update_def) + response = domain_api.update_domain(args, updated_def) if response.status_code == 200: - # Update mem_store - new_domain_name = updated_def["displayName"] - virtual_ws_item._name = new_domain_name - utils_mem_store.upsert_domain_to_cache(virtual_ws_item) + if "displayName" in updated_def: + # Update mem_store + new_domain_name = updated_def["displayName"] + virtual_ws_item._name = new_domain_name + utils_mem_store.upsert_domain_to_cache(virtual_ws_item) utils_ui.print_output_format(args, message="Domain updated") + diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py b/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py index 39045110..2ce398aa 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py @@ -26,9 +26,7 @@ def exec(folder: Folder, args: Namespace) -> None: args.output = None folder_def = get_folder.exec(folder, args, verbose=False) - _, updated_def = utils_set.update_fabric_element( - folder_def, query, args.input, decode_encode=False - ) + updated_def = utils_set.update_fabric_element(folder_def, query, args.input) def _prep_for_updated_def(data): data.pop("id", None) # Remove 'id' if it exists diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py b/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py index c42f1f8a..f9a5738d 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py @@ -35,8 +35,8 @@ def exec(gateway: VirtualWorkspaceItem, args: Namespace) -> None: args.output = None vwsi_gateway_def = get_gateway.exec(gateway, args, verbose=False) - json_payload, updated_def = utils_set.update_fabric_element( - vwsi_gateway_def, query, args.input, decode_encode=False + updated_def = utils_set.update_fabric_element( + vwsi_gateway_def, query, args.input ) def _prep_for_updated_def(data): diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_item.py b/src/fabric_cli/commands/fs/set/fab_fs_set_item.py index d6092348..6ce16f7e 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_item.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_item.py @@ -37,9 +37,7 @@ def exec(item: Item, args: Namespace) -> None: def_response = item_api.get_item_definition(args) definition = json.loads(def_response.text) - updated_def = _update_element( - definition, query_value, args.input, decode_encode=True - ) + updated_def = _update_item_definition(definition, query_value, args.input) definition_base64_to_update, _ = utils_set.extract_json_schema(updated_def) update_item_definition_payload = json.dumps(definition_base64_to_update) @@ -49,12 +47,8 @@ def exec(item: Item, args: Namespace) -> None: else: item_metadata = json.loads(item_api.get_item(args, item_uri=True).text) - updated_metadata = _update_element( - item_metadata, query_value, args.input, decode_encode=False - ) - - update_payload_dict = utils_set.extract_updated_properties( - updated_metadata, query_value + update_payload_dict = _update_item_metadata( + item_metadata, query_value, args.input ) item_update_payload = json.dumps(update_payload_dict) @@ -63,25 +57,24 @@ def exec(item: Item, args: Namespace) -> None: item_api.update_item(args, item_update_payload, item_uri=True) if fab_constant.ITEM_QUERY_DISPLAY_NAME in update_payload_dict: - new_item_name = updated_metadata[fab_constant.ITEM_QUERY_DISPLAY_NAME] + new_item_name = update_payload_dict[fab_constant.ITEM_QUERY_DISPLAY_NAME] item._name = new_item_name utils_mem_store.upsert_item_to_cache(item) utils_ui.print_output_format(args, message="Item updated") -def _update_element( - resource_def: dict, +def _update_item_definition( + item_def: dict, query_value: str, input_value: str, - decode_encode: bool, ) -> dict: + """Update item definition with base64 decode/encode.""" try: - _, updated_def = utils_set.update_fabric_element( - resource_def, + updated_def = utils_set.update_item_definition( + item_def, query_value, input_value, - decode_encode=decode_encode, ) return updated_def except (ValueError, KeyError, IndexError): @@ -89,3 +82,22 @@ def _update_element( CommonErrors.invalid_set_item_query(query_value), fab_constant.ERROR_INVALID_QUERY, ) + + +def _update_item_metadata( + item_metadata: dict, + query_value: str, + input_value: str, +) -> dict: + """Update item metadata without base64 encoding.""" + try: + return utils_set.update_fabric_element( + item_metadata, + query_value, + input_value, + ) + except (ValueError, KeyError, IndexError): + raise FabricCLIError( + CommonErrors.invalid_set_item_query(query_value), + fab_constant.ERROR_INVALID_QUERY, + ) diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_onelake.py b/src/fabric_cli/commands/fs/set/fab_fs_set_onelake.py index 849ac95a..512a0073 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_onelake.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_onelake.py @@ -30,8 +30,8 @@ def onelake_shortcut(onelake: OneLakeItem, args: Namespace) -> None: if args.force or utils_ui.prompt_confirm(): # Read new values from the user and retrieve updated shortcut definition with the new values. - _, updated_def = utils_set.update_fabric_element( - shortcut_def, query, args.input, decode_encode=False + updated_def = utils_set.update_fabric_element( + shortcut_def, query, args.input, extract_updated_only=False ) # Check if the new name matches the existing name diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_sparkpool.py b/src/fabric_cli/commands/fs/set/fab_fs_set_sparkpool.py index 80a0bac5..f1dd1afe 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_sparkpool.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_sparkpool.py @@ -31,8 +31,8 @@ def exec(virtual_item: VirtualItem, args: Namespace) -> None: args.output = None vi_spark_pool_def = get_sparkpool.exec(virtual_item, args, verbose=False) - json_payload, updated_def = utils_set.update_fabric_element( - vi_spark_pool_def, query, args.input, decode_encode=False + updated_def = utils_set.update_fabric_element( + vi_spark_pool_def, query, args.input ) def _prep_for_updated_def(data): @@ -48,8 +48,9 @@ def _prep_for_updated_def(data): response = sparkpool_api.update_spark_pool(args, spark_pool_update_def) if response.status_code == 200: - # Update mem_store - virtual_item._name = updated_def["name"] - utils_mem_store.upsert_spark_pool_to_cache(virtual_item) + if "name" in updated_def: + # Update mem_store + virtual_item._name = updated_def["name"] + utils_mem_store.upsert_spark_pool_to_cache(virtual_item) utils_ui.print_output_format(args, message="Spark Pool updated") diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py b/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py index 4bbbd89f..9b691675 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py @@ -31,9 +31,7 @@ def exec(workspace: Workspace, args: Namespace) -> None: utils_set.print_set_warning() if args.force or utils_ui.prompt_confirm(): - json_payload, updated_def = utils_set.update_fabric_element( - workspace_def, query, args.input, decode_encode=False - ) + updated_def = utils_set.update_fabric_element(workspace_def, query, args.input) definition_base64_to_update, name_description_properties = ( utils_set.extract_json_schema(updated_def, definition=False) diff --git a/src/fabric_cli/utils/fab_cmd_set_utils.py b/src/fabric_cli/utils/fab_cmd_set_utils.py index f1d593d4..0e4340bc 100644 --- a/src/fabric_cli/utils/fab_cmd_set_utils.py +++ b/src/fabric_cli/utils/fab_cmd_set_utils.py @@ -76,19 +76,20 @@ def update_fabric_element( resource_def: dict, query: str, input: str, - decode_encode: bool = False, -) -> tuple[str, dict]: + extract_updated_only: bool = True, +) -> dict: """Update a Fabric resource element using a JMESPath query. Args: resource_def: Resource definition dictionary to modify. query: JMESPath expression specifying the path to update. input: New value to set. - decode_encode: If True, decode/encode base64 payloads. Default False. + extract_updated_only: If True, returns only the modified properties extracted + by the query path. If False, returns the entire updated resource definition. + Defaults to True for backward compatibility. Returns: - Tuple of (json_payload, updated_def) where json_payload is the JSON string - and updated_def is the updated dictionary. + Updated dictionary. """ try: input = json.loads(input) @@ -96,18 +97,48 @@ def update_fabric_element( # If it's not a JSON string, keep it as is pass - # Decode > replace > encode - if decode_encode: - decoded_item_def = _decode_payload(resource_def) - decoded_item_def = ensure_notebook_dependency(decoded_item_def, query) - updated_item_def = utils_jmespath.replace(decoded_item_def, query, input) - updated_def = _encode_payload(updated_item_def) - json_payload = json.dumps(updated_def) + updated_def = utils_jmespath.replace(resource_def, query, input) + + if extract_updated_only: + # Extract only the updated properties based on the query path + return extract_updated_properties(updated_def, query) else: - updated_def = utils_jmespath.replace(resource_def, query, input) - json_payload = json.dumps(updated_def) + # Return the entire updated resource definition + return updated_def + + +def update_item_definition( + item_def: dict, + query: str, + input: str, +) -> dict: + """Update an item definition using a JMESPath query with base64 decode/encode. + + This method is specifically designed for updating item definitions that contain + base64-encoded payloads. It decodes the payload, applies the update, and then + re-encodes it. + + Args: + item_def: Item definition dictionary to modify. + query: JMESPath expression specifying the path to update. + input: New value to set. + + Returns: + Updated dictionary with encoded payloads. + """ + try: + input = json.loads(input) + except (TypeError, json.JSONDecodeError): + # If it's not a JSON string, keep it as is + pass + + # Decode > replace > encode + decoded_item_def = _decode_payload(item_def) + decoded_item_def = ensure_notebook_dependency(decoded_item_def, query) + updated_item_def = utils_jmespath.replace(decoded_item_def, query, input) + updated_def = _encode_payload(updated_item_def) - return json_payload, updated_def + return updated_def def print_set_warning() -> None: diff --git a/tests/test_utils/test_fab_cmd_set_utils.py b/tests/test_utils/test_fab_cmd_set_utils.py index e37fc586..32960445 100644 --- a/tests/test_utils/test_fab_cmd_set_utils.py +++ b/tests/test_utils/test_fab_cmd_set_utils.py @@ -9,6 +9,7 @@ from fabric_cli.utils.fab_cmd_set_utils import ( extract_updated_properties, update_fabric_element, + update_item_definition, validate_item_query, ) @@ -18,21 +19,53 @@ def test_update_fabric_element_with_json_input_success(): json_string_input = '{"transparency":{"Value":"70D"}}' - json_payload, updated_def = update_fabric_element( + updated_def = update_fabric_element( resource_def=resource_def, query="definition.parts[0].x", input=json_string_input, - decode_encode=False, ) + # update_fabric_element now extracts only the top-level key from query + assert "definition" in updated_def assert isinstance(updated_def["definition"]["parts"][0]["x"], dict) assert updated_def["definition"]["parts"][0]["x"]["transparency"]["Value"] == "70D" - parsed_payload = json.loads(json_payload) - assert isinstance(parsed_payload["definition"]["parts"][0]["x"], dict) - assert ( - parsed_payload["definition"]["parts"][0]["x"]["transparency"]["Value"] == "70D" + +def test_update_item_definition_with_base64_payload_success(): + import base64 + + # Create a simple item definition with a base64 encoded payload + payload_data = {"key": "old_value"} + encoded_payload = base64.b64encode(json.dumps(payload_data).encode("utf-8")).decode( + "utf-8" + ) + + item_def = { + "definition": { + "parts": [{"path": "notebook.ipynb", "payload": encoded_payload}] + } + } + + updated_def = update_item_definition( + item_def=item_def, + query="definition.parts[0].payload.key", + input="new_value", + ) + + # Verify the payload is re-encoded + assert "payload" in updated_def["definition"]["parts"][0] + assert updated_def["definition"]["parts"][0]["payloadType"] == "InlineBase64" + + # Verify the format is set for ipynb files + assert updated_def["definition"]["format"] == "ipynb" + + # Decode and verify the update was applied + decoded = json.loads( + base64.b64decode(updated_def["definition"]["parts"][0]["payload"]).decode( + "utf-8" + ) ) + assert decoded["key"] == "new_value" def test_extract_updated_properties_preserves_sibling_properties_success(): From a19673b335bf69329010a825c1a0887b79c8a416 Mon Sep 17 00:00:00 2001 From: may-hartov Date: Thu, 25 Dec 2025 13:23:43 +0200 Subject: [PATCH 2/6] set conntection updates --- src/fabric_cli/commands/fs/set/fab_fs_set_connection.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py b/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py index 0663716e..5f12e078 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py @@ -37,7 +37,7 @@ def _prep_for_updated_def(data): data.pop( "connectionDetails", None ) # Remove 'connectionDetails' if it exists - data["connectivityType"] = connectivity_type # Add 'type' back + data["connectivityType"] = connectivity_type # Add 'type' back return json.dumps(data, indent=4) connection_update_def = _prep_for_updated_def(updated_def) @@ -48,7 +48,8 @@ def _prep_for_updated_def(data): if response.status_code == 200: # Update mem_store - connection._name = updated_def["displayName"] - utils_mem_store.upsert_connection_to_cache(connection) + if "displayName" in updated_def: + connection._name = updated_def["displayName"] + utils_mem_store.upsert_connection_to_cache(connection) utils_ui.print_output_format(args, message="Connection updated") From a4dbc16b542fc6d7ce252a00fdf01ca679b9087b Mon Sep 17 00:00:00 2001 From: may-hartov Date: Thu, 1 Jan 2026 08:59:08 +0200 Subject: [PATCH 3/6] fixes and tests --- .../commands/fs/set/fab_fs_set_capacity.py | 12 +- .../commands/fs/set/fab_fs_set_connection.py | 18 +- .../commands/fs/set/fab_fs_set_domain.py | 12 +- .../commands/fs/set/fab_fs_set_folder.py | 16 +- .../commands/fs/set/fab_fs_set_gateway.py | 46 +- .../commands/fs/set/fab_fs_set_item.py | 3 +- .../commands/fs/set/fab_fs_set_workspace.py | 14 +- src/fabric_cli/errors/common.py | 10 + src/fabric_cli/utils/fab_cmd_set_utils.py | 32 +- .../test_commands/test_set/class_setup.yaml | 55 +- .../test_set/test_set_connection_success.yaml | 2526 +++++++---------- ...test_set_domain_invalid_query_failure.yaml | 58 +- ..._domain_metadata_success[description].yaml | 129 +- ..._domain_metadata_success[displayName].yaml | 204 +- ...success[contributorsScope-AdminsOnly].yaml | 137 +- ...der_success[displayName-randomFolder].yaml | 212 +- ...st_set_gateway_duplicate_name_failure.yaml | 189 +- ...st_set_gateway_virtualNetwork_success.yaml | 186 +- .../test_set_item_invalid_query_failure.yaml | 94 +- ...m_metadata_success[description-False].yaml | 202 +- ...em_metadata_success[displayName-True].yaml | 282 +- ..._definition_semantic_model_id_success.yaml | 460 +-- ...m_variable_library_properties_success.yaml | 230 +- ...est_set_onelake_not_supported_failure.yaml | 116 +- ...et_onelake_shortcut_name_only_success.yaml | 514 ++-- ...nelake_shortcut_target_itemid_success.yaml | 828 ++---- ...st_set_shortcut_invalid_query_failure.yaml | 348 +-- ...t_set_sparkpool_invalid_query_failure.yaml | 108 +- ...kpool_success[autoScale.enabled-true].yaml | 176 +- ...ool_success[autoScale.maxNodeCount-5].yaml | 176 +- ...ool_success[autoScale.minNodeCount-2].yaml | 176 +- ...et_sparkpool_success[nodeSize-Medium].yaml | 176 +- ...t_set_workspace_invalid_query_failure.yaml | 10 +- ...rkspace_metadata_success[description].yaml | 246 +- ...rkspace_metadata_success[displayName].yaml | 360 +-- ...kSettings.automaticLog.enabled-false].yaml | 236 +- ...st_virtual_item_not_supported_failure.yaml | 152 +- tests/test_commands/test_set.py | 15 +- 38 files changed, 4084 insertions(+), 4680 deletions(-) diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py b/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py index 09ced881..c0e72660 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_capacity.py @@ -33,18 +33,8 @@ def exec(virtual_ws_item: VirtualWorkspaceItem, args: Namespace) -> None: vwsi_capacity_def, query, args.input ) - def _prep_for_updated_def(data): - data.pop("id", None) - data.pop("type", None) - data.pop("name", None) - data.pop("tags", None) - data.pop("fabricId", None) - return json.dumps(data, indent=4) - - capacity_update_def = _prep_for_updated_def(updated_def) - utils_ui.print_grey(f"Setting new property for '{virtual_ws_item.name}'...") - response = capacity_api.update_capacity(args, capacity_update_def) + response = capacity_api.update_capacity(args, json.dumps(updated_def, indent=4)) if response.status_code == 200: utils_ui.print_output_format(args, message="Capacity updated") diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py b/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py index 5f12e078..c29ebf58 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_connection.py @@ -12,6 +12,7 @@ from fabric_cli.utils import fab_ui as utils_ui JMESPATH_UPDATE_CONNECTIONS = ["displayName", "privacyLevel", "credentialDetails"] +CONECTIVITY_TYPE_KEY = "connectivityType" def exec(connection: VirtualWorkspaceItem, args: Namespace) -> None: @@ -25,19 +26,14 @@ def exec(connection: VirtualWorkspaceItem, args: Namespace) -> None: args.deep_traversal = True args.output = None vwsi_connection_def = get_connection.exec(connection, args, verbose=False) - connectivity_type = vwsi_connection_def.get("connectivityType", "") + connectivity_type = vwsi_connection_def.get(CONECTIVITY_TYPE_KEY, "") updated_def = utils_set.update_fabric_element( vwsi_connection_def, query, args.input ) def _prep_for_updated_def(data): - data.pop("id", None) # Remove 'id' if it exists - data.pop("gatewayId", None) # Remove 'type' if it exists - data.pop( - "connectionDetails", None - ) # Remove 'connectionDetails' if it exists - data["connectivityType"] = connectivity_type # Add 'type' back + data[CONECTIVITY_TYPE_KEY] = connectivity_type return json.dumps(data, indent=4) connection_update_def = _prep_for_updated_def(updated_def) @@ -47,9 +43,7 @@ def _prep_for_updated_def(data): response = connection_api.update_connection(args, connection_update_def) if response.status_code == 200: - # Update mem_store - if "displayName" in updated_def: - connection._name = updated_def["displayName"] - utils_mem_store.upsert_connection_to_cache(connection) - + utils_set.update_cache( + updated_def, connection, utils_mem_store.upsert_connection_to_cache + ) utils_ui.print_output_format(args, message="Connection updated") diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py b/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py index bc640bda..8267f94b 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_domain.py @@ -34,14 +34,10 @@ def exec(virtual_ws_item: VirtualWorkspaceItem, args: Namespace) -> None: args.id = virtual_ws_item.id utils_ui.print_grey(f"Setting new property for '{virtual_ws_item.name}'...") - response = domain_api.update_domain(args, updated_def) + response = domain_api.update_domain(args, json.dumps(updated_def, indent=4)) if response.status_code == 200: - if "displayName" in updated_def: - # Update mem_store - new_domain_name = updated_def["displayName"] - virtual_ws_item._name = new_domain_name - utils_mem_store.upsert_domain_to_cache(virtual_ws_item) - + utils_set.update_cache( + updated_def, virtual_ws_item, utils_mem_store.upsert_domain_to_cache + ) utils_ui.print_output_format(args, message="Domain updated") - diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py b/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py index 2ce398aa..0cc2ca82 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_folder.py @@ -28,22 +28,14 @@ def exec(folder: Folder, args: Namespace) -> None: updated_def = utils_set.update_fabric_element(folder_def, query, args.input) - def _prep_for_updated_def(data): - data.pop("id", None) # Remove 'id' if it exists - data.pop("workspaceId", None) # Remove 'workspaceId' if it exists - data.pop("parentFolderId", None) # Remove 'parentFolderId' if it exists - return json.dumps(data, indent=4) - - folder_update_def = _prep_for_updated_def(updated_def) args.name = folder.short_name args.id = folder.id utils_ui.print_grey(f"Setting new property for '{folder.name}'...") - response = folder_api.update_folder(args, folder_update_def) + response = folder_api.update_folder(args, json.dumps(updated_def, indent=4)) if response.status_code == 200: - # Update mem_store - folder._name = updated_def["displayName"] - utils_mem_store.upsert_folder_to_cache(folder) - + utils_set.update_cache( + updated_def, folder, utils_mem_store.upsert_folder_to_cache + ) utils_ui.print_output_format(args, message="Folder updated") diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py b/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py index f9a5738d..e43e55a2 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_gateway.py @@ -9,6 +9,7 @@ from fabric_cli.core import fab_constant from fabric_cli.core.fab_exceptions import FabricCLIError from fabric_cli.core.hiearchy.fab_hiearchy import VirtualWorkspaceItem +from fabric_cli.errors import ErrorMessages from fabric_cli.utils import fab_cmd_set_utils as utils_set from fabric_cli.utils import fab_mem_store as utils_mem_store from fabric_cli.utils import fab_ui as utils_ui @@ -22,6 +23,8 @@ "numberOfMemberGateways", ] +SUPPORTED_GATEWAY_TYPES = ["OnPremises", "VirtualNetwork"] + def exec(gateway: VirtualWorkspaceItem, args: Namespace) -> None: query = args.query @@ -35,25 +38,30 @@ def exec(gateway: VirtualWorkspaceItem, args: Namespace) -> None: args.output = None vwsi_gateway_def = get_gateway.exec(gateway, args, verbose=False) + gatewat_type = vwsi_gateway_def.get("type", "") + + if gatewat_type not in SUPPORTED_GATEWAY_TYPES: + raise FabricCLIError( + ErrorMessages.Common.gateway_type_not_supported(gatewat_type), + fab_constant.ERROR_NOT_SUPPORTED, + ) + elif gatewat_type == "OnPremises" and query.startswith( + ("numberOfMemberGateways", "capacityId", "inactivityMinutesBeforeSleep") + ): + raise FabricCLIError( + ErrorMessages.Common.gateway_property_not_supported_for_type( + query, "OnPremises" + ), + fab_constant.ERROR_NOT_SUPPORTED, + ) + updated_def = utils_set.update_fabric_element( vwsi_gateway_def, query, args.input ) - def _prep_for_updated_def(data): - data.pop("id", None) - # numberOfMemberGateways is supported only for VirtualNetwork type (reason for the whole match statement) - match data.get("type"): - case "OnPremises": - data.pop("numberOfMemberGateways", None) - data.pop("publicKey", None) - data.pop("version", None) - case "VirtualNetwork": - data.pop("virtualNetworkAzureResource", None) - case _: - raise FabricCLIError( - f"Set Operation on Gateway type '{data.get('type')}' not supported", - fab_constant.ERROR_NOT_SUPPORTED, - ) + def _prep_for_updated_def(data, gatewat_type: str) -> str: + data["type"] = gatewat_type + # Casting to int if the value is a string and present if isinstance(data.get("inactivityMinutesBeforeSleep", 0), str): data["inactivityMinutesBeforeSleep"] = int( @@ -64,14 +72,14 @@ def _prep_for_updated_def(data): return json.dumps(data, indent=4) - gateway_update_def = _prep_for_updated_def(updated_def) + gateway_update_def = _prep_for_updated_def(updated_def, gatewat_type) args.id = gateway.id utils_ui.print_grey(f"Setting new property for '{gateway.name}'...") response = gateways_api.update_gateway(args, gateway_update_def) if response.status_code == 200: - # Update mem_store - gateway._name = updated_def["displayName"] - utils_mem_store.upsert_gateway_to_cache(gateway) + utils_set.update_cache( + updated_def, gateway, utils_mem_store.upsert_gateway_to_cache + ) utils_ui.print_output_format(args, message="Gateway updated") diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_item.py b/src/fabric_cli/commands/fs/set/fab_fs_set_item.py index c7add4fa..e05be977 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_item.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_item.py @@ -40,8 +40,7 @@ def exec(item: Item, args: Namespace) -> None: updated_def = _update_item_definition(definition, query_value, args.input) - definition_base64_to_update, _ = utils_set.extract_json_schema(updated_def) - update_item_definition_payload = json.dumps(definition_base64_to_update) + update_item_definition_payload = json.dumps(updated_def) utils_ui.print_grey(f"Setting new property for '{item.name}'...") item_api.update_item_definition(args, update_item_definition_payload) diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py b/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py index 9b691675..66a57815 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_workspace.py @@ -33,12 +33,7 @@ def exec(workspace: Workspace, args: Namespace) -> None: updated_def = utils_set.update_fabric_element(workspace_def, query, args.input) - definition_base64_to_update, name_description_properties = ( - utils_set.extract_json_schema(updated_def, definition=False) - ) - args.ws_id = workspace.id - update_workspace_payload = json.dumps(name_description_properties) utils_ui.print_grey(f"Setting new property for '{workspace.name}'...") @@ -51,11 +46,10 @@ def exec(workspace: Workspace, args: Namespace) -> None: ) # Update workspace else: - response = workspace_api.update_workspace(args, update_workspace_payload) + response = workspace_api.update_workspace(args, json.dumps(updated_def)) if response.status_code == 200: - # Update mem_store - workspace._name = name_description_properties["displayName"] - utils_mem_store.upsert_workspace_to_cache(workspace) - + utils_set.update_cache( + updated_def, workspace, utils_mem_store.upsert_workspace_to_cache + ) utils_ui.print_output_format(args, message="Workspace updated") diff --git a/src/fabric_cli/errors/common.py b/src/fabric_cli/errors/common.py index 86368bae..e1e3b5a1 100644 --- a/src/fabric_cli/errors/common.py +++ b/src/fabric_cli/errors/common.py @@ -234,3 +234,13 @@ def invalid_onpremises_gateway_values() -> str: @staticmethod def query_contains_filters_or_wildcards(query_value: str) -> str: return f"Query '{query_value}' contains filters or wildcards which are not supported for set item command" + + @staticmethod + def gateway_type_not_supported(gateway_type: str) -> str: + return f"Set operation on Gateway type '{gateway_type}' not supported" + + @staticmethod + def gateway_property_not_supported_for_type( + property_name: str, gateway_type: str + ) -> str: + return f"Setting '{property_name}' is not supported for Gateway type '{gateway_type}'" diff --git a/src/fabric_cli/utils/fab_cmd_set_utils.py b/src/fabric_cli/utils/fab_cmd_set_utils.py index 0e4340bc..d08f9c02 100644 --- a/src/fabric_cli/utils/fab_cmd_set_utils.py +++ b/src/fabric_cli/utils/fab_cmd_set_utils.py @@ -94,16 +94,13 @@ def update_fabric_element( try: input = json.loads(input) except (TypeError, json.JSONDecodeError): - # If it's not a JSON string, keep it as is pass updated_def = utils_jmespath.replace(resource_def, query, input) if extract_updated_only: - # Extract only the updated properties based on the query path return extract_updated_properties(updated_def, query) else: - # Return the entire updated resource definition return updated_def @@ -129,7 +126,6 @@ def update_item_definition( try: input = json.loads(input) except (TypeError, json.JSONDecodeError): - # If it's not a JSON string, keep it as is pass # Decode > replace > encode @@ -141,22 +137,26 @@ def update_item_definition( return updated_def -def print_set_warning() -> None: - fab_logger.log_warning("Modifying properties may lead to unintended consequences") +def update_cache( + updated_def: dict, + element, + cache_update_func, +) -> None: + """Update element's display name in cache if it was changed. + Args: + updated_def: Dictionary containing the updated properties. + element: The Fabric element whose name should be updated. + cache_update_func: Function to call to update the cache. -def extract_json_schema(schema: dict, definition: bool = True) -> tuple: - name_description_properties = { - "displayName": schema.get("displayName", ""), - "description": schema.get("description", ""), - } - - definition_properties = None + """ + if "displayName" in updated_def: + element._name = updated_def["displayName"] + cache_update_func(element) - if definition: - definition_properties = {"definition": schema.get("definition", {})} - return definition_properties, name_description_properties +def print_set_warning() -> None: + fab_logger.log_warning("Modifying properties may lead to unintended consequences") def extract_updated_properties(updated_data: dict, query_path: str) -> dict: 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 e2e929c6..d2456cf2 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 @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1557' + - '2028' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:51:53 GMT + - Wed, 31 Dec 2025 14:26:40 GMT Pragma: - no-cache RequestId: - - 088d4704-23a7-4303-b566-2494d31fded9 + - 4175b3d0-65cf-4202-97ed-6b97cded9878 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1557' + - '2028' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:51:54 GMT + - Wed, 31 Dec 2025 14:26:41 GMT Pragma: - no-cache RequestId: - - acd3e167-1e72-45a0-827f-b33322a52b5a + - 1220e29f-0f16-4d8b-a0fb-ef2be8b6c38d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -115,7 +115,7 @@ interactions: response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F2", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '876' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:51:58 GMT + - Wed, 31 Dec 2025 14:26:44 GMT Pragma: - no-cache RequestId: - - a2324d19-0ecf-458e-9354-50fc55cd0a80 + - 323b31df-7638-432e-8658-a8b24eeab8e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -167,7 +167,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '187' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:05 GMT + - Wed, 31 Dec 2025 14:26:52 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1 + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6 Pragma: - no-cache RequestId: - - 9248b403-8bcb-459e-9c8d-5be117a7a3af + - 5ca29e60-a86f-4952-80e7-ccdf9a7c816b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +219,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:39 GMT + - Wed, 31 Dec 2025 14:38:55 GMT Pragma: - no-cache RequestId: - - 835893e3-36c1-4e3c-8024-8104122eeb71 + - 1d469a64-069d-4009-ae05-e9c475a62698 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,10 +266,11 @@ interactions: User-Agent: - ms-fabric-cli/1.3.1 (set; Windows; AMD64; 10) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +279,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:40 GMT + - Wed, 31 Dec 2025 14:38:55 GMT Pragma: - no-cache RequestId: - - e0ffed8c-6e01-4db0-ae39-95cda10da52d + - bf43c987-f39a-49ee-8601-391ff994e48b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +317,7 @@ interactions: User-Agent: - ms-fabric-cli/1.3.1 (set; Windows; AMD64; 10) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6 response: body: string: '' @@ -332,11 +333,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:52:41 GMT + - Wed, 31 Dec 2025 14:38:55 GMT Pragma: - no-cache RequestId: - - 241ebe42-c508-4deb-945b-607f9ea3d864 + - 1e2a342c-b7d7-4431-9b2d-7435e6539109 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml index 77563545..e84e2cd3 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/connections response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '1313' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:57 GMT + - Wed, 31 Dec 2025 14:35:53 GMT Pragma: - no-cache RequestId: - - f316fcaf-5b94-41d7-8762-8edcbf6c2140 + - bbd3339d-fd90-49e4-8a54-35e8b2aed621 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/connections/supportedConnectionTypes response: @@ -69,157 +69,175 @@ interactions: null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false}, {"type": "AnalysisServices", + "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Basic", "ServicePrincipal", "WorkspaceIdentity"]}, {"type": "AnalysisServices", "creationMethods": [{"name": "AnalysisServices", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SharePoint", - "creationMethods": [{"name": "SharePointList", "parameters": [{"name": "sharePointSiteUrl", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Basic", "WorkspaceIdentity"]}, {"type": "SharePoint", "creationMethods": + [{"name": "SharePointList", "parameters": [{"name": "sharePointSiteUrl", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Web", "creationMethods": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Anonymous", "ServicePrincipal", "WorkspaceIdentity"]}, {"type": "Web", "creationMethods": [{"name": "Web", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "Basic", "OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": true}, {"type": "OData", "creationMethods": - [{"name": "OData", "parameters": [{"name": "url", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", - "Basic", "Key", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": true}, {"type": "MySql", "creationMethods": - [{"name": "MySql", "parameters": [{"name": "server", "dataType": "Text", "required": + ["NotEncrypted"], "supportsSkipTestConnection": true, "supportedCredentialTypesForUsageInUserControlledCode": + ["Anonymous", "Basic", "ServicePrincipal", "WorkspaceIdentity"]}, {"type": + "OData", "creationMethods": [{"name": "OData", "parameters": [{"name": "url", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Anonymous", "Basic", "Key", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": true, "supportedCredentialTypesForUsageInUserControlledCode": + ["Anonymous", "Basic", "Key"]}, {"type": "MySql", "creationMethods": [{"name": + "MySql", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": - "PostgreSQL", "creationMethods": [{"name": "PostgreSql", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "database", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": - "AzureTables", "creationMethods": [{"name": "AzureTables", "parameters": [{"name": - "account", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "domain", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureBlobs", - "creationMethods": [{"name": "AzureBlobs", "parameters": [{"name": "account", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "domain", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Anonymous", "Key", "OAuth2", "SharedAccessSignature", "ServicePrincipal", - "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "GoogleAnalytics", "creationMethods": - [{"name": "GoogleAnalytics", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Salesforce", "creationMethods": [{"name": "Salesforce", - "parameters": [{"name": "loginServer", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "classInfo", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AdobeAnalytics", - "creationMethods": [{"name": "AdobeAnalytics", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureDataLakeStorage", "creationMethods": [{"name": "AzureDataLakeStorage", + ["NotEncrypted", "Encrypted"], "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": + null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Basic"]}, {"type": "AzureTables", "creationMethods": [{"name": "AzureTables", + "parameters": [{"name": "account", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "domain", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": ["Key", "WorkspaceIdentity"]}, + {"type": "AzureBlobs", "creationMethods": [{"name": "AzureBlobs", "parameters": + [{"name": "account", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "domain", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Anonymous", "Key", "OAuth2", "SharedAccessSignature", + "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Anonymous", "Key", "SharedAccessSignature", "ServicePrincipal", "WorkspaceIdentity"]}, + {"type": "GoogleAnalytics", "creationMethods": [{"name": "GoogleAnalytics", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + []}, {"type": "Salesforce", "creationMethods": [{"name": "Salesforce", "parameters": + [{"name": "loginServer", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "classInfo", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + []}, {"type": "AdobeAnalytics", "creationMethods": [{"name": "AdobeAnalytics", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + []}, {"type": "AzureDataLakeStorage", "creationMethods": [{"name": "AzureDataLakeStorage", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "path", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "SharedAccessSignature", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Exchange", - "creationMethods": [{"name": "Exchange", "parameters": [{"name": "emailAddress", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "appFigures", "creationMethods": [{"name": "appFigures.Tables", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "GoogleBigQuery", - "creationMethods": [{"name": "GoogleBigQuery.Database", "parameters": [{"name": - "BillingProject", "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": "ProjectId", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false}, {"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": - false}, {"type": "PowerBI", "creationMethods": [{"name": "PowerBI.Dataflows", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Key", "SharedAccessSignature", "ServicePrincipal", "WorkspaceIdentity"]}, + {"type": "Exchange", "creationMethods": [{"name": "Exchange", "parameters": + [{"name": "emailAddress", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + []}, {"type": "appFigures", "creationMethods": [{"name": "appFigures.Tables", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Cds", "creationMethods": - [{"name": "Cds.Entities", "parameters": [{"name": "url", "dataType": "Text", - "required": true, "allowedValues": null}, {"name": "ReorderColumns", "dataType": - "Boolean", "required": false, "allowedValues": null}, {"name": "UseFormattedValue", - "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "DataLake", "creationMethods": [{"name": "DataLake.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "GoogleBigQuery", "creationMethods": [{"name": "GoogleBigQuery.Database", + "parameters": [{"name": "BillingProject", "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": + "ProjectId", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + 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": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "PowerBI", "creationMethods": [{"name": "PowerBI.Dataflows", "parameters": + []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Cds", "creationMethods": [{"name": "Cds.Entities", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "ReorderColumns", "dataType": "Boolean", "required": false, "allowedValues": + null}, {"name": "UseFormattedValue", "dataType": "Boolean", "required": false, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DataLake", "creationMethods": [{"name": "DataLake.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "PageSize", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "DataWorld", "creationMethods": [{"name": "DataWorld.Dataset", - "parameters": [{"name": "owner", "dataType": "Text", "required": true, "allowedValues": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "DataWorld", "creationMethods": [{"name": "DataWorld.Dataset", "parameters": + [{"name": "owner", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "id", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "query", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "DocumentDB", - "creationMethods": [{"name": "DocumentDB.Contents", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "database", "dataType": "Text", "required": false, "allowedValues": null}, - {"name": "collection", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics365BusinessCentral", - "creationMethods": [{"name": "Dynamics365BusinessCentral.ApiContentsWithOptions", - "parameters": [{"name": "environment", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "company", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "apiRoute", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "UseReadOnlyReplica", "dataType": - "Boolean", "required": false, "allowedValues": null}, {"name": "AcceptLanguage", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Timeout", - "dataType": "Duration", "required": false, "allowedValues": null}, {"name": - "ODataMaxPageSize", "dataType": "Number", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics - 365 Business Central (on-premises)", "creationMethods": [{"name": "Dynamics365BusinessCentralOnPremises.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DocumentDB", "creationMethods": [{"name": "DocumentDB.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "company", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics - NAV", "creationMethods": [{"name": "DynamicsNav.Contents", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "company", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "github", - "creationMethods": [{"name": "Github.Tables", "parameters": [{"name": "RepositoryOwner", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Repository", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "collection", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Dynamics365BusinessCentral", "creationMethods": [{"name": + "Dynamics365BusinessCentral.ApiContentsWithOptions", "parameters": [{"name": + "environment", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "company", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "apiRoute", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "UseReadOnlyReplica", "dataType": "Boolean", "required": false, + "allowedValues": null}, {"name": "AcceptLanguage", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "Timeout", "dataType": "Duration", + "required": false, "allowedValues": null}, {"name": "ODataMaxPageSize", "dataType": + "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureHive", "creationMethods": [{"name": "AzureHiveLLAP.Database", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Dynamics 365 Business Central (on-premises)", "creationMethods": [{"name": + "Dynamics365BusinessCentralOnPremises.Contents", "parameters": [{"name": "url", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "company", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Dynamics NAV", "creationMethods": [{"name": "DynamicsNav.Contents", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "company", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "github", "creationMethods": [{"name": "Github.Tables", "parameters": + [{"name": "RepositoryOwner", "dataType": "Text", "required": true, "allowedValues": + 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}, {"type": - "ApacheHive", "creationMethods": [{"name": "ApacheHiveLLAP.Database", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["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}, {"type": - "Impala", "creationMethods": [{"name": "Impala.Database", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "Implementation", "dataType": "Text", "required": false, "allowedValues": + ["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": null}, {"name": "ConnectionTimeout", "dataType": "Duration", "required": false, "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false}, {"type": "AzureDataExplorer", - "creationMethods": [{"name": "AzureDataExplorer.Contents", "parameters": [{"name": - "cluster", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "database", "dataType": "Text", "required": false, "allowedValues": null}, - {"name": "tableOrQuery", "dataType": "Text", "required": false, "allowedValues": + "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureDataExplorer", "creationMethods": [{"name": "AzureDataExplorer.Contents", + "parameters": [{"name": "cluster", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "tableOrQuery", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "MaxRows", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "MaxSize", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "NoTruncate", "dataType": "Boolean", "required": false, "allowedValues": @@ -233,438 +251,492 @@ interactions: "Number", "required": false, "allowedValues": null}, {"name": "NoTruncate", "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": "AdditionalSetStatements", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "LinkedIn", - "creationMethods": [{"name": "LinkedIn.SalesNavigator", "parameters": [{"name": - "selectContracts", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "LinkedIn", "creationMethods": [{"name": "LinkedIn.SalesNavigator", "parameters": + [{"name": "selectContracts", "dataType": "Text", "required": true, "allowedValues": ["All Contracts", "Selected Contracts"]}, {"name": "startAt", "dataType": "Date", "required": false, "allowedValues": null}, {"name": "endAt", "dataType": "Date", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "mixpanel", "creationMethods": [{"name": "Mixpanel.Tables", - "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Netezza", - "creationMethods": [{"name": "Netezza.Database", "parameters": [{"name": "server", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ConnectionTimeout", - "dataType": "Duration", "required": false, "allowedValues": null}, {"name": - "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": - null}, {"name": "NormalizeDatabaseName", "dataType": "Boolean", "required": - false, "allowedValues": null}, {"name": "HierarchicalNavigation", "dataType": - "Boolean", "required": false, "allowedValues": null}, {"name": "CreateNavigationProperties", - "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], - "supportsSkipTestConnection": false}, {"type": "PlanviewEnterprise", "creationMethods": - [{"name": "PlanviewEnterprise.Feed", "parameters": [{"name": "url", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AmazonRedshift", "creationMethods": [{"name": "AmazonRedshift.Database", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "mixpanel", "creationMethods": [{"name": "Mixpanel.Tables", "parameters": + []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Netezza", "creationMethods": [{"name": "Netezza.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "ConnectionTimeout", "dataType": "Duration", "required": false, + "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Duration", + "required": false, "allowedValues": null}, {"name": "NormalizeDatabaseName", + "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": + "HierarchicalNavigation", "dataType": "Boolean", "required": false, "allowedValues": + null}, {"name": "CreateNavigationProperties", "dataType": "Boolean", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "PlanviewEnterprise", "creationMethods": [{"name": "PlanviewEnterprise.Feed", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AmazonRedshift", "creationMethods": [{"name": "AmazonRedshift.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ProviderName", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "BatchSize", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": - "Snowflake", "creationMethods": [{"name": "Snowflake.Databases", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Snowflake", "creationMethods": [{"name": "Snowflake.Databases", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "warehouse", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Role", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "CreateNavigationProperties", "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": "ConnectionTimeout", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "CommandTimeout", "dataType": - "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Spark", "creationMethods": - [{"name": "AzureSpark.Tables", "parameters": [{"name": "server", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "BatchSize", "dataType": - "Number", "required": false, "allowedValues": null}, {"name": "HierarchicalNavigation", - "dataType": "Boolean", "required": false, "allowedValues": null}]}, {"name": - "ApacheSpark.Tables", "parameters": [{"name": "server", "dataType": "Text", - "required": true, "allowedValues": null}, {"name": "protocol", "dataType": - "Number", "required": true, "allowedValues": ["0", "2"]}, {"name": "BatchSize", - "dataType": "Number", "required": false, "allowedValues": null}, {"name": - "HierarchicalNavigation", "dataType": "Boolean", "required": false, "allowedValues": - null}, {"name": "Implementation", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SparkPost", - "creationMethods": [{"name": "SparkPost.NavTable", "parameters": [{"name": - "DaysToAggregate", "dataType": "Number", "required": true, "allowedValues": + "Number", "required": false, "allowedValues": null}, {"name": "Implementation", + "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], + "supportedCredentialTypes": ["Basic", "OAuth2", "KeyPair"], "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": + null}, {"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", + "required": false, "allowedValues": null}]}, {"name": "ApacheSpark.Tables", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "protocol", "dataType": "Number", "required": true, "allowedValues": + ["0", "2"]}, {"name": "BatchSize", "dataType": "Number", "required": false, + "allowedValues": null}, {"name": "HierarchicalNavigation", "dataType": "Boolean", + "required": false, "allowedValues": null}, {"name": "Implementation", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SparkPost", "creationMethods": [{"name": "SparkPost.NavTable", "parameters": + [{"name": "DaysToAggregate", "dataType": "Number", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SweetIQ", - "creationMethods": [{"name": "SweetIQ.Tables", "parameters": []}], "supportedCredentialTypes": - ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Troux", "creationMethods": [{"name": "Troux.Feed", "parameters": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SweetIQ", "creationMethods": [{"name": "SweetIQ.Tables", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Troux", "creationMethods": [{"name": "Troux.Feed", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "VSTS", "creationMethods": - [{"name": "VSTS.AnalyticsViews", "parameters": [{"name": "url", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "project", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Vertica", "creationMethods": - [{"name": "Vertica.Database", "parameters": [{"name": "server", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Acterys", "creationMethods": [{"name": "Acterys.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "VSTS", "creationMethods": [{"name": "VSTS.AnalyticsViews", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "project", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Vertica", "creationMethods": [{"name": "Vertica.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Acterys", "creationMethods": [{"name": "Acterys.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ADPAnalytics", "creationMethods": [{"name": "ADPAnalytics.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ADPAnalytics", - "creationMethods": [{"name": "ADPAnalytics.Contents", "parameters": []}], + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Anaplan", "creationMethods": [{"name": "Anaplan.Contents", + "parameters": [{"name": "apiUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "authUrl", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Asana", "creationMethods": [{"name": "Asana.Tables", "parameters": + [{"name": "link", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Anaplan", - "creationMethods": [{"name": "Anaplan.Contents", "parameters": [{"name": "apiUrl", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "authUrl", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Asana", "creationMethods": - [{"name": "Asana.Tables", "parameters": [{"name": "link", "dataType": "Text", - "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AssembleViews", "creationMethods": [{"name": "AssembleViews.Feed", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AssembleViews", "creationMethods": [{"name": "AssembleViews.Feed", "parameters": [{"name": "resourceUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AutodeskConstructionCloud", - "creationMethods": [{"name": "AutodeskConstructionCloud.Feed", "parameters": - [{"name": "region", "dataType": "Text", "required": true, "allowedValues": - ["United States", "Europe", "Australia"]}]}], "supportedCredentialTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AutodeskConstructionCloud", "creationMethods": [{"name": + "AutodeskConstructionCloud.Feed", "parameters": [{"name": "region", "dataType": + "Text", "required": true, "allowedValues": ["Australia", "Canada", "Europe", + "Germany", "India", "Japan", "UK", "United States"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AutomationAnywhere", "creationMethods": [{"name": "AutomationAnywhere.Feed", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AutomationAnywhere", "creationMethods": [{"name": "AutomationAnywhere.Feed", "parameters": [{"name": "CRVersion", "dataType": "Text", "required": true, "allowedValues": ["10.x/11.x", "Automation 360", "11.3.5.1 Or Higher"]}, {"name": "CRHostName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AutomyDataAnalytics", - "creationMethods": [{"name": "AutomyDataAnalytics.Contents", "parameters": - []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "BI360", - "creationMethods": [{"name": "BI360.Contents", "parameters": [{"name": "Url", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "BitSightSecurityRatings", "creationMethods": [{"name": "BitSightSecurityRatings.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AutomyDataAnalytics", "creationMethods": [{"name": "AutomyDataAnalytics.Contents", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "BI360", "creationMethods": [{"name": "BI360.Contents", "parameters": + [{"name": "Url", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "BitSightSecurityRatings", "creationMethods": [{"name": "BitSightSecurityRatings.Contents", "parameters": [{"name": "company_guid", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "affects_rating_findings", "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Bloomberg", "creationMethods": [{"name": "Bloomberg.Query", - "parameters": [{"name": "Bloomberg", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "BQECore", - "creationMethods": [{"name": "BQECore.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "BuildingConnected", "creationMethods": [{"name": "BuildingConnected.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Bloomberg", "creationMethods": [{"name": "Bloomberg.Query", "parameters": + [{"name": "Bloomberg", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "BQECore", "creationMethods": [{"name": "BQECore.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "BuildingConnected", "creationMethods": [{"name": "BuildingConnected.Contents", "parameters": [{"name": "rangeStart", "dataType": "DateTimeZone", "required": false, "allowedValues": null}, {"name": "rangeEnd", "dataType": "DateTimeZone", "required": false, "allowedValues": null}, {"name": "includeClosed", "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "CCHTagetik", "creationMethods": [{"name": "CCHTagetik.Contents", - "parameters": [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Database", "dataType": "Text", "required": true, "allowedValues": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "CCHTagetik", "creationMethods": [{"name": "CCHTagetik.Contents2", "parameters": + [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "Database", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "AW", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Dataset", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "StartDate", "dataType": "DateTime", "required": false, "allowedValues": + null}, {"name": "EndDate", "dataType": "DateTime", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CDataConnectCloud", - "creationMethods": [{"name": "CDataConnectCloud.ContentsV2", "parameters": - [{"name": "Query", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CDataConnectCloud", "creationMethods": [{"name": "CDataConnectCloud.ContentsV2", + "parameters": [{"name": "Query", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Celonis", - "creationMethods": [{"name": "Celonis.Navigation", "parameters": [{"name": - "URL", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Cherwell", "creationMethods": [{"name": "Cherwell.SavedSearches", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Celonis", "creationMethods": [{"name": "Celonis.Navigation", + "parameters": [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Cherwell", "creationMethods": [{"name": "Cherwell.SavedSearches", "parameters": [{"name": "API URL", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Client ID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Locale", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Saved Search URL", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CloudBluePSA", - "creationMethods": [{"name": "CloudBluePSA.Feed", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "filter", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Cognite", - "creationMethods": [{"name": "Cognite.Contents", "parameters": [{"name": "project", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "environment", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "CogniteDataSource", "creationMethods": [{"name": "CogniteDataSource.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CloudBluePSA", "creationMethods": [{"name": "CloudBluePSA.Feed", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "filter", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Cognite", "creationMethods": [{"name": "Cognite.Contents", + "parameters": [{"name": "project", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "environment", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CogniteDataSource", "creationMethods": [{"name": "CogniteDataSource.Contents", "parameters": [{"name": "project", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "organization", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Databricks", - "creationMethods": [{"name": "Databricks.Catalogs", "parameters": [{"name": - "host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "httpPath", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "Catalog", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Databricks", "creationMethods": [{"name": "Databricks.Catalogs", + "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "httpPath", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "Catalog", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "Database", "dataType": "Text", "required": false, "allowedValues": + 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"]}]}], + "supportedCredentialTypes": ["OAuth2", "Key", "Basic", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "DatabricksMultiCloud", "creationMethods": [{"name": "DatabricksMultiCloud.Catalogs", + "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "httpPath", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "Catalog", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Database", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "QueryTags", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", "dataType": "Text", "required": - false, "allowedValues": ["enabled", "disabled"]}]}], "supportedCredentialTypes": - ["OAuth2", "Key", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "DatabricksMultiCloud", "creationMethods": - [{"name": "DatabricksMultiCloud.Catalogs", "parameters": [{"name": "host", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "httpPath", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Catalog", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Database", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", - "dataType": "Text", "required": false, "allowedValues": ["enabled", "disabled"]}]}], + false, "allowedValues": ["enabled", "disabled"]}, {"name": "Implementation", + "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], "supportedCredentialTypes": ["OAuth2", "Key", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "DeltaSharing", - "creationMethods": [{"name": "DeltaSharing.Contents", "parameters": [{"name": - "host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "rowLimitHint", "dataType": "Number", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DeltaSharing", "creationMethods": [{"name": "DeltaSharing.Contents", + "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "rowLimitHint", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dremio", - "creationMethods": [{"name": "Dremio.DatabasesV370", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "encryption", "dataType": "Text", "required": true, "allowedValues": ["Enabled", - "Disabled", "Enabled-PEM"]}, {"name": "engine", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "routingTag", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "routingQueue", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Dremio", "creationMethods": [{"name": "Dremio.DatabasesV370", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "encryption", "dataType": "Text", "required": true, "allowedValues": + ["Enabled", "Disabled", "Enabled-PEM"]}, {"name": "engine", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "routingTag", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "routingQueue", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "DremioCloud", "creationMethods": - [{"name": "DremioCloud.DatabasesByServerV370", "parameters": [{"name": "server", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "projectId", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "engine", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "routingTag", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "routingQueue", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "encryption", - "dataType": "Text", "required": false, "allowedValues": ["Enabled-PEM"]}]}], - "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "DynatraceGrail", - "creationMethods": [{"name": "DynatraceGrail.Contents", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "QueryInput", "dataType": "Text", "required": false, "allowedValues": null}, - {"name": "ScanGBParameter", "dataType": "Number", "required": false, "allowedValues": - null}, {"name": "MaxResultParameter", "dataType": "Number", "required": false, - "allowedValues": null}, {"name": "MaxBytesParameter", "dataType": "Number", - "required": false, "allowedValues": null}, {"name": "SamplingParameter", "dataType": - "Number", "required": false, "allowedValues": ["10", "100", "1000", "10000"]}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EduFrame", - "creationMethods": [{"name": "EduFrame.Contents", "parameters": [{"name": - "domainSlug", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EmigoDataSourceConnector", - "creationMethods": [{"name": "Emigo.Contents", "parameters": [{"name": "DataRestrictionType", - "dataType": "Text", "required": false, "allowedValues": ["Not set", "Days", - "Weeks", "Months", "Quarters", "Years"]}, {"name": "DataRestrictionValue", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "DataRestrictionMode", - "dataType": "Text", "required": false, "allowedValues": ["Default", "Exact"]}, - {"name": "AuthorizationMode", "dataType": "Text", "required": false, "allowedValues": + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DremioCloud", "creationMethods": [{"name": "DremioCloud.DatabasesByServerV370", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "projectId", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "engine", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "routingTag", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "routingQueue", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "encryption", "dataType": "Text", "required": false, "allowedValues": + ["Enabled-PEM"]}]}], "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DynatraceGrail", "creationMethods": [{"name": "DynatraceGrail.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "QueryInput", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "ScanGBParameter", "dataType": "Number", "required": false, + "allowedValues": null}, {"name": "MaxResultParameter", "dataType": "Number", + "required": false, "allowedValues": null}, {"name": "MaxBytesParameter", "dataType": + "Number", "required": false, "allowedValues": null}, {"name": "SamplingParameter", + "dataType": "Number", "required": false, "allowedValues": ["10", "100", "1000", + "10000"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "EduFrame", "creationMethods": [{"name": "EduFrame.Contents", + "parameters": [{"name": "domainSlug", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Key"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "EmigoDataSourceConnector", "creationMethods": [{"name": "Emigo.Contents", + "parameters": [{"name": "DataRestrictionType", "dataType": "Text", "required": + false, "allowedValues": ["Not set", "Days", "Weeks", "Months", "Quarters", + "Years"]}, {"name": "DataRestrictionValue", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "DataRestrictionMode", "dataType": + "Text", "required": false, "allowedValues": ["Default", "Exact"]}, {"name": + "AuthorizationMode", "dataType": "Text", "required": false, "allowedValues": ["Default", "EmigoObszary", "EmigoHierarchia", "CustomRestrictions"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EntersoftBusinessSuite", - "creationMethods": [{"name": "EntersoftBusinessSuite.Contents", "parameters": - []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EQuIS", - "creationMethods": [{"name": "EQuIS.Contents", "parameters": [{"name": "baseUri", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Key", "Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "eWayCRM", "creationMethods": - [{"name": "eWayCRM.Contents", "parameters": [{"name": "IncludeRelations", - "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "FactSetAnalytics", "creationMethods": [{"name": "FactSetAnalytics.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "EntersoftBusinessSuite", "creationMethods": [{"name": "EntersoftBusinessSuite.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "EQuIS", "creationMethods": [{"name": "EQuIS.Contents", "parameters": + [{"name": "baseUri", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key", "Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "eWayCRM", "creationMethods": [{"name": "eWayCRM.Contents2", + "parameters": [{"name": "IncludeRelations", "dataType": "Boolean", "required": + false, "allowedValues": ["false", "true"]}, {"name": "Query", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "QueryAmount", + "dataType": "Boolean", "required": false, "allowedValues": ["false", "true"]}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "FactSetAnalytics", "creationMethods": [{"name": "FactSetAnalytics.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "FactSetRMS", - "creationMethods": [{"name": "FactSetRMS.Functions", "parameters": []}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Funnel", "creationMethods": [{"name": "Funnel.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "FactSetRMS", "creationMethods": [{"name": "FactSetRMS.Functions", + "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Funnel", "creationMethods": [{"name": "Funnel.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "HexagonSmartApi", - "creationMethods": [{"name": "HexagonSmartApi.Feed", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "headers", "dataType": "Text", "required": false, "allowedValues": null}, - {"name": "odataFeedVersion", "dataType": "Text", "required": false, "allowedValues": - ["2.0", "1.0"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "IndustrialAppStore", - "creationMethods": [{"name": "IndustrialAppStore.NavigationTable", "parameters": - []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "InformationGrid", - "creationMethods": [{"name": "InformationGrid.Contents", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "inwink", - "creationMethods": [{"name": "inwink.ScopeContents", "parameters": [{"name": - "customerId", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "scope", "dataType": "Text", "required": true, "allowedValues": ["Audience", - "Event", "Community"]}, {"name": "scopeId", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "JamfPro", - "creationMethods": [{"name": "JamfPro.Contents", "parameters": [{"name": "jamfUrl", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "HexagonSmartApi", "creationMethods": [{"name": "HexagonSmartApi.Feed", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "headers", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "odataFeedVersion", "dataType": "Text", "required": false, + "allowedValues": ["2.0", "1.0"]}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "IndustrialAppStore", "creationMethods": [{"name": "IndustrialAppStore.NavigationTable", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "InformationGrid", "creationMethods": [{"name": "InformationGrid.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "inwink", "creationMethods": [{"name": "inwink.ScopeContents", + "parameters": [{"name": "customerId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "scope", "dataType": "Text", "required": + true, "allowedValues": ["Audience", "Event", "Community"]}, {"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Kognitwin", "creationMethods": - [{"name": "Kognitwin.Contents", "parameters": [{"name": "url", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "kxkdbinsightsenterprise", "creationMethods": [{"name": "kxkdbinsightsenterprise.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "JamfPro", "creationMethods": [{"name": "JamfPro.Contents", "parameters": + [{"name": "jamfUrl", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Kognitwin", "creationMethods": [{"name": "Kognitwin.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "kxkdbinsightsenterprise", "creationMethods": [{"name": "kxkdbinsightsenterprise.Contents", "parameters": [{"name": "HostUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "LEAP", "creationMethods": - [{"name": "LEAP.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "LinkedInLearning", "creationMethods": [{"name": "LinkedInLearning.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "LEAP", "creationMethods": [{"name": "LEAP.Contents", "parameters": + []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "LinkedInLearning", "creationMethods": [{"name": "LinkedInLearning.Contents", "parameters": [{"name": "start_date", "dataType": "DateTime", "required": false, "allowedValues": null}, {"name": "end_date", "dataType": "DateTime", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "MicroStrategyDataset", "creationMethods": [{"name": "MicroStrategyDataset.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "MicroStrategyDataset", "creationMethods": [{"name": "MicroStrategyDataset.Contents", "parameters": [{"name": "libraryUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "authMode", "dataType": "Text", "required": false, "allowedValues": ["Standard", "LDAP"]}, {"name": "limit", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "timeout", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "OneStream", "creationMethods": - [{"name": "OneStream.Navigation", "parameters": [{"name": "OneStreamURL", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Paxata", "creationMethods": [{"name": "Paxata.Contents", + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "OneStream", "creationMethods": [{"name": "OneStream.Navigation", + "parameters": [{"name": "OneStreamURL", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Paxata", "creationMethods": [{"name": "Paxata.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PlanviewOKR", - "creationMethods": [{"name": "PlanviewOKR.Contents", "parameters": [{"name": - "ODataURL", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PlanviewProjectplace", - "creationMethods": [{"name": "PlanviewProjectplace.Contents", "parameters": - [{"name": "ODataURL", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "PlanviewOKR", "creationMethods": [{"name": "PlanviewOKR.Contents", + "parameters": [{"name": "ODataURL", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "PlanviewProjectplace", "creationMethods": [{"name": "PlanviewProjectplace.Contents", + "parameters": [{"name": "ODataURL", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Profisee", "creationMethods": [{"name": "Profisee.Tables", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Profisee", - "creationMethods": [{"name": "Profisee.Tables", "parameters": [{"name": "url", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "QuickBase", "creationMethods": [{"name": "QuickBase.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "QuickBase", "creationMethods": [{"name": "QuickBase.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Roamler", - "creationMethods": [{"name": "Roamler.Contents", "parameters": []}], "supportedCredentialTypes": - ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Samsara", "creationMethods": [{"name": "Samsara.Records", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Roamler", "creationMethods": [{"name": "Roamler.Contents", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Samsara", "creationMethods": [{"name": "Samsara.Records", "parameters": [{"name": "Region", "dataType": "Text", "required": true, "allowedValues": ["US", "EU"]}, {"name": "RangeStart", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "RangeEnd", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SDMX", "creationMethods": - [{"name": "SDMX.Contents", "parameters": [{"name": "url", "dataType": "Text", - "required": true, "allowedValues": null}, {"name": "Option", "dataType": "Text", - "required": true, "allowedValues": ["Show codes and labels", "Show codes only", - "Show labels only"]}, {"name": "Language", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "ShortcutsBI", "creationMethods": [{"name": "ShortcutsBI.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SDMX", "creationMethods": [{"name": "SDMX.Contents", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "Option", "dataType": "Text", "required": true, "allowedValues": + ["Show codes and labels", "Show codes only", "Show labels only"]}, {"name": + "Language", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ShortcutsBI", "creationMethods": [{"name": "ShortcutsBI.Contents", "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Siteimprove", - "creationMethods": [{"name": "Siteimprove.Contents", "parameters": []}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SmartsheetGlobal", "creationMethods": [{"name": "SmartsheetGlobal.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Siteimprove", "creationMethods": [{"name": "Siteimprove.Contents", + "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SmartsheetGlobal", "creationMethods": [{"name": "SmartsheetGlobal.Contents", "parameters": [{"name": "region", "dataType": "Text", "required": true, "allowedValues": ["US", "EU"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SoftOneBI", - "creationMethods": [{"name": "SoftOneBI.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SolarWindsServiceDesk", "creationMethods": [{"name": "SolarWindsServiceDesk.ContentsV113", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SoftOneBI", "creationMethods": [{"name": "SoftOneBI.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SolarWindsServiceDesk", "creationMethods": [{"name": "SolarWindsServiceDesk.ContentsV113", "parameters": [{"name": "RangeStart", "dataType": "DateTime", "required": false, "allowedValues": null}, {"name": "RangeEnd", "dataType": "DateTime", "required": false, "allowedValues": null}, {"name": "CustomFieldsStr", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Spigit", "creationMethods": [{"name": "Spigit.Contents", - "parameters": [{"name": "ODataURL", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SumTotal", - "creationMethods": [{"name": "SumTotal.ODataFeed", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Supermetrics", "creationMethods": [{"name": "Supermetrics.Render", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Spigit", "creationMethods": [{"name": "Spigit.Contents", "parameters": [{"name": + "ODataURL", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SumTotal", "creationMethods": [{"name": "SumTotal.ODataFeed", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Supermetrics", "creationMethods": [{"name": "Supermetrics.Render", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SurveyMonkey", - "creationMethods": [{"name": "SurveyMonkey.Contents", "parameters": []}], - "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "TeamDesk", - "creationMethods": [{"name": "TeamDesk.Database", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Tenforce", "creationMethods": - [{"name": "Tenforce.Contents", "parameters": [{"name": "ApplicationUrl", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "ListId", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "DataType", "dataType": - "Text", "required": true, "allowedValues": ["Do not include", "Include"]}]}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Usercube", - "creationMethods": [{"name": "Usercube.Universes", "parameters": [{"name": - "serverUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SurveyMonkey", "creationMethods": [{"name": "SurveyMonkey.Contents", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "TeamDesk", "creationMethods": [{"name": "TeamDesk.Database", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Tenforce", "creationMethods": [{"name": "Tenforce.Contents", + "parameters": [{"name": "ApplicationUrl", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "ListId", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "DataType", "dataType": "Text", "required": + true, "allowedValues": ["Do not include", "Include"]}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Usercube", "creationMethods": [{"name": "Usercube.Universes", "parameters": + [{"name": "serverUrl", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["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": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Vena", "creationMethods": - [{"name": "Vena.Contents", "parameters": [{"name": "source", "dataType": "Text", - "required": true, "allowedValues": ["https://ca3.vena.io", "https://us3.vena.io", - "https://us2.vena.io", "https://us1.vena.io", "https://eu1.vena.io"]}, {"name": - "modelQuery", "dataType": "Text", "required": false, "allowedValues": null}, - {"name": "apiVersion", "dataType": "Text", "required": false, "allowedValues": - ["v1", "v2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "VesselInsight", - "creationMethods": [{"name": "VesselInsight.Contents", "parameters": []}], + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "VesselInsight", "creationMethods": [{"name": "VesselInsight.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "WebtrendsAnalytics", "creationMethods": [{"name": "WebtrendsAnalytics.Tables", + "parameters": [{"name": "ProfileId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "Period", "dataType": "Text", "required": + true, "allowedValues": ["Custom Date", "Report Period"]}, {"name": "reportType", + "dataType": "Text", "required": true, "allowedValues": ["Summary", "Trend", + "Individual"]}, {"name": "startDate", "dataType": "Date", "required": false, + "allowedValues": null}, {"name": "endDate", "dataType": "Date", "required": + false, "allowedValues": null}, {"name": "startPeriod", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "endPeriod", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Windsor", "creationMethods": [{"name": "Windsor.Main", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "WebtrendsAnalytics", - "creationMethods": [{"name": "WebtrendsAnalytics.Tables", "parameters": [{"name": - "ProfileId", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "Period", "dataType": "Text", "required": true, "allowedValues": - ["Custom Date", "Report Period"]}, {"name": "reportType", "dataType": "Text", - "required": true, "allowedValues": ["Summary", "Trend", "Individual"]}, {"name": - "startDate", "dataType": "Date", "required": false, "allowedValues": null}, - {"name": "endDate", "dataType": "Date", "required": false, "allowedValues": - null}, {"name": "startPeriod", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "endPeriod", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Windsor", - "creationMethods": [{"name": "Windsor.Main", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Witivio", "creationMethods": [{"name": "Witivio.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Witivio", "creationMethods": [{"name": "Witivio.Contents", "parameters": [{"name": "botId", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Wrike", - "creationMethods": [{"name": "Wrike.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "ZendeskData", "creationMethods": [{"name": "ZendeskData.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Wrike", "creationMethods": [{"name": "Wrike.Contents", "parameters": + []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ZendeskData", "creationMethods": [{"name": "ZendeskData.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ZohoCreator", - "creationMethods": [{"name": "ZohoCreator.Contents", "parameters": [{"name": - "creatordomain", "dataType": "Text", "required": true, "allowedValues": ["zoho.com", - "zoho.eu", "zoho.com.cn", "zoho.in", "zoho.com.au"]}, {"name": "scopname", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "applinkname", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "reportlinkname", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Zucchetti", "creationMethods": [{"name": "Zucchetti.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ZohoCreator", "creationMethods": [{"name": "ZohoCreator.Contents", + "parameters": [{"name": "creatordomain", "dataType": "Text", "required": true, + "allowedValues": ["zoho.com", "zoho.eu", "zoho.com.cn", "zoho.in", "zoho.com.au"]}, + {"name": "scopname", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "applinkname", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "reportlinkname", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Zucchetti", "creationMethods": [{"name": "Zucchetti.Contents", "parameters": [{"name": "Url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Environment", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AtScale", - "creationMethods": [{"name": "AtScale.Cubes", "parameters": [{"name": "server", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ConnectionTimeout", - "dataType": "Duration", "required": false, "allowedValues": null}, {"name": - "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureCosmosDBForMongoDBvCore", - "creationMethods": [{"name": "AzureCosmosDBForMongoDBvCore.Contents", "parameters": - [{"name": "baseURL", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AtScale", "creationMethods": [{"name": "AtScale.Cubes", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "ConnectionTimeout", "dataType": "Duration", "required": false, + "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Duration", + "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureCosmosDBForMongoDBvCore", "creationMethods": [{"name": "AzureCosmosDBForMongoDBvCore.Contents", + "parameters": [{"name": "baseURL", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "collection", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureCostManagement", - "creationMethods": [{"name": "AzureCostManagement.Tables", "parameters": [{"name": - "scope", "dataType": "Text", "required": true, "allowedValues": ["Billing - Profile Id", "Enrollment Number", "Manually Input Scope"]}, {"name": "scopeValue", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "numberOfMonths", - "dataType": "Number", "required": true, "allowedValues": null}, {"name": "startDate", - "dataType": "Date", "required": false, "allowedValues": null}, {"name": "endDate", - "dataType": "Date", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureDeviceRegistry", "creationMethods": [{"name": "AzureDeviceRegistry.Query", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureCostManagement", "creationMethods": [{"name": "AzureCostManagement.Tables", + "parameters": [{"name": "scope", "dataType": "Text", "required": true, "allowedValues": + ["Billing Profile Id", "Enrollment Number", "Manually Input Scope"]}, {"name": + "scopeValue", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "numberOfMonths", "dataType": "Number", "required": true, "allowedValues": + null}, {"name": "startDate", "dataType": "Date", "required": false, "allowedValues": + null}, {"name": "endDate", "dataType": "Date", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureDeviceRegistry", "creationMethods": [{"name": "AzureDeviceRegistry.Query", "parameters": [{"name": "scope", "dataType": "Text", "required": true, "allowedValues": ["Tenant", "Subscription"]}, {"name": "subscriptions", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "namespaces", "dataType": @@ -674,77 +746,84 @@ interactions: {"name": "pagesize", "dataType": "Number", "required": false, "allowedValues": ["5", "10", "25", "50", "100", "200", "300", "400", "500", "600", "700", "800", "900", "1000"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureResourceGraph", - "creationMethods": [{"name": "AzureResourceGraph.Query", "parameters": [{"name": - "query", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "scope", "dataType": "Text", "required": false, "allowedValues": ["Tenant", - "Subscription", "Management group"]}, {"name": "subscription", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "managementGroup", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureResourceGraph", "creationMethods": [{"name": "AzureResourceGraph.Query", + "parameters": [{"name": "query", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "scope", "dataType": "Text", "required": false, "allowedValues": + ["Tenant", "Subscription", "Management group"]}, {"name": "subscription", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "managementGroup", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "resultTruncated", "dataType": "Boolean", "required": false, "allowedValues": ["true", "false"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CommonDataService", - "creationMethods": [{"name": "CommonDataService.Database", "parameters": [{"name": - "server", "dataType": "Text", "required": false, "allowedValues": null}, {"name": - "CreateNavigationProperties", "dataType": "Boolean", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], - "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": - false}, {"type": "CosmosDB", "creationMethods": [{"name": "CosmosDB.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CommonDataService", "creationMethods": [{"name": "CommonDataService.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "CreateNavigationProperties", "dataType": "Boolean", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted", + "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CosmosDB", "creationMethods": [{"name": "CosmosDB.Contents", "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "NUMBER_OF_RETRIES", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ENABLE_AVERAGE_FUNCTION_PASSDOWN", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ENABLE_SORT_PASSDOWN_FOR_MULTIPLE_COLUMNS", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CustomerInsights", - "creationMethods": [{"name": "CustomerInsights.Contents", "parameters": []}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "FabricSql", - "creationMethods": [{"name": "FabricSql.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"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}, {"type": "GoogleSheets", "creationMethods": - [{"name": "GoogleSheets.Contents", "parameters": [{"name": "url", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Intune", "creationMethods": [{"name": "Intune.Contents", - "parameters": [{"name": "maxHistoryDays", "dataType": "Number", "required": - true, "allowedValues": ["1", "2", "3", "4", "5", "6", "7", "14", "30", "60"]}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Lakehouse", - "creationMethods": [{"name": "Lakehouse.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"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": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CustomerInsights", "creationMethods": [{"name": "CustomerInsights.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "FabricSql", "creationMethods": [{"name": "FabricSql.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "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": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PowerBIDatamarts", - "creationMethods": [{"name": "PowerBI.Datamarts", "parameters": [{"name": - "server", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PowerPlatformDataflows", - "creationMethods": [{"name": "PowerPlatform.Dataflows", "parameters": []}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ProductInsights", - "creationMethods": [{"name": "ProductInsights.Contents", "parameters": []}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Synapse", - "creationMethods": [{"name": "Synapse.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Warehouse", "creationMethods": [{"name": "Fabric.Warehouse", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "IntuneV2", "creationMethods": [{"name": "IntuneV2.Contents", + "parameters": [{"name": "dataWarehouseAsuUri", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "maxHistoryDays", "dataType": "Number", + "required": false, "allowedValues": ["1", "2", "3", "4", "5", "6", "7", "14", + "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": + ["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", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ProductInsights", "creationMethods": [{"name": "ProductInsights.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Synapse", "creationMethods": [{"name": "Synapse.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Warehouse", "creationMethods": [{"name": "Fabric.Warehouse", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "VivaInsights", "creationMethods": [{"name": "VivaInsights.Data", - "parameters": [{"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": + 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": @@ -752,284 +831,323 @@ interactions: false, "allowedValues": ["Aggregated data", "Row-level data"]}, {"name": "TableName", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AdlsGen2CosmosStructuredStream", "creationMethods": [{"name": - "AdlsGen2CosmosStructuredStream.Contents", "parameters": [{"name": "url", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "AmazonRdsForOracle", "creationMethods": - [{"name": "AmazonRdsForOracle.Database", "parameters": [{"name": "server", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], - "supportsSkipTestConnection": false}, {"type": "AmazonRdsForSqlServer", "creationMethods": - [{"name": "AmazonRdsForSqlServer.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}, {"type": "AmazonS3", "creationMethods": - [{"name": "AmazonS3.Storage", "parameters": [{"name": "url", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "roleArn", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic", "OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AmazonS3Compatible", - "creationMethods": [{"name": "AmazonS3Compatible.Storage", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AvevaConnect", "creationMethods": [{"name": "AvevaConnect.Contents", - "parameters": [{"name": "AccountId", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "url", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureAISearch", "creationMethods": [{"name": "AzureAISearch.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AdlsGen2CosmosStructuredStream", "creationMethods": [{"name": "AdlsGen2CosmosStructuredStream.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureArtifactFeed", - "creationMethods": [{"name": "AzureArtifactFeed.Contents", "parameters": [{"name": - "feedUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"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}, {"type": "AzureCosmosDBForMongoDB", - "creationMethods": [{"name": "AzureCosmosDBForMongoDB.Database", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "serverVersion", "dataType": "Text", "required": true, "allowedValues": - ["Above 3.2", "3.2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": - "AzureDatabaseForMySQL", "creationMethods": [{"name": "AzureDatabaseForMySQL.Database", + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AmazonRdsForOracle", "creationMethods": [{"name": "AmazonRdsForOracle.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AmazonRdsForSqlServer", "creationMethods": [{"name": "AmazonRdsForSqlServer.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": "AmazonS3", "creationMethods": [{"name": "AmazonS3.Storage", + "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "roleArn", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SAPDatasphereAmazonS3", "creationMethods": [{"name": "SAPDatasphereAmazonS3.Actions", + "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "roleArn", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AmazonS3Compatible", "creationMethods": [{"name": "AmazonS3Compatible.Storage", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AvevaConnect", "creationMethods": [{"name": "AvevaConnect.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "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}, {"type": "AzureCosmosDBForMongoDB", "creationMethods": [{"name": "AzureCosmosDBForMongoDB.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "serverVersion", "dataType": "Text", "required": true, "allowedValues": + ["Above 3.2", "3.2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureDatabaseForMySQL", "creationMethods": [{"name": "AzureDatabaseForMySQL.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}, {"type": - "AzureDatabricksWorkspace", "creationMethods": [{"name": "AzureDatabricksWorkspace.Actions", + ["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}, {"type": "AzureDataFactory", "creationMethods": [{"name": "AzureDataFactory.Actions", + 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": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureDataLakeStoreCosmosStructuredStream", - "creationMethods": [{"name": "AzureDataLakeStoreCosmosStructuredStream.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"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}, {"type": "AzureFunction", - "creationMethods": [{"name": "AzureFunction.Contents", "parameters": [{"name": - "functionAppUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key", "Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureHDInsightCluster", - "creationMethods": [{"name": "AzureHDInsightCluster.Actions", "parameters": - [{"name": "hdiUrl", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + 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": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureFunction", "creationMethods": [{"name": "AzureFunction.Contents", + "parameters": [{"name": "functionAppUrl", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "Anonymous"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "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": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureHDInsightOnDemandCluster", - "creationMethods": [{"name": "AzureHDInsightOnDemandCluster.Actions", "parameters": - [{"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "resourceGroupName", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureKeyVault", "creationMethods": [{"name": "AzureKeyVault.Actions", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureHDInsightOnDemandCluster", "creationMethods": [{"name": + "AzureHDInsightOnDemandCluster.Actions", "parameters": [{"name": "subscriptionId", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroupName", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureKeyVault", "creationMethods": [{"name": "AzureKeyVault.Actions", "parameters": [{"name": "accountName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureMachineLearning", "creationMethods": [{"name": "AzureMachineLearning.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureMachineLearning", "creationMethods": [{"name": "AzureMachineLearning.Contents", "parameters": [{"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroupName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "workspaceName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzurePostgreSQL", - "creationMethods": [{"name": "AzurePostgreSQL.Database", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "database", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + ["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": + null}, {"name": "CommandTimeout", "dataType": "Duration", "required": false, + "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureServiceBus", "creationMethods": [{"name": "AzureServiceBus.Contents", "parameters": [{"name": "hostName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureSqlMI", - "creationMethods": [{"name": "AzureSqlMI.Database", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "database", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "Query", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureSqlMI", "creationMethods": [{"name": "AzureSqlMI.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "Query", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureSynapseWorkspace", "creationMethods": [{"name": "AzureSynapseWorkspace.Actions", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureSynapseWorkspace", "creationMethods": [{"name": "AzureSynapseWorkspace.Actions", "parameters": [{"name": "workspaceName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Cassandra", "creationMethods": - [{"name": "Cassandra.Contents", "parameters": [{"name": "Host", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "Port", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "ConfluentCloud", "creationMethods": - [{"name": "ConfluentCloud.Contents", "parameters": [{"name": "server", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "ConfluentSchemaRegistry", "creationMethods": [{"name": "ConfluentSchemaRegistry.Contents", + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Cassandra", "creationMethods": [{"name": "Cassandra.Contents", + "parameters": [{"name": "Host", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "Port", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ConfluentCloud", "creationMethods": [{"name": "ConfluentCloud.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ConfluentSchemaRegistry", "creationMethods": [{"name": "ConfluentSchemaRegistry.Contents", "parameters": [{"name": "schemaRegistryUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CopyJob", - "creationMethods": [{"name": "CopyJob.Actions", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"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": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics365", - "creationMethods": [{"name": "Dynamics365.Contents", "parameters": [{"name": - "server", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CopyJob", "creationMethods": [{"name": "CopyJob.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "DynamicsAX", "creationMethods": [{"name": "DynamicsAX.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "CustomStreamSource", "creationMethods": [{"name": "CustomStreamSource.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DataBuildToolJob", "creationMethods": [{"name": "DataBuildToolJob.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "DynamicsCrm", "creationMethods": [{"name": "DynamicsCrm.Contents", + 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": + ["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}, {"type": "EventHub", "creationMethods": [{"name": "EventHub.Contents", - "parameters": [{"name": "endpoint", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "entityPath", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "DynamicsAX", "creationMethods": [{"name": "DynamicsAX.Contents", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "FabricDataPipelines", "creationMethods": [{"name": "FabricDataPipelines.Actions", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "DynamicsCrm", "creationMethods": [{"name": "DynamicsCrm.Contents", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "EventHub", "creationMethods": [{"name": "EventHub.Contents", "parameters": + [{"name": "endpoint", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "entityPath", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "FabricDataPipelines", "creationMethods": [{"name": "FabricDataPipelines.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "FTP", "creationMethods": [{"name": - "FTP.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "GoogleCloudStorage", "creationMethods": [{"name": "GoogleCloudStorage.Storage", + "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"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "FTP", "creationMethods": [{"name": "FTP.Contents", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "GoogleCloudStorage", "creationMethods": [{"name": "GoogleCloudStorage.Storage", "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "GooglePubSub", - "creationMethods": [{"name": "GooglePubSub.Contents", "parameters": [{"name": - "projectId", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "GreenplumForPipeline", - "creationMethods": [{"name": "GreenplumForPipeline.Database", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SAPDatasphereGoogleCloudStorage", "creationMethods": [{"name": + "SAPDatasphereGoogleCloudStorage.Actions", "parameters": [{"name": "url", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "GooglePubSub", "creationMethods": [{"name": "GooglePubSub.Contents", "parameters": + [{"name": "projectId", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "GreenplumForPipeline", "creationMethods": [{"name": "GreenplumForPipeline.Database", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "connectionTimeout", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "commandTimeout", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": - "HdfsForPipeline", "creationMethods": [{"name": "HdfsForPipeline.Contents", + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "HdfsForPipeline", "creationMethods": [{"name": "HdfsForPipeline.Contents", "parameters": [{"name": "clusterURL", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "HttpServer", - "creationMethods": [{"name": "HttpServer.Contents", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "Basic", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "InformixForPipeline", "creationMethods": - [{"name": "InformixForPipeline.Contents", "parameters": [{"name": "server", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "host", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "service", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "protocol", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "IoTHub", "creationMethods": - [{"name": "IoTHub.Contents", "parameters": [{"name": "entityPath", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Kinesis", "creationMethods": [{"name": "Kinesis.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "HttpServer", "creationMethods": [{"name": "HttpServer.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "InformixForPipeline", "creationMethods": [{"name": "InformixForPipeline.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "service", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "protocol", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "IoTHub", "creationMethods": [{"name": "IoTHub.Contents", + "parameters": [{"name": "entityPath", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Kinesis", "creationMethods": [{"name": "Kinesis.Contents", "parameters": [{"name": "streamName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MariaDBForPipeline", - "creationMethods": [{"name": "MariaDBForPipeline.Database", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MariaDBForPipeline", "creationMethods": [{"name": "MariaDBForPipeline.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}, {"type": - "MicrosoftAccess", "creationMethods": [{"name": "MicrosoftAccess.Contents", + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MicrosoftAccess", "creationMethods": [{"name": "MicrosoftAccess.Contents", "parameters": [{"name": "filePath", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "MicrosoftOutlook", "creationMethods": [{"name": "MicrosoftOutlook.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "MicrosoftOutlook", "creationMethods": [{"name": "MicrosoftOutlook.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", + false, "supportedCredentialTypesForUsageInUserControlledCode": 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}, {"name": "randomString", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MongoDBForPipeline", - "creationMethods": [{"name": "MongoDBForPipeline.Contents", "parameters": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MongoDBForPipeline", "creationMethods": [{"name": "MongoDBForPipeline.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MQTT", "creationMethods": [{"name": "MQTT.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MQTT", "creationMethods": - [{"name": "MQTT.Contents", "parameters": [{"name": "server", "dataType": "Text", - "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Notebook", "creationMethods": [{"name": "Notebook.Actions", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Notebook", "creationMethods": [{"name": "Notebook.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", "parameters": [{"name": "APIEndpoint", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PowerBIDatasets", - "creationMethods": [{"name": "PowerBIDatasets.Actions", "parameters": []}], - "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "Presto", "creationMethods": [{"name": "Presto.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "PowerBIDatasets", "creationMethods": [{"name": "PowerBIDatasets.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Presto", "creationMethods": [{"name": "Presto.Contents", "parameters": [{"name": "Server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Catalog", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Timezone", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ServerCertificateValidation", "dataType": "Text", "required": false, "allowedValues": ["Enable", "Disable"]}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false}, {"type": "RestService", - "creationMethods": [{"name": "RestService.Contents", "parameters": [{"name": - "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "audience", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "ServicePrincipal"], + "Encrypted"], "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": + null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SalesforceServiceCloud", "creationMethods": [{"name": "SalesforceServiceCloud.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SalesforceServiceCloud", "creationMethods": [{"name": "SalesforceServiceCloud.Contents", "parameters": [{"name": "environmentURL", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SAPBWOpenHubApplicationServer", - "creationMethods": [{"name": "SAPBWOpenHubApplicationServer.Contents", "parameters": - [{"name": "appServerName", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "systemNumber", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "languageCode", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SAPBWOpenHubMessageServer", - "creationMethods": [{"name": "SAPBWOpenHubMessageServer.Contents", "parameters": - [{"name": "messageServer", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "messageServerService", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "systemID", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "logonGroup", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "languageCode", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SAPTableApplicationServer", "creationMethods": [{"name": - "SAPTableApplicationServer.Contents", "parameters": [{"name": "appServerName", + true, "allowedValues": null}, {"name": "apiVersion", "dataType": "Text", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SAPAzureDataLakeStorageGen2", "creationMethods": [{"name": + "SAPAzureDataLakeStorageGen2.Actions", "parameters": [{"name": "url", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "Key", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SAPBWOpenHubApplicationServer", "creationMethods": [{"name": + "SAPBWOpenHubApplicationServer.Contents", "parameters": [{"name": "appServerName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "systemNumber", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "languageCode", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SAPTableMessageServer", "creationMethods": [{"name": "SAPTableMessageServer.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SAPBWOpenHubMessageServer", "creationMethods": [{"name": "SAPBWOpenHubMessageServer.Contents", "parameters": [{"name": "messageServer", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "messageServerService", "dataType": @@ -1038,60 +1156,90 @@ interactions: "dataType": "Text", "required": false, "allowedValues": null}, {"name": "languageCode", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "ServiceNow", "creationMethods": [{"name": "ServiceNow.Data", - "parameters": [{"name": "instance", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SFTP", "creationMethods": - [{"name": "SFTP.Contents", "parameters": [{"name": "server", "dataType": "Text", - "required": true, "allowedValues": null}, {"name": "fingerprint", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SAPTableApplicationServer", "creationMethods": [{"name": "SAPTableApplicationServer.Contents", + "parameters": [{"name": "appServerName", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "systemNumber", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "languageCode", "dataType": "Text", + "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SAPTableMessageServer", "creationMethods": [{"name": "SAPTableMessageServer.Contents", + "parameters": [{"name": "messageServer", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "messageServerService", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "systemID", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "logonGroup", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "languageCode", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "ShortcutsExtensibilityTest", "creationMethods": [{"name": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "ServiceNow", "creationMethods": [{"name": "ServiceNow.Data", "parameters": + [{"name": "instance", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SFTP", "creationMethods": [{"name": "SFTP.Contents", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "fingerprint", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Shopify", "creationMethods": [{"name": "Shopify.Database", + "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ShortcutsExtensibilityTest", "creationMethods": [{"name": "ShortcutsExtensibilityTest.Contents", "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "audience", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "SolacePubsub", "creationMethods": - [{"name": "SolacePubsub.Contents", "parameters": [{"name": "server", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SparkJobDefinition", "creationMethods": [{"name": "SparkJobDefinition.Actions", + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SolacePubsub", "creationMethods": [{"name": "SolacePubsub.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SparkJobDefinition", "creationMethods": [{"name": "SparkJobDefinition.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "UserDataFunctions", - "creationMethods": [{"name": "UserDataFunctions.Actions", "parameters": []}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "WebForPipeline", - "creationMethods": [{"name": "WebForPipeline.Contents", "parameters": [{"name": - "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "audience", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "ServicePrincipal"], + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "UserDataFunctions", "creationMethods": [{"name": "UserDataFunctions.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AzureDevOpsSourceControl", "creationMethods": [{"name": - "AzureDevOpsSourceControl.Contents", "parameters": [{"name": "url", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "GitHubSourceControl", "creationMethods": - [{"name": "GitHubSourceControl.Contents", "parameters": [{"name": "url", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "GoogleAds", "creationMethods": [{"name": "GoogleAds.Contents", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "WebForPipeline", "creationMethods": [{"name": "WebForPipeline.Contents", + "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "audience", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "Key", + "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureDevOpsSourceControl", "creationMethods": [{"name": "AzureDevOpsSourceControl.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "GitHubSourceControl", "creationMethods": [{"name": "GitHubSourceControl.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "GoogleAds", "creationMethods": [{"name": "GoogleAds.Contents", "parameters": [{"name": "googleAdsApiVersion", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "clientCustomerID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "loginCustomerID", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "Microsoft365", "creationMethods": - [{"name": "Microsoft365.Contents", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false}, {"type": "QuickBooksForPipeline", "creationMethods": - [{"name": "QuickBooksForPipeline.Contents", "parameters": [{"name": "endpoint", - "dataType": "Text", "required": true, "allowedValues": ["https://sandbox-quickbooks.api.intuit.com", - "https://quickbooks.api.intuit.com"]}]}], "supportedCredentialTypes": ["OAuth2"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Microsoft365", "creationMethods": [{"name": "Microsoft365.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AriaConnector", "creationMethods": [{"name": "AriaDataConnector.GetCubes", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "QuickBooksForPipeline", "creationMethods": [{"name": "QuickBooksForPipeline.Contents", + "parameters": [{"name": "endpoint", "dataType": "Text", "required": true, + "allowedValues": ["https://sandbox-quickbooks.api.intuit.com", "https://quickbooks.api.intuit.com"]}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AriaConnector", "creationMethods": [{"name": "AriaDataConnector.GetCubes", "parameters": [{"name": "Project ID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "interval", "dataType": "Text", "required": false, "allowedValues": ["Last hour", "Last 2 hours", "Last 4 hours", "Last @@ -1101,111 +1249,118 @@ interactions: "dataType": "Text", "required": false, "allowedValues": ["Five seconds", "Ten seconds", "Five minutes", "One hour", "One day", "One week", "One month"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureEnterprise", - "creationMethods": [{"name": "AzureEnterprise.Tables", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "CloudScope", "creationMethods": [{"name": "CloudScope.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureEnterprise", "creationMethods": [{"name": "AzureEnterprise.Tables", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CloudScope", "creationMethods": [{"name": "CloudScope.Contents", "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CloudScopeInstagram", - "creationMethods": [{"name": "CloudScopeInstagram.Contents", "parameters": - []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "comScore", - "creationMethods": [{"name": "comScore.NavTable", "parameters": [{"name": - "datacenter", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "client", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "startDate", "dataType": "Date", "required": false, "allowedValues": - null}, {"name": "endDate", "dataType": "Date", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CloudScopeInstagram", "creationMethods": [{"name": "CloudScopeInstagram.Contents", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "comScore", "creationMethods": [{"name": "comScore.NavTable", + "parameters": [{"name": "datacenter", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "client", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "startDate", "dataType": "Date", "required": + false, "allowedValues": null}, {"name": "endDate", "dataType": "Date", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "InfinityConnector", "creationMethods": [{"name": "InfinityConnector.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "JDIConnector", "creationMethods": [{"name": "JDIConnector.Contents", + "parameters": [{"name": "DataUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "InfinityConnector", - "creationMethods": [{"name": "InfinityConnector.Contents", "parameters": []}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "JDIConnector", - "creationMethods": [{"name": "JDIConnector.Contents", "parameters": [{"name": - "DataUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "KaizalaAttendanceReports", - "creationMethods": [{"name": "KaizalaAttendanceReports.Feed", "parameters": - [{"name": "ContentPackName", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "KaizalaReports", - "creationMethods": [{"name": "KaizalaReports.Feed", "parameters": [{"name": - "MethodName", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "KaizalaSurveyReports", - "creationMethods": [{"name": "KaizalaSurveyReports.Feed", "parameters": [{"name": - "ContentPackName", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AdMaD", - "creationMethods": [{"name": "AdMaD.Feed", "parameters": [{"name": "url", - "dataType": "Text", "required": true, "allowedValues": ["https://columnstoremt.azurewebsites.net/", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "KaizalaAttendanceReports", "creationMethods": [{"name": "KaizalaAttendanceReports.Feed", + "parameters": [{"name": "ContentPackName", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "KaizalaReports", "creationMethods": [{"name": "KaizalaReports.Feed", + "parameters": [{"name": "MethodName", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "KaizalaSurveyReports", "creationMethods": [{"name": "KaizalaSurveyReports.Feed", + "parameters": [{"name": "ContentPackName", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AdMaD", "creationMethods": [{"name": "AdMaD.Feed", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": ["https://columnstoremt.azurewebsites.net/", "https://admadmt.azurewebsites.net/", "https://firebirdapi.azure-api.net/", "https://firebirdapptest.azurewebsites.net/"]}, {"name": "sourceName", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "request", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "myob_ar", "creationMethods": [{"name": "myob_ar.GetCompanyFiles", - "parameters": [{"name": "company", "dataType": "Text", "required": true, "allowedValues": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "myob_ar", "creationMethods": [{"name": "myob_ar.GetCompanyFiles", "parameters": + [{"name": "company", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Office365Mon2", - "creationMethods": [{"name": "Office365Mon.Outages.Feed", "parameters": []}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Plantronics", - "creationMethods": [{"name": "Plantronics.Feed", "parameters": [{"name": "URL", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Tenant", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "URL1", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "URL2", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Parameters", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ElementsPerPage", - "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "ProductioneerMExt", "creationMethods": [{"name": "ProductioneerMExt.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Office365Mon2", "creationMethods": [{"name": "Office365Mon.Outages.Feed", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Plantronics", "creationMethods": [{"name": "Plantronics.Feed", + "parameters": [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "Tenant", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "URL1", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "URL2", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "Parameters", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "ElementsPerPage", "dataType": "Number", "required": false, + "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ProductioneerMExt", "creationMethods": [{"name": "ProductioneerMExt.Contents", "parameters": [{"name": "CompanyName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "endpoint", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "StartDate", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ProjectIntelligence", - "creationMethods": [{"name": "ProjectIntelligence.Service", "parameters": - [{"name": "ShareAdvanceWebAddress", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "Dimension", "dataType": "Text", "required": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ProjectIntelligence", "creationMethods": [{"name": "ProjectIntelligence.Service", + "parameters": [{"name": "ShareAdvanceWebAddress", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "Dimension", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "DataType", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "QuestionPro", - "creationMethods": [{"name": "QuestionPro.Contents", "parameters": [{"name": - "access_id", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ScopevisioPowerBICon", - "creationMethods": [{"name": "ScopevisioPowerBICon.Contents", "parameters": - []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SentryOne", - "creationMethods": [{"name": "SentryOne.Tables", "parameters": []}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "SpotlightCloudReports", "creationMethods": [{"name": "SpotlightCloudReports.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "QuestionPro", "creationMethods": [{"name": "QuestionPro.Contents", + "parameters": [{"name": "access_id", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "ScopevisioPowerBICon", "creationMethods": [{"name": "ScopevisioPowerBICon.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SentryOne", "creationMethods": [{"name": "SentryOne.Tables", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SpotlightCloudReports", "creationMethods": [{"name": "SpotlightCloudReports.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Timelog", - "creationMethods": [{"name": "Timelog.Tables", "parameters": [{"name": "SiteCode", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ApiID", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ApiPassword", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "URLAccountName", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "DefaultNumberAccount", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Timelog", "creationMethods": [{"name": "Timelog.Tables", + "parameters": [{"name": "SiteCode", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "ApiID", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "ApiPassword", "dataType": "Text", + "required": true, "allowedValues": null}, {"name": "URLAccountName", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "DefaultNumberAccount", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "CurrentMonthOnly", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "UserVoice", "creationMethods": [{"name": "UserVoice.Tables", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "UserVoice", "creationMethods": [{"name": "UserVoice.Tables", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "WtsParadigm", "creationMethods": [{"name": "WtsParadigm.GetDefaultData", + "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Xero", "creationMethods": [{"name": "Xero.Contents", "parameters": + [{"name": "urlInput", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "countInput", "dataType": "Number", "required": false, "allowedValues": + null}, {"name": "company", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "tenantId", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "WtsParadigm", - "creationMethods": [{"name": "WtsParadigm.GetDefaultData", "parameters": []}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Xero", "creationMethods": - [{"name": "Xero.Contents", "parameters": [{"name": "urlInput", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "countInput", "dataType": - "Number", "required": false, "allowedValues": null}, {"name": "company", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "tenantId", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AdminInsights", "creationMethods": [{"name": "AdminInsights.GetAzureBlobContents", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AdminInsights", "creationMethods": [{"name": "AdminInsights.GetAzureBlobContents", "parameters": [{"name": "_workload", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "_fileType", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "_version", "dataType": "Text", "required": @@ -1214,87 +1369,91 @@ interactions: "Text", "required": true, "allowedValues": null}, {"name": "_desktopHostContainerUrl", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}, {"type": "AutoPremium", "creationMethods": [{"name": "AutoPremium.GetMetricsData", + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AutoPremium", "creationMethods": [{"name": "AutoPremium.GetMetricsData", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "isPbiAdmin", "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CapacityMetricsCES", - "creationMethods": [{"name": "CapacityMetricsCES.GetMetricsData", "parameters": - [{"name": "_queryName", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_capacityId", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_tenantId", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_ago", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_cluster", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_utcOffset", "dataType": "Number", "required": false, "allowedValues": - null}, {"name": "_releaseType", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_localTimepoint", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "_byPassAdminCheckForTenantAdmin", "dataType": - "Boolean", "required": false, "allowedValues": null}, {"name": "_shouldMaskUser", + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CapacityMetricsCES", "creationMethods": [{"name": "CapacityMetricsCES.GetMetricsData", + "parameters": [{"name": "_queryName", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "_capacityId", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_tenantId", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_ago", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_cluster", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_database", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_utcOffset", "dataType": "Number", + "required": false, "allowedValues": null}, {"name": "_releaseType", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "_localTimepoint", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_byPassAdminCheckForTenantAdmin", "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": - "_targetCesRegion", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_startDate", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_endDate", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_uniqueKey", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_artifactId", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_workspaceId", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_operationName", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_operationId", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_user", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "_status", "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}, {"type": "Goals", "creationMethods": [{"name": "Goals.GetScorecardData", + "_shouldMaskUser", "dataType": "Boolean", "required": false, "allowedValues": + null}, {"name": "_targetCesRegion", "dataType": "Text", "required": false, + "allowedValues": null}, {"name": "_startDate", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "_endDate", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "_uniqueKey", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "_artifactId", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "_workspaceId", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_operationName", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_operationId", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_user", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_status", + "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}, {"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}, {"type": "MetricsDataConnector", - "creationMethods": [{"name": "MetricsDataConnector.GetMetricsData", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "isPbiAdmin", "dataType": "Boolean", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MicrosoftCallQuality", - "creationMethods": [{"name": "MicrosoftCallQuality.GenerateTable", "parameters": - [{"name": "tenantId", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "filters", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "UsageMetricsDataConnector", - "creationMethods": [{"name": "UsageMetricsDataConnector.GetMetricsData", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "UsageMetricsCES", - "creationMethods": [{"name": "UsageMetricsCES.Contents", "parameters": [{"name": - "_tenantId", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "_workspaceId", "dataType": "Text", "required": true, "allowedValues": + 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}, {"type": "ElasticSearch", - "creationMethods": [{"name": "ElasticSearch.Database", "parameters": [{"name": - "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "keyColumnName", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Looker", - "creationMethods": [{"name": "Looker.DataSource", "parameters": [{"name": - "Host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": - "ShowHidden", "dataType": "Boolean", "required": false, "allowedValues": ["true", - "false"]}, {"name": "EnableLogging", "dataType": "Boolean", "required": false, - "allowedValues": ["true", "false"]}]}], "supportedCredentialTypes": ["OAuth2"], + ["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": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MicrosoftCallQuality", "creationMethods": [{"name": "MicrosoftCallQuality.GenerateTable", + "parameters": [{"name": "tenantId", "dataType": "Text", "required": false, + "allowedValues": null}, {"name": "filters", "dataType": "Text", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false}]}' + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "UsageMetricsDataConnector", "creationMethods": [{"name": "UsageMetricsDataConnector.GetMetricsData", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "UsageMetricsCES", "creationMethods": [{"name": "UsageMetricsCES.Contents", + "parameters": [{"name": "_tenantId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "_workspaceId", "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": "ElasticSearch", "creationMethods": [{"name": "ElasticSearch.Database", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "keyColumnName", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "Looker", "creationMethods": [{"name": "Looker.DataSource", + "parameters": [{"name": "Host", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "ShowHidden", "dataType": "Boolean", "required": false, "allowedValues": + ["true", "false"]}, {"name": "EnableLogging", "dataType": "Boolean", "required": + false, "allowedValues": ["true", "false"]}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1303,15 +1462,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '8070' + - '8572' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:57 GMT + - Wed, 31 Dec 2025 14:35:53 GMT Pragma: - no-cache RequestId: - - c2db021f-2b64-4230-bb5e-4ec7da674514 + - c79ee99a-925f-41d4-989c-884385190e21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1319,7 +1478,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,566 +1496,51 @@ interactions: Connection: - keep-alive Content-Length: - - '570' + - '587' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/connections response: body: - string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '270' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:57 GMT - Location: - - https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - Pragma: - - no-cache - RequestId: - - ecc5c891-7427-4c08-bdc6-e418d77b090e - 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: 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.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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": "f962df9a-f595-40a1-a341-469b5ff34190", "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"}' headers: Access-Control-Expose-Headers: - RequestId Cache-Control: - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:58 GMT + - Wed, 31 Dec 2025 14:35:54 GMT Pragma: - no-cache RequestId: - - 6ba2d55f-6df0-4198-9244-6ca6c1249896 + - f962df9a-f595-40a1-a341-469b5ff34190 Strict-Transport-Security: - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked 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' + 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.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - response: - body: - string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '270' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:58 GMT - Pragma: - - no-cache - RequestId: - - 20e40011-1e7b-4d72-abaa-8af83491c026 - 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: '{"allowConnectionUsageInGateway": false, "displayName": "fabcli000002", - "connectivityType": "ShareableCloud", "privacyLevel": "None", "credentialDetails": - "mocked_credential_details"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '344' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - response: - body: - string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '270' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:59 GMT - Pragma: - - no-cache - RequestId: - - 47726f1b-7ec3-4631-8dbe-a751ed765ed8 - 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/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '280' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:59 GMT - Pragma: - - no-cache - RequestId: - - 368886b2-629e-4b0d-a3c8-4f672faa4060 - 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - response: - body: - string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '270' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:58 GMT - Pragma: - - no-cache - RequestId: - - db2aadd9-68b7-4521-bd31-ea736306477c - 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/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '280' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:59 GMT - Pragma: - - no-cache - RequestId: - - d226952c-3611-4404-a22f-f08a38ff60a2 - 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - response: - body: - string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '270' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:59 GMT - Pragma: - - no-cache - RequestId: - - a5735250-e07d-4ebd-926e-c9174aa14058 - 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: '{"allowConnectionUsageInGateway": false, "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "privacyLevel": "None", "credentialDetails": - "mocked_credential_details"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '344' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - response: - body: - string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '270' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:59 GMT - Pragma: - - no-cache - RequestId: - - cf71f143-6988-4be9-8483-75f4a2788e70 - 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/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", - "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: - - '280' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 09:21:59 GMT - Pragma: - - no-cache - RequestId: - - 5c5771c1-1cbe-44c0-a769-fd12758b1566 - 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee - 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 09:22:00 GMT - Pragma: - - no-cache - RequestId: - - 3098980a-9340-4bc0-8227-ddae139af3f7 - 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: 400 + message: Bad Request version: 1 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 94960f95..79a12f81 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.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '825' + - '185' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:50 GMT + - Wed, 31 Dec 2025 14:35:32 GMT Pragma: - no-cache RequestId: - - a5d78008-fe14-4d4a-a080-6ca7973c3ce3 + - 58b26cc1-22b5-44c0-9b8f-ff4e2b2e7124 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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,12 +61,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "c3bd77d6-705a-478b-a0f5-887c90394bce", + string: '{"contributorsScope": "AllTenant", "id": "582d4c9a-72ed-4869-a7c3-06c589436ba0", "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, 03 Sep 2025 09:21:50 GMT + - Wed, 31 Dec 2025 14:35:34 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/c3bd77d6-705a-478b-a0f5-887c90394bce + - https://api.fabric.microsoft.com/v1/admin/domains/582d4c9a-72ed-4869-a7c3-06c589436ba0 Pragma: - no-cache RequestId: - - 3d2c3fd6-3a8b-4bd9-956d-d46698bf4174 + - 611e273b-31ca-4a2b-a095-9237e53cb5f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -94,7 +94,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: @@ -112,12 +112,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "c3bd77d6-705a-478b-a0f5-887c90394bce", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "582d4c9a-72ed-4869-a7c3-06c589436ba0", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '859' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:50 GMT + - Wed, 31 Dec 2025 14:35:34 GMT Pragma: - no-cache RequestId: - - e7e8678b-57d4-4641-8917-8837a5ff08e5 + - cf08a7ab-f256-438c-b5fc-769dce36a29d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -143,7 +143,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: @@ -161,12 +161,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "c3bd77d6-705a-478b-a0f5-887c90394bce", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "582d4c9a-72ed-4869-a7c3-06c589436ba0", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -176,15 +176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '859' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:51 GMT + - Wed, 31 Dec 2025 14:35:34 GMT Pragma: - no-cache RequestId: - - 9cd777da-c61c-4e8e-a695-60fbe4369d89 + - 90f5096d-86a9-42ab-8327-5869635dbd5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,7 +192,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,9 +212,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/admin/domains/c3bd77d6-705a-478b-a0f5-887c90394bce + uri: https://api.fabric.microsoft.com/v1/admin/domains/582d4c9a-72ed-4869-a7c3-06c589436ba0 response: body: string: '' @@ -230,11 +230,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:21:50 GMT + - Wed, 31 Dec 2025 14:35:35 GMT Pragma: - no-cache RequestId: - - 7f4b9969-37c6-4189-8450-63533ab6c76f + - 76c743a3-5395-4ae2-9f8d-0a8ee6b28070 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -242,7 +242,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/test_set_domain_metadata_success[description].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[description].yaml index ad47eb17..2bc605e4 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.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '825' + - '185' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:51 GMT + - Wed, 31 Dec 2025 14:35:35 GMT Pragma: - no-cache RequestId: - - d5db956e-4fd9-4ab5-8d2d-7dc1096bd530 + - e9bf5aec-8e49-4e63-a72b-f30f7fa2551a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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,12 +61,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -80,13 +80,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:51 GMT + - Wed, 31 Dec 2025 14:35:37 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8 + - https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b Pragma: - no-cache RequestId: - - 4850300b-9340-407d-82d6-ba109e3633da + - 65a00744-5f40-46fb-9ca8-ae664988d0f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -94,7 +94,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: @@ -112,12 +112,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '861' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:51 GMT + - Wed, 31 Dec 2025 14:35:37 GMT Pragma: - no-cache RequestId: - - 6f6f14c3-ed75-47c0-b15e-bbfa4d79071b + - 25dba73d-79b4-4316-8aab-63bd7cbb6021 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -143,7 +143,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: @@ -161,12 +161,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8 + uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b response: body: - string: '{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -180,11 +180,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:51 GMT + - Wed, 31 Dec 2025 14:35:37 GMT Pragma: - no-cache RequestId: - - cdfca432-6a22-4635-950f-becb542aceff + - 8409c81d-3818-4874-86c1-4fbe8ecf238e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,7 +192,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: @@ -210,9 +210,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:51 GMT + - Wed, 31 Dec 2025 14:35:38 GMT Pragma: - no-cache RequestId: - - 071b546b-a541-49bc-b317-81248e8098c0 + - e80114ad-a23b-4588-abf6-91e8e1f70336 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -240,15 +240,14 @@ 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: '{"contributorsScope": "AllTenant", "displayName": "fabcli000001", "description": - "fabcli000002", "domainWorkspaces": []}' + body: '{"description": "fabcli000002"}' headers: Accept: - '*/*' @@ -257,16 +256,16 @@ interactions: Connection: - keep-alive Content-Length: - - '146' + - '41' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8 + uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b response: body: - string: '{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": "fabcli000002"}' headers: Access-Control-Expose-Headers: @@ -280,11 +279,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:39 GMT Pragma: - no-cache RequestId: - - 8faffe04-4e9e-443a-b2de-a41cbe2e8b85 + - a169fc1f-8c52-4636-9e12-06f94518f6ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +291,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: @@ -310,12 +309,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": "fabcli000002"}]}' headers: Access-Control-Expose-Headers: @@ -325,15 +324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '872' + - '237' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:38 GMT Pragma: - no-cache RequestId: - - 3745fe24-ddf8-45c5-a906-5422315392e5 + - 4667d2d7-0593-4030-ba9c-b00d168fad0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,7 +340,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: @@ -359,12 +358,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8 + uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b response: body: - string: '{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": "fabcli000002"}' headers: Access-Control-Expose-Headers: @@ -378,11 +377,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:40 GMT Pragma: - no-cache RequestId: - - 8a00a7b1-192c-4ca1-9105-67f8c94ce765 + - 1f6e0186-30fb-4ba8-becd-dd302df89420 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,7 +389,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,9 +407,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b/workspaces response: body: string: '{"value": []}' @@ -426,11 +425,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:40 GMT Pragma: - no-cache RequestId: - - dbceedd9-8a4d-43e1-848b-f47f41ab0000 + - a49f852b-7091-4505-b80e-1ab0815e9dd0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -438,7 +437,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: @@ -456,12 +455,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "08e3b5e7-1521-4631-b0f8-54f73327c5f8", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", "displayName": "fabcli000001", "description": "fabcli000002"}]}' headers: Access-Control-Expose-Headers: @@ -471,15 +470,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '872' + - '237' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:40 GMT Pragma: - no-cache RequestId: - - c5d6a52e-57fa-44ea-9a7e-4ccdd9f8b4a1 + - d87837f0-aacb-4057-a81e-1e14311f1fe9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -487,7 +486,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,9 +506,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/admin/domains/08e3b5e7-1521-4631-b0f8-54f73327c5f8 + uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b response: body: string: '' @@ -525,11 +524,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:42 GMT Pragma: - no-cache RequestId: - - 11f60380-75c5-45ef-b170-6b818eb1b969 + - 666228d8-a920-4897-91d2-989cdcdde034 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -537,7 +536,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/test_set_domain_metadata_success[displayName].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[displayName].yaml index d9c71da0..54f71264 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.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '825' + - '185' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:42 GMT Pragma: - no-cache RequestId: - - 3aae26e2-f5a6-4d74-afa7-c81fa59ad514 + - 2ed0db0e-2aa5-4399-b7b2-442a8b06af98 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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,12 +61,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "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, 03 Sep 2025 09:21:52 GMT + - Wed, 31 Dec 2025 14:35:43 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + - https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c Pragma: - no-cache RequestId: - - b165680d-cac1-4ab6-9ab5-1e0b4d059f95 + - 4f4b31f7-af56-4636-8417-ec5114793172 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -94,7 +94,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: @@ -112,12 +112,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '861' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:43 GMT Pragma: - no-cache RequestId: - - 38cb73b1-7bd3-4c9f-b627-d424605a67df + - fb73a0dc-728a-48ac-b4ea-a162773e59e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -143,7 +143,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: @@ -161,12 +161,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c response: body: - string: '{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "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, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:44 GMT Pragma: - no-cache RequestId: - - f2691fc9-92ef-4bf1-9030-5503b53aedf9 + - 43fd7f54-5729-40d4-b4a0-b5539f17a498 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,7 +192,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: @@ -210,9 +210,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:44 GMT Pragma: - no-cache RequestId: - - ca86d4eb-0fd3-43d1-89c0-3362be9ea241 + - e536610a-7ba9-4109-b728-4156c887dc2e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -240,15 +240,14 @@ 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: '{"contributorsScope": "AllTenant", "displayName": "fabcli000002", "description": - "", "domainWorkspaces": []}' + body: '{"displayName": "fabcli000002"}' headers: Accept: - '*/*' @@ -257,16 +256,16 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '41' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c response: body: - string: '{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000002", "description": ""}' headers: Access-Control-Expose-Headers: @@ -276,15 +275,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:45 GMT Pragma: - no-cache RequestId: - - b1f32197-bb3a-442c-9fd0-c23033dca7e0 + - 57fdbb79-55d2-4110-acf1-89faaddc49af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +291,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: @@ -310,12 +309,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000002", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -325,15 +324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '862' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:45 GMT Pragma: - no-cache RequestId: - - 2e70b92f-5c89-4fd3-9e2f-b70d01ca5503 + - 4c074567-a10b-453e-b1f4-26c0b9008ced Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,7 +340,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: @@ -359,12 +358,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000002", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -374,15 +373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '862' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:45 GMT Pragma: - no-cache RequestId: - - 656a6870-3975-473c-8242-7ed62c88258f + - 7213a2f1-e42d-4f86-bc0d-8a86327adf22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,7 +389,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,12 +407,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c response: body: - string: '{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000002", "description": ""}' headers: Access-Control-Expose-Headers: @@ -423,15 +422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:46 GMT Pragma: - no-cache RequestId: - - e901d7f6-ffc8-419a-a1f8-3e98f67ede44 + - ba49fbe3-032e-4316-8df0-cd80c8fe46dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -439,7 +438,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: @@ -457,9 +456,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c/workspaces response: body: string: '{"value": []}' @@ -475,11 +474,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:53 GMT + - Wed, 31 Dec 2025 14:35:46 GMT Pragma: - no-cache RequestId: - - b0649a24-495e-4458-9a6e-47df0dc4202b + - c9274ceb-8f06-452d-be34-6c3b9e4a8574 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -487,7 +486,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: @@ -505,12 +504,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000002", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -520,15 +519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '862' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:47 GMT Pragma: - no-cache RequestId: - - 8ec7e09f-ba1d-4ed7-a10d-936f219d1e66 + - 14fec864-84eb-4b78-abb7-0b0827893465 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -536,7 +535,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: @@ -554,12 +553,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c response: body: - string: '{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000002", "description": ""}' headers: Access-Control-Expose-Headers: @@ -569,15 +568,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:47 GMT Pragma: - no-cache RequestId: - - 357c1195-7674-4155-9220-9786308eda66 + - 0c6fdc44-c47d-4f85-b770-1b422c9c8e70 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -585,7 +584,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: @@ -603,9 +602,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c/workspaces response: body: string: '{"value": []}' @@ -621,11 +620,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:48 GMT Pragma: - no-cache RequestId: - - 168b26dc-8e46-4ca9-9230-c654611b9be7 + - 31c166f1-65a0-43b2-80b7-3ccd20ca87ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -633,15 +632,14 @@ 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: '{"contributorsScope": "AllTenant", "displayName": "fabcli000001", "description": - "", "domainWorkspaces": []}' + body: '{"displayName": "fabcli000001"}' headers: Accept: - '*/*' @@ -650,16 +648,16 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '41' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c response: body: - string: '{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -669,15 +667,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:48 GMT Pragma: - no-cache RequestId: - - 743b462e-feaa-4822-beab-34aa58b7a985 + - 95ee96a4-4793-470b-b39d-a5e71bc5bdba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -685,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: @@ -703,12 +701,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "5480e88e-5d43-4b27-9b6d-cf77f28dd1c1", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -718,15 +716,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '861' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:55 GMT + - Wed, 31 Dec 2025 14:35:48 GMT Pragma: - no-cache RequestId: - - e2b55ea7-0e76-4522-a466-61386e8d747f + - fa4e0041-9865-48f7-98fb-84f1d9ab5753 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -734,7 +732,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: @@ -754,9 +752,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/admin/domains/5480e88e-5d43-4b27-9b6d-cf77f28dd1c1 + uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c response: body: string: '' @@ -772,11 +770,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:21:54 GMT + - Wed, 31 Dec 2025 14:35:48 GMT Pragma: - no-cache RequestId: - - 1ab73e51-4609-436f-a89a-7bb82dcfc45f + - dc7269cf-397c-4d96-acfe-230221435702 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -784,7 +782,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/test_set_domain_success[contributorsScope-AdminsOnly].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_success[contributorsScope-AdminsOnly].yaml index 6f2b72a3..7e0198f3 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.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '825' + - '185' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:55 GMT + - Wed, 31 Dec 2025 14:35:50 GMT Pragma: - no-cache RequestId: - - 6c2168ef-db06-4b8d-bbff-4b42bad1a73f + - bb95eb29-d207-4849-b40b-f3355c8960f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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,12 +61,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"contributorsScope": "AllTenant", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "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, 03 Sep 2025 09:21:55 GMT + - Wed, 31 Dec 2025 14:35:50 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7 + - https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 Pragma: - no-cache RequestId: - - 8c33623c-bee1-4a91-bfa5-75746489aaee + - 26b04468-5050-4ea3-bdad-87617caa9492 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -94,7 +94,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: @@ -112,12 +112,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '860' + - '229' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:56 GMT + - Wed, 31 Dec 2025 14:35:50 GMT Pragma: - no-cache RequestId: - - 7f5b55c3-9dd2-43bc-82c8-4804fb4cc0ef + - 63c3869e-a372-465d-9fc1-6b43ab8c5101 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -143,7 +143,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: @@ -161,12 +161,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7 + uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 response: body: - string: '{"contributorsScope": "AllTenant", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"contributorsScope": "AllTenant", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "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, 03 Sep 2025 09:21:56 GMT + - Wed, 31 Dec 2025 14:35:50 GMT Pragma: - no-cache RequestId: - - 1731cbce-55a0-4557-98dc-88d9c97f0e6f + - f7b30a10-86a0-4876-bbf4-d9844032e136 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,7 +192,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: @@ -210,9 +210,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:56 GMT + - Wed, 31 Dec 2025 14:35:51 GMT Pragma: - no-cache RequestId: - - e9c0f7ea-7907-4adb-a46a-583a86baa8bd + - 2a4a82ab-8302-42b9-8318-021c3c0e4ee9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -240,15 +240,14 @@ 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: '{"contributorsScope": "AdminsOnly", "displayName": "fabcli000001", "description": - "", "domainWorkspaces": []}' + body: '{"contributorsScope": "AdminsOnly"}' headers: Accept: - '*/*' @@ -257,16 +256,16 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '41' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7 + uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 response: body: - string: '{"contributorsScope": "AdminsOnly", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -276,15 +275,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:56 GMT + - Wed, 31 Dec 2025 14:35:51 GMT Pragma: - no-cache RequestId: - - 1c29bb17-f68c-4486-850d-d6efcf1eb71e + - 06a69786-3c4f-49c6-b922-24e93ed496d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +291,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: @@ -310,12 +309,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -325,15 +324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '864' + - '238' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:56 GMT + - Wed, 31 Dec 2025 14:35:51 GMT Pragma: - no-cache RequestId: - - 15577cfb-42c6-47ab-8104-13f675cde469 + - 7e6c51bb-9b7f-4ef0-be5f-7dbe75e59ded Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,7 +340,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: @@ -359,12 +358,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7 + uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 response: body: - string: '{"contributorsScope": "AdminsOnly", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -374,15 +373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:56 GMT + - Wed, 31 Dec 2025 14:35:52 GMT Pragma: - no-cache RequestId: - - 868e0524-1d09-4dba-b259-fb233df530a1 + - e59a9a6b-d89c-415c-8e86-3d05572f3965 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,7 +389,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,9 +407,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871/workspaces response: body: string: '{"value": []}' @@ -426,11 +425,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:57 GMT + - Wed, 31 Dec 2025 14:35:52 GMT Pragma: - no-cache RequestId: - - a1a22d15-dbf5-4c3a-8fce-e2ac72e3eb21 + - 5aca7574-3155-4234-97ed-cc849bdb958b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -438,7 +437,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: @@ -456,12 +455,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "2a02d8b7-1f32-47e8-8e88-bdffcd544ca7", + string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -471,15 +470,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '864' + - '238' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:57 GMT + - Wed, 31 Dec 2025 14:35:52 GMT Pragma: - no-cache RequestId: - - 53fb922e-6b17-4be4-957b-4a7a55247867 + - 2262b51e-6422-4935-aeaa-1eccb6324397 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -487,7 +486,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,9 +506,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/admin/domains/2a02d8b7-1f32-47e8-8e88-bdffcd544ca7 + uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 response: body: string: '' @@ -525,11 +524,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:21:57 GMT + - Wed, 31 Dec 2025 14:35:52 GMT Pragma: - no-cache RequestId: - - 049735b0-cc72-4a7d-a1f9-420a520952dd + - c6deaff4-484a-4026-bfd9-8758f364326b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -537,7 +536,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/test_set_folder_success[displayName-randomFolder].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_folder_success[displayName-randomFolder].yaml index 506c750b..dae2e84b 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:56 GMT + - Wed, 31 Dec 2025 14:38:28 GMT Pragma: - no-cache RequestId: - - d60a3589-a354-49fb-b71b-7761325d33a2 + - b36a8105-4134-45b1-9f42-fa1b12b916e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:57 GMT + - Wed, 31 Dec 2025 14:38:29 GMT Pragma: - no-cache RequestId: - - 6207f2b9-d955-484a-b006-05fb673bf631 + - c08e4a6e-400d-45a9-a065-77a45b44e4b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:58 GMT + - Wed, 31 Dec 2025 14:38:29 GMT Pragma: - no-cache RequestId: - - c5f00b72-17a1-4d27-be8f-f88d1d1ae773 + - 045ae734-42c3-4934-a491-d42f0afebd9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,13 +160,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders response: body: - string: '{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": "fabcli000001", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "fabcli000001", + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -175,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:59 GMT + - Wed, 31 Dec 2025 14:38:30 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b Pragma: - no-cache RequestId: - - 8b16de9c-dd34-478c-8aee-e28cc6487d0a + - cc0564a4-4c53-43c6-8341-3ad082a888f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -211,13 +211,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -228,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:59 GMT + - Wed, 31 Dec 2025 14:38:30 GMT Pragma: - no-cache RequestId: - - 6b670b79-e809-47cc-838f-df607af9ec52 + - ce2c985f-dd34-4758-b1ce-1c829dbe4cee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,13 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True response: body: - string: '{"value": [{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": - "fabcli000001", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": + "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -277,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:00 GMT + - Wed, 31 Dec 2025 14:38:30 GMT Pragma: - no-cache RequestId: - - f870eefe-6b2d-4a61-a531-604e54875a0f + - 093bbbd6-da73-4fb6-b944-f62fd0981eec 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.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b response: body: - string: '{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": "fabcli000001", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "fabcli000001", + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -326,15 +326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:00 GMT + - Wed, 31 Dec 2025 14:38:30 GMT Pragma: - no-cache RequestId: - - 405153dc-58a5-4471-8365-2da4bd19e73a + - 5cfcbeff-fa7e-450f-b208-05f16d9bd95e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,13 +362,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b response: body: - string: '{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": "randomFolder", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "randomFolder", + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -377,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:00 GMT + - Wed, 31 Dec 2025 14:38:31 GMT Pragma: - no-cache RequestId: - - addb1697-1e6b-4ae9-a528-8327b5180615 + - 38ba0b02-5bcf-45aa-ace9-3de9c22aa45a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -411,13 +411,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -428,15 +428,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:01 GMT + - Wed, 31 Dec 2025 14:38:31 GMT Pragma: - no-cache RequestId: - - 4174bf3c-eafc-4ff6-896e-bd5745edad4c + - 6c96206d-01fd-4dc6-aa5c-02885179759d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -462,13 +462,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True response: body: - string: '{"value": [{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": - "randomFolder", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": + "randomFolder", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -481,11 +481,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:01 GMT + - Wed, 31 Dec 2025 14:38:32 GMT Pragma: - no-cache RequestId: - - cb3ad238-7fdd-4628-99e8-7c168672e4eb + - 22e6bf93-7bca-49a2-8805-68a83e35c6c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -511,13 +511,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b response: body: - string: '{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": "randomFolder", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "randomFolder", + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -526,15 +526,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:02 GMT + - Wed, 31 Dec 2025 14:38:32 GMT Pragma: - no-cache RequestId: - - 2a333cd5-dc63-4216-aca1-4020619d906d + - 3b365547-9bd7-43f4-8142-336cc5f15cc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -560,13 +560,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -577,15 +577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:03 GMT + - Wed, 31 Dec 2025 14:38:32 GMT Pragma: - no-cache RequestId: - - 5a73b5eb-a66a-4d12-87a4-ea1d2767a47c + - 9e7c261c-000b-41ff-a87a-dc1670615bb3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -611,13 +611,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True response: body: - string: '{"value": [{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": - "randomFolder", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": + "randomFolder", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -630,11 +630,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:03 GMT + - Wed, 31 Dec 2025 14:38:32 GMT Pragma: - no-cache RequestId: - - 0cb5c680-7304-4e8a-8a2c-215d47207d66 + - 6a135788-31ee-4099-8a37-ab3bd76c95aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -660,13 +660,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b response: body: - string: '{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": "randomFolder", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "randomFolder", + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -675,15 +675,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:03 GMT + - Wed, 31 Dec 2025 14:38:33 GMT Pragma: - no-cache RequestId: - - 2625c6ba-50ef-4c6e-8457-f1ef6a3608e1 + - 827a1e8d-eb0f-4001-a88b-5db6bf9d6a5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -711,13 +711,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b response: body: - string: '{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": "fabcli000001", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "fabcli000001", + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -726,15 +726,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:04 GMT + - Wed, 31 Dec 2025 14:38:33 GMT Pragma: - no-cache RequestId: - - b597c814-8ed6-4838-aa35-0d26cc853efc + - 1caff488-217d-43f4-ad0b-59f984d7f742 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -760,13 +760,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -777,15 +777,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:03 GMT + - Wed, 31 Dec 2025 14:38:33 GMT Pragma: - no-cache RequestId: - - fd1ec559-a205-4abc-b6c8-d5fdc1d7dda3 + - 89032635-8362-41bd-9e3d-eabb39f85ad9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -811,13 +811,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True response: body: - string: '{"value": [{"id": "b41a5709-a085-471e-9f95-b1333e0cd583", "displayName": - "fabcli000001", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": + "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -826,15 +826,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:04 GMT + - Wed, 31 Dec 2025 14:38:34 GMT Pragma: - no-cache RequestId: - - e26c41db-9ed0-4fb5-b7f7-7c792c134765 + - d135fc8d-d3e3-4c32-9806-ea020b9faa7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -862,9 +862,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/folders/b41a5709-a085-471e-9f95-b1333e0cd583 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b response: body: string: '' @@ -880,11 +880,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:13:05 GMT + - Wed, 31 Dec 2025 14:38:34 GMT Pragma: - no-cache RequestId: - - 6b77d0fd-3988-4b16-bd5b-d0a0eb3be1d5 + - b1c35b0f-5e5d-474b-84a7-9237704847db 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 b1203ae4..ae5a6e40 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.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '1200' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:44 GMT + - Wed, 31 Dec 2025 14:36:25 GMT Pragma: - no-cache RequestId: - - 09eea390-1224-4063-afd3-0f09f64efbd3 + - 5d29b45b-7436-479c-9f89-ad1de9c6993d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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: @@ -59,13 +59,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:50 GMT + - Wed, 31 Dec 2025 14:36:27 GMT Pragma: - no-cache RequestId: - - 6c6865b4-9ff1-4ce8-9c9f-dbd456a7594d + - 4c9cdf5c-0c19-420d-872a-140c0a20981b 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,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -120,11 +120,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '479' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:51 GMT + - Wed, 31 Dec 2025 14:36:29 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: - - '3706' + - '2758' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:51 GMT + - Wed, 31 Dec 2025 14:36:30 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "e81742f9-e23d-44fa-a4a3-20775057aca9", + 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -217,17 +217,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '287' + - '291' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:01 GMT + - Wed, 31 Dec 2025 14:36:40 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/e81742f9-e23d-44fa-a4a3-20775057aca9 + - https://api.fabric.microsoft.com/v1/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 Pragma: - no-cache RequestId: - - 0df492d1-400c-4a44-aded-cb01b91c5fa8 + - c13a0ac8-73b5-4577-9ff1-28c8017b72ff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -235,7 +235,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: @@ -253,7 +253,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "e81742f9-e23d-44fa-a4a3-20775057aca9", + 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '298' + - '1240' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:02 GMT + - Wed, 31 Dec 2025 14:36:41 GMT Pragma: - no-cache RequestId: - - ec0f35f5-8cc5-410a-888d-916cb62f1d06 + - af422172-4b59-4ee2-8517-d4063121bc04 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -288,7 +288,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: @@ -306,13 +306,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -322,15 +322,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:06 GMT + - Wed, 31 Dec 2025 14:36:46 GMT Pragma: - no-cache RequestId: - - ad492095-34d1-4d51-96eb-3ee19b828c42 + - c7453d00-7a5d-42fb-aeab-a202d02102d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -338,7 +338,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: @@ -356,7 +356,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -367,11 +367,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '479' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:07 GMT + - Wed, 31 Dec 2025 14:36:45 GMT Expires: - '-1' Pragma: @@ -397,7 +397,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: - - '3706' + - '2758' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:07 GMT + - Wed, 31 Dec 2025 14:36:46 GMT Expires: - '-1' Pragma: @@ -445,7 +445,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "b9c76343-d135-4187-8692-51cc83d9d85b", + 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -464,17 +464,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:18 GMT + - Wed, 31 Dec 2025 14:36:58 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/b9c76343-d135-4187-8692-51cc83d9d85b + - https://api.fabric.microsoft.com/v1/gateways/d664a08f-3360-431e-bf81-b9f7e2c7e461 Pragma: - no-cache RequestId: - - 12a03cea-0529-4d70-a9f5-850e5b97fc0d + - e9293523-25b1-46f1-8a08-7ade0adf1d32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -482,7 +482,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: @@ -500,7 +500,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "e81742f9-e23d-44fa-a4a3-20775057aca9", + 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", "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": "b9c76343-d135-4187-8692-51cc83d9d85b", + 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -524,15 +524,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '347' + - '1284' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:19 GMT + - Wed, 31 Dec 2025 14:36:59 GMT Pragma: - no-cache RequestId: - - 6ea87069-273b-4658-9983-8ce97c482558 + - d6af5aa0-f9a3-4488-9243-0992234e6372 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -540,7 +540,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: @@ -558,16 +558,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/gateways/e81742f9-e23d-44fa-a4a3-20775057aca9 + uri: https://api.fabric.microsoft.com/v1/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 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": "e81742f9-e23d-44fa-a4a3-20775057aca9", + 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -577,15 +577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '287' + - '291' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:20 GMT + - Wed, 31 Dec 2025 14:36:59 GMT Pragma: - no-cache RequestId: - - 244eb485-08e0-4ac0-a418-a8f5d6854e3d + - 2e13cc51-f329-4648-9dff-3e76416ae301 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,15 +593,14 @@ 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": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", - "inactivityMinutesBeforeSleep": 30, "numberOfMemberGateways": 1, "type": "VirtualNetwork"}' + body: '{"displayName": "fabcli000002", "type": "VirtualNetwork"}' headers: Accept: - '*/*' @@ -610,16 +609,16 @@ interactions: Connection: - keep-alive Content-Length: - - '202' + - '71' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/e81742f9-e23d-44fa-a4a3-20775057aca9 + uri: https://api.fabric.microsoft.com/v1/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 response: body: - string: '{"requestId": "7ca2dc50-909c-4d77-bf68-d6e55c4fa5be", "errorCode": + string: '{"requestId": "924a5a82-32ec-4e4e-8223-3790356c9a2d", "errorCode": "DuplicateGatewayName", "message": "The gateway DisplayName input is already being used by another gateway"}' headers: @@ -630,11 +629,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:26 GMT + - Wed, 31 Dec 2025 14:37:01 GMT Pragma: - no-cache RequestId: - - 7ca2dc50-909c-4d77-bf68-d6e55c4fa5be + - 924a5a82-32ec-4e4e-8223-3790356c9a2d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -644,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' x-ms-public-api-error-code: @@ -664,7 +663,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -673,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": "e81742f9-e23d-44fa-a4a3-20775057aca9", + 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", "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": "b9c76343-d135-4187-8692-51cc83d9d85b", + 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -688,15 +687,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '347' + - '1284' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:27 GMT + - Wed, 31 Dec 2025 14:37:01 GMT Pragma: - no-cache RequestId: - - 135c97da-d2ec-4197-986d-09e0c6bc9dcf + - 6eec86cb-e869-4abe-bec4-a5b6762dc278 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -704,7 +703,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: @@ -724,9 +723,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/gateways/e81742f9-e23d-44fa-a4a3-20775057aca9 + uri: https://api.fabric.microsoft.com/v1/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 response: body: string: '' @@ -742,11 +741,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:23:28 GMT + - Wed, 31 Dec 2025 14:37:11 GMT Pragma: - no-cache RequestId: - - aedb56e9-4250-4feb-a815-a368ea8f84a9 + - 7b4cd276-6f0b-472c-ba7e-4e53343f3853 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -754,7 +753,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: @@ -772,7 +771,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -781,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": "b9c76343-d135-4187-8692-51cc83d9d85b", + 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -791,15 +790,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '299' + - '1244' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:23:28 GMT + - Wed, 31 Dec 2025 14:37:12 GMT Pragma: - no-cache RequestId: - - 16a19729-7aad-4fe2-97c9-219124ca8c7f + - 74b0938f-f286-44ed-8bf5-c79dcb7617ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -807,7 +806,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: @@ -827,9 +826,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/gateways/b9c76343-d135-4187-8692-51cc83d9d85b + uri: https://api.fabric.microsoft.com/v1/gateways/d664a08f-3360-431e-bf81-b9f7e2c7e461 response: body: string: '' @@ -845,11 +844,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:23:30 GMT + - Wed, 31 Dec 2025 14:37:14 GMT Pragma: - no-cache RequestId: - - 82241d1c-1e3f-4d23-8a16-6305462beb6e + - df61327a-bb78-4e1b-a0ad-b18ff8611e77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -857,7 +856,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/test_set_gateway_virtualNetwork_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success.yaml index 5450bcd6..fc92ebcd 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '1200' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:59 GMT + - Wed, 31 Dec 2025 14:35:56 GMT Pragma: - no-cache RequestId: - - 4579aaec-d7b7-412e-9e83-252c91c71438 + - 0afdfddc-a334-47d8-bea5-6b1b09e3bd77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,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: @@ -59,13 +59,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:05 GMT + - Wed, 31 Dec 2025 14:36:00 GMT Pragma: - no-cache RequestId: - - d2017852-5cb8-453b-a24e-43ffaa6c7a1c + - 85165370-11bd-4752-80b6-b5303ec0681f 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,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -120,11 +120,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '479' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:06 GMT + - Wed, 31 Dec 2025 14:36:01 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: - - '3706' + - '2758' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:06 GMT + - Wed, 31 Dec 2025 14:36:01 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -217,17 +217,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:21 GMT + - Wed, 31 Dec 2025 14:36:16 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + - https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 Pragma: - no-cache RequestId: - - 6d472cb1-0e76-4403-b3db-fcdd1aab43bc + - a4125c11-dcf4-4d07-9583-f0f0172e1e0a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -235,7 +235,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: @@ -253,7 +253,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '298' + - '1242' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:22 GMT + - Wed, 31 Dec 2025 14:36:16 GMT Pragma: - no-cache RequestId: - - f4ac6074-af8a-49bc-9c0c-b88090219da8 + - fded8505-ca83-490b-b454-db2d8f801e6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -288,7 +288,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: @@ -306,16 +306,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + uri: https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -325,15 +325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:23 GMT + - Wed, 31 Dec 2025 14:36:16 GMT Pragma: - no-cache RequestId: - - 7ecbea92-8330-496a-a214-9f817b9bfad3 + - 62b88191-e76b-4d57-b2b1-777257c3ee62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,15 +341,14 @@ 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": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", - "inactivityMinutesBeforeSleep": 30, "numberOfMemberGateways": 1, "type": "VirtualNetwork"}' + body: '{"displayName": "fabcli000002", "type": "VirtualNetwork"}' headers: Accept: - '*/*' @@ -358,20 +357,20 @@ interactions: Connection: - keep-alive Content-Length: - - '202' + - '71' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + uri: https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -381,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '291' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:29 GMT + - Wed, 31 Dec 2025 14:36:19 GMT Pragma: - no-cache RequestId: - - dfd3f15b-7933-46ed-9e2d-7f757b5813bf + - 4425bd39-36d7-4931-968b-31e61d516e9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -397,7 +396,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: @@ -415,7 +414,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -424,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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -434,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '298' + - '1244' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:31 GMT + - Wed, 31 Dec 2025 14:36:19 GMT Pragma: - no-cache RequestId: - - 3230a99a-3bd1-4cf4-b8c3-4a18319ed314 + - db7b239e-f4d2-442b-af5e-82ab7eb8cd14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -450,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: @@ -468,16 +467,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + uri: https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -487,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '291' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:32 GMT + - Wed, 31 Dec 2025 14:36:19 GMT Pragma: - no-cache RequestId: - - 9a526c9d-4447-4d78-abfb-4a027e435482 + - d2275c45-2e7d-4c43-ad92-9959c32579bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -503,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: @@ -521,7 +520,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -530,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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -540,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '298' + - '1244' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:33 GMT + - Wed, 31 Dec 2025 14:36:21 GMT Pragma: - no-cache RequestId: - - 6670e54f-7ec2-4adb-866a-db9c6d2c8606 + - 86ea7372-124e-4550-b45d-d3ad4b72f66d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,7 +555,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: @@ -574,16 +573,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + uri: https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -593,15 +592,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '291' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:34 GMT + - Wed, 31 Dec 2025 14:36:21 GMT Pragma: - no-cache RequestId: - - 736fae55-71cd-405a-9810-e8187eee9c82 + - 0543378c-f709-4dfe-8a98-270682d110f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -609,15 +608,14 @@ 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", "capacityId": "00000000-0000-0000-0000-000000000004", - "inactivityMinutesBeforeSleep": 30, "numberOfMemberGateways": 1, "type": "VirtualNetwork"}' + body: '{"displayName": "fabcli000001", "type": "VirtualNetwork"}' headers: Accept: - '*/*' @@ -626,20 +624,20 @@ interactions: Connection: - keep-alive Content-Length: - - '202' + - '71' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + uri: https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -649,15 +647,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '288' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:43 GMT + - Wed, 31 Dec 2025 14:36:22 GMT Pragma: - no-cache RequestId: - - 7203cfa4-6e97-4f07-8f3f-ae782e588e4f + - 2dbbc33d-df46-4edf-8f79-53057f167f76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -665,7 +663,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: @@ -683,7 +681,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET uri: https://api.fabric.microsoft.com/v1/gateways response: @@ -692,7 +690,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": "d8da07f0-8dd8-49d1-9b09-38ac4b6dd167", + 30, "numberOfMemberGateways": 1, "id": "69bde953-0bb0-4a84-8fd2-16aefce963f5", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -702,15 +700,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '298' + - '1242' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:22:44 GMT + - Wed, 31 Dec 2025 14:36:23 GMT Pragma: - no-cache RequestId: - - be51aeb6-3f29-472c-8af0-f099abeb69f9 + - 20554339-004e-43d4-90c5-141b364380e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,7 +716,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,9 +736,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/gateways/d8da07f0-8dd8-49d1-9b09-38ac4b6dd167 + uri: https://api.fabric.microsoft.com/v1/gateways/69bde953-0bb0-4a84-8fd2-16aefce963f5 response: body: string: '' @@ -756,11 +754,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:22:44 GMT + - Wed, 31 Dec 2025 14:36:24 GMT Pragma: - no-cache RequestId: - - d933ba52-ef63-41fe-b2cf-181383805265 + - 1250669e-0f84-47b1-aa4c-f17febe80e7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,7 +766,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/test_set_item_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml index e404f33d..340c1498 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:12 GMT + - Wed, 31 Dec 2025 14:26:53 GMT Pragma: - no-cache RequestId: - - b42cef7d-c038-4965-b5a0-bef913080b4b + - ac6760b1-71de-4190-a85b-df368f222e1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:11 GMT + - Wed, 31 Dec 2025 14:26:53 GMT Pragma: - no-cache RequestId: - - 0ac9a86a-a5a6-498e-a5f5-545346318bd0 + - 63540250-44dd-49de-a3a2-e069cce7a117 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:12 GMT + - Wed, 31 Dec 2025 14:26:54 GMT Pragma: - no-cache RequestId: - - 0fc2915e-4512-45ed-9190-01648aa2246a + - a31f9680-8431-4090-983f-846b5c31c076 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,14 +161,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "ceaef021-b90e-46b1-8643-3e49b546f243", "type": "Lakehouse", + string: '{"id": "1ce6f883-f705-4d55-990b-e2d3d9a03093", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:17 GMT + - Wed, 31 Dec 2025 14:26:59 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0f40b3d7-f9cb-4e45-9d95-6f94acfc2eef + - e9a1e87a-9cd1-49ba-bc4d-9a4590ce025d 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-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:17 GMT + - Wed, 31 Dec 2025 14:26:59 GMT Pragma: - no-cache RequestId: - - 6eae9239-1264-402a-9bc0-5c62cfe27dbd + - 10ac5ada-8173-4e2b-b975-75b796045d89 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,14 +264,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ceaef021-b90e-46b1-8643-3e49b546f243", "type": "Lakehouse", + string: '{"value": [{"id": "1ce6f883-f705-4d55-990b-e2d3d9a03093", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +280,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '179' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:17 GMT + - Wed, 31 Dec 2025 14:26:59 GMT Pragma: - no-cache RequestId: - - d1ae2d30-d6c8-4b41-b3b3-1ea151c6eb89 + - 9b4ed87b-84ee-4ba2-b441-c54bbb7676b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,13 +314,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -331,15 +331,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:18 GMT + - Wed, 31 Dec 2025 14:27:00 GMT Pragma: - no-cache RequestId: - - 9a4579a5-6b6d-4c1d-84e8-1c4e6a5c408a + - f22d3a49-3d79-4f0f-93b6-acca60dd3c78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,14 +365,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ceaef021-b90e-46b1-8643-3e49b546f243", "type": "Lakehouse", + string: '{"value": [{"id": "1ce6f883-f705-4d55-990b-e2d3d9a03093", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -381,15 +381,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '179' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:18 GMT + - Wed, 31 Dec 2025 14:27:00 GMT Pragma: - no-cache RequestId: - - e5b1f2b3-abad-4340-9d2e-ecc0e57d8a05 + - af375897-83fa-4aa3-b565-cc4dee398dea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,9 +417,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/ceaef021-b90e-46b1-8643-3e49b546f243 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/1ce6f883-f705-4d55-990b-e2d3d9a03093 response: body: string: '' @@ -435,11 +435,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:06:19 GMT + - Wed, 31 Dec 2025 14:27:01 GMT Pragma: - no-cache RequestId: - - d5145ade-b7f0-407b-bb00-239fc02d15b5 + - 0761ffc4-aeac-4865-96a1-0b95fa396491 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 5d83703d..d3716453 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:20 GMT + - Wed, 31 Dec 2025 14:27:02 GMT Pragma: - no-cache RequestId: - - 03c5bc21-8865-4673-947b-ef350e581621 + - c358f5d7-92d3-4ec3-aa49-a9e95d8bb9dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:20 GMT + - Wed, 31 Dec 2025 14:27:02 GMT Pragma: - no-cache RequestId: - - 3315da2e-81a7-415e-a2e7-ee34dab82e6d + - 41175296-40c3-46f1-8ca0-d4d0c029f732 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:20 GMT + - Wed, 31 Dec 2025 14:27:02 GMT Pragma: - no-cache RequestId: - - 8554f52f-e76c-4f75-877b-b3a541a6a6dd + - e026b2e3-e361-4dea-b861-a812324f94d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,9 +163,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks response: body: string: 'null' @@ -181,15 +181,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:21 GMT + - Wed, 31 Dec 2025 14:27:03 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f11e578f-1f0b-4cc2-bb3d-3fd67be2c2e4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fd99aee-360a-479b-b878-864a296e78d6 Pragma: - no-cache RequestId: - - 2776cc5a-c34f-42d7-a38e-f01ac9ce3c8d + - 42587114-a658-48b9-acbb-27d37250f94f Retry-After: - '20' Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f11e578f-1f0b-4cc2-bb3d-3fd67be2c2e4 + - 9fd99aee-360a-479b-b878-864a296e78d6 status: code: 202 message: Accepted @@ -219,13 +219,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f11e578f-1f0b-4cc2-bb3d-3fd67be2c2e4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fd99aee-360a-479b-b878-864a296e78d6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:06:21.7394615", - "lastUpdatedTimeUtc": "2025-11-26T16:06:22.9894624", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:27:03.8695132", + "lastUpdatedTimeUtc": "2025-12-31T14:27:05.1664119", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -235,17 +235,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:41 GMT + - Wed, 31 Dec 2025 14:27:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f11e578f-1f0b-4cc2-bb3d-3fd67be2c2e4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fd99aee-360a-479b-b878-864a296e78d6/result Pragma: - no-cache RequestId: - - 8d5d5242-b429-4f83-b003-37426bcdf4ea + - a8925fdc-aa1c-4bf6-a226-1471c7245da8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f11e578f-1f0b-4cc2-bb3d-3fd67be2c2e4 + - 9fd99aee-360a-479b-b878-864a296e78d6 status: code: 200 message: OK @@ -269,14 +269,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f11e578f-1f0b-4cc2-bb3d-3fd67be2c2e4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fd99aee-360a-479b-b878-864a296e78d6/result response: body: - string: '{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -287,11 +287,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:06:42 GMT + - Wed, 31 Dec 2025 14:27:25 GMT Pragma: - no-cache RequestId: - - 52dcd592-1493-47be-95f1-98dcac813ac5 + - d110b158-7f29-488c-be16-faaa22bc32a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -315,13 +315,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -332,15 +332,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:43 GMT + - Wed, 31 Dec 2025 14:27:25 GMT Pragma: - no-cache RequestId: - - f90eaf04-bc94-4718-83fe-fae7c2d486b1 + - d7ced584-8350-46a7-aab7-38996aa64bc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +366,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"value": [{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -386,11 +386,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:43 GMT + - Wed, 31 Dec 2025 14:27:25 GMT Pragma: - no-cache RequestId: - - 7cf02d76-cbe4-4880-b834-cdf897cdc876 + - f959c782-b93f-41ff-b691-cb655ee83448 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -416,14 +416,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/5be72aed-bb65-4038-88f8-81093cb638f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/8baff38e-8abe-4377-a11e-0369310a39db response: body: - string: '{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -436,13 +436,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:44 GMT + - Wed, 31 Dec 2025 14:27:27 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6fc1ef3e-f927-48f9-ba07-59b5792990d2 + - 616ce897-fe99-4ce5-a497-4dec6c677bf6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -470,14 +470,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/5be72aed-bb65-4038-88f8-81093cb638f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/8baff38e-8abe-4377-a11e-0369310a39db response: body: - string: '{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -486,17 +486,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:44 GMT + - Wed, 31 Dec 2025 14:27:27 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e963a62a-0b44-471d-a0d6-9284a7d6378c + - 91246783-5ef1-460f-a87e-fd0c02aac3a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -522,13 +522,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -539,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:44 GMT + - Wed, 31 Dec 2025 14:27:28 GMT Pragma: - no-cache RequestId: - - bd5961e2-49ee-4522-b0b2-7ca8aa75f5b8 + - 7bf5ff95-466a-4ead-9fe6-cbbb034ec4b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -573,14 +573,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"value": [{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -589,15 +589,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:45 GMT + - Wed, 31 Dec 2025 14:27:28 GMT Pragma: - no-cache RequestId: - - b4bf0c59-6e20-4f61-8b20-a23d1a5c5dd9 + - 8963881f-ee7b-463d-9ac4-beebc7a8d70d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -623,14 +623,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/5be72aed-bb65-4038-88f8-81093cb638f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/8baff38e-8abe-4377-a11e-0369310a39db response: body: - string: '{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -639,17 +639,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:45 GMT + - Wed, 31 Dec 2025 14:27:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a68244f5-d44b-437c-8139-898880f0cdc3 + - 077b7b04-227e-470b-b635-e743af014311 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/5be72aed-bb65-4038-88f8-81093cb638f5/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/8baff38e-8abe-4377-a11e-0369310a39db/connections response: body: string: '{"value": []}' @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:45 GMT + - Wed, 31 Dec 2025 14:27:29 GMT Pragma: - no-cache RequestId: - - 17ac187a-6e5e-408f-82a0-71d34a1dff97 + - 502e91e0-9a61-4b33-b2f0-e07cba882b84 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.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/5be72aed-bb65-4038-88f8-81093cb638f5/jobs/RunNotebook/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/8baff38e-8abe-4377-a11e-0369310a39db/jobs/RunNotebook/schedules response: body: string: '{"value": []}' @@ -741,11 +741,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:46 GMT + - Wed, 31 Dec 2025 14:27:30 GMT Pragma: - no-cache RequestId: - - 8fb9e61d-65d8-4e18-9987-207f04317637 + - 0f2ae087-59de-4337-b621-3469a1f09e82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -771,13 +771,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -788,15 +788,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:47 GMT + - Wed, 31 Dec 2025 14:27:29 GMT Pragma: - no-cache RequestId: - - 5a08453e-824f-44c1-96ca-08853c0b97b8 + - f41bd331-81ab-47e1-9fd1-925aa682698f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -822,14 +822,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "5be72aed-bb65-4038-88f8-81093cb638f5", "type": "Notebook", + string: '{"value": [{"id": "8baff38e-8abe-4377-a11e-0369310a39db", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -838,15 +838,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:47 GMT + - Wed, 31 Dec 2025 14:27:30 GMT Pragma: - no-cache RequestId: - - 0f9d8040-5b29-48d2-869b-b71129428856 + - 44843f7d-7e4f-4bda-9108-61b3e4fa2f9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -874,9 +874,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/5be72aed-bb65-4038-88f8-81093cb638f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/8baff38e-8abe-4377-a11e-0369310a39db response: body: string: '' @@ -892,11 +892,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:06:47 GMT + - Wed, 31 Dec 2025 14:27:31 GMT Pragma: - no-cache RequestId: - - 61201548-b2ff-482a-af54-4c4642b9df14 + - d55d65e4-b273-4eec-a467-30a113542cb1 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 c3c29d51..9588f98e 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:48 GMT + - Wed, 31 Dec 2025 14:27:32 GMT Pragma: - no-cache RequestId: - - 1d34ecc6-eed8-49c3-96f9-13df8cecb334 + - 34308593-55f3-4317-abee-46434e337cb3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:48 GMT + - Wed, 31 Dec 2025 14:27:32 GMT Pragma: - no-cache RequestId: - - 869a2c10-9959-4670-92e2-d000f367ce25 + - 5634223b-4b91-43c1-8ae6-d1d70bd74916 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:49 GMT + - Wed, 31 Dec 2025 14:27:32 GMT Pragma: - no-cache RequestId: - - 53d7ae14-1935-4925-a1ec-92ae216225ce + - cd82f3ad-6fd6-4b56-84da-e1138df4cd6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,9 +163,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks response: body: string: 'null' @@ -181,15 +181,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:06:50 GMT + - Wed, 31 Dec 2025 14:27:33 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48430f93-da45-4b65-a765-81576c094d48 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ff7e413-c206-40a2-afbf-5953a04bb5f4 Pragma: - no-cache RequestId: - - df5e1aab-2ba9-4520-b673-2e051014ec1c + - 6f33a5ca-a607-412f-912c-dd28c7b0f73c Retry-After: - '20' Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 48430f93-da45-4b65-a765-81576c094d48 + - 7ff7e413-c206-40a2-afbf-5953a04bb5f4 status: code: 202 message: Accepted @@ -219,13 +219,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48430f93-da45-4b65-a765-81576c094d48 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ff7e413-c206-40a2-afbf-5953a04bb5f4 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:06:50.3038933", - "lastUpdatedTimeUtc": "2025-11-26T16:06:51.5226355", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:27:33.5173733", + "lastUpdatedTimeUtc": "2025-12-31T14:27:34.7361189", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -235,17 +235,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:10 GMT + - Wed, 31 Dec 2025 14:27:53 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48430f93-da45-4b65-a765-81576c094d48/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ff7e413-c206-40a2-afbf-5953a04bb5f4/result Pragma: - no-cache RequestId: - - 4d70638f-95e8-4713-8265-34505274e832 + - 1890d0f4-503a-4968-85fd-71b7271de445 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 48430f93-da45-4b65-a765-81576c094d48 + - 7ff7e413-c206-40a2-afbf-5953a04bb5f4 status: code: 200 message: OK @@ -269,14 +269,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48430f93-da45-4b65-a765-81576c094d48/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ff7e413-c206-40a2-afbf-5953a04bb5f4/result response: body: - string: '{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -287,11 +287,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:07:11 GMT + - Wed, 31 Dec 2025 14:27:54 GMT Pragma: - no-cache RequestId: - - 92b35617-1967-4bd5-a6e4-cc8eb0398a07 + - 84953f18-b609-417d-bd7a-63a5a6e1de44 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -315,13 +315,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -332,15 +332,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:11 GMT + - Wed, 31 Dec 2025 14:27:55 GMT Pragma: - no-cache RequestId: - - c3dac8bf-9465-4048-aa1e-d7cc67a396bf + - e92692b0-a302-42f6-9b3a-6c9a2b3ae287 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +366,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"value": [{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -382,15 +382,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '178' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:12 GMT + - Wed, 31 Dec 2025 14:27:55 GMT Pragma: - no-cache RequestId: - - f79e9104-86b7-4873-931f-8e0f42aa606d + - 9bf03d32-4f47-415e-9ae8-48e5893f0d3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -416,14 +416,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/418fc4df-ca58-485e-b546-4c9f775d4f08 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/fef045d4-51e0-4f29-9fc0-06b7a5899955 response: body: - string: '{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -432,17 +432,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:13 GMT + - Wed, 31 Dec 2025 14:27:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 668eab39-1675-40ba-98f6-2b6b15c53546 + - f6f31bbe-a0bb-4341-af68-f9e24a389259 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -470,14 +470,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/418fc4df-ca58-485e-b546-4c9f775d4f08 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/fef045d4-51e0-4f29-9fc0-06b7a5899955 response: body: - string: '{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -490,13 +490,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:13 GMT + - Wed, 31 Dec 2025 14:27:56 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1e965627-a845-419a-a79a-925de5e92066 + - dcd3c51f-8a8a-47b5-90d9-e70a137cf3f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -522,13 +522,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -539,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:13 GMT + - Wed, 31 Dec 2025 14:27:56 GMT Pragma: - no-cache RequestId: - - bff86f9d-1fc7-481e-a950-8b072f0946e7 + - bf4cf4e0-11f4-48eb-a3fd-45a329630dd5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -573,14 +573,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"value": [{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:14 GMT + - Wed, 31 Dec 2025 14:27:56 GMT Pragma: - no-cache RequestId: - - e8e73dd0-bda2-433a-a48a-4b8aaf2ee50f + - 805babde-3832-4c55-83b9-9093464d7720 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -623,14 +623,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"value": [{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -643,11 +643,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:14 GMT + - Wed, 31 Dec 2025 14:27:57 GMT Pragma: - no-cache RequestId: - - 62ee03ce-f05f-4ef4-bbc6-e149bdd62965 + - 2ef5cdd1-9c68-418b-9320-47657975ec8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -673,13 +673,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -690,15 +690,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:14 GMT + - Wed, 31 Dec 2025 14:27:58 GMT Pragma: - no-cache RequestId: - - 02835ca8-9b07-40e8-844f-22a340f2fcd3 + - 989503f4-655b-4d5f-8f73-b163111dbb77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -724,14 +724,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"value": [{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -744,11 +744,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:14 GMT + - Wed, 31 Dec 2025 14:27:58 GMT Pragma: - no-cache RequestId: - - 3ee7c7f8-7539-4d62-a43d-ec52405deb6c + - e5ab58d2-183d-46a5-a9e2-759ad94880b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -774,14 +774,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/418fc4df-ca58-485e-b546-4c9f775d4f08 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/fef045d4-51e0-4f29-9fc0-06b7a5899955 response: body: - string: '{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -794,13 +794,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:15 GMT + - Wed, 31 Dec 2025 14:27:58 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3bd49c47-dff8-4c7f-8d60-7a80f30de825 + - 2999917d-ca05-4aef-a566-86c8d84ecdad 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.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/418fc4df-ca58-485e-b546-4c9f775d4f08/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/fef045d4-51e0-4f29-9fc0-06b7a5899955/connections response: body: string: '{"value": []}' @@ -844,11 +844,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:16 GMT + - Wed, 31 Dec 2025 14:27:59 GMT Pragma: - no-cache RequestId: - - 49e62b21-6348-4eae-9ba6-c1a5f06b37df + - 9c909a8e-547c-4726-9a19-af0243645cd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -874,9 +874,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/418fc4df-ca58-485e-b546-4c9f775d4f08/jobs/RunNotebook/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/fef045d4-51e0-4f29-9fc0-06b7a5899955/jobs/RunNotebook/schedules response: body: string: '{"value": []}' @@ -892,11 +892,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:16 GMT + - Wed, 31 Dec 2025 14:28:00 GMT Pragma: - no-cache RequestId: - - b748f594-8ead-497e-aefd-45c253b642ac + - 3cc13a75-a1f4-45dd-b7be-8af4e2dcc3aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,13 +922,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -939,15 +939,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:17 GMT + - Wed, 31 Dec 2025 14:28:00 GMT Pragma: - no-cache RequestId: - - 8cec1a19-d974-4200-93da-23ed9cb8eb7b + - f9a1929f-db19-4db2-8f29-295ec3489f90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -973,14 +973,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"value": [{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -993,11 +993,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:16 GMT + - Wed, 31 Dec 2025 14:28:00 GMT Pragma: - no-cache RequestId: - - 1ed828f8-82c3-406c-beb9-5e7c5eef66fd + - 776090aa-5541-46ee-9e59-799c70fe3b11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1023,14 +1023,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/418fc4df-ca58-485e-b546-4c9f775d4f08 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/fef045d4-51e0-4f29-9fc0-06b7a5899955 response: body: - string: '{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1043,13 +1043,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:17 GMT + - Wed, 31 Dec 2025 14:28:01 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 26aba272-5ebb-4129-ae12-f557e04f922d + - 4b3d2205-7617-49c6-931e-e8203817e3ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,14 +1077,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/notebooks/418fc4df-ca58-485e-b546-4c9f775d4f08 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/notebooks/fef045d4-51e0-4f29-9fc0-06b7a5899955 response: body: - string: '{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1093,17 +1093,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:17 GMT + - Wed, 31 Dec 2025 14:28:02 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5a55ae02-2c75-4b05-a611-d13e04c57cb1 + - d905cbc5-0b5e-4577-b69e-c0b5e6796c83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1129,13 +1129,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1146,15 +1146,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:18 GMT + - Wed, 31 Dec 2025 14:28:02 GMT Pragma: - no-cache RequestId: - - 8d80e27b-24c9-4764-ab5e-cc1a72e85a43 + - af0e65ac-460c-40e9-a0df-1bafc8100242 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1180,14 +1180,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "418fc4df-ca58-485e-b546-4c9f775d4f08", "type": "Notebook", + string: '{"value": [{"id": "fef045d4-51e0-4f29-9fc0-06b7a5899955", "type": "Notebook", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1196,15 +1196,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '178' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:18 GMT + - Wed, 31 Dec 2025 14:28:03 GMT Pragma: - no-cache RequestId: - - 60d440b9-25b5-4567-a898-78afc48e1ca8 + - 877611c4-bc41-4f3b-83ac-84a071c60f90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1232,9 +1232,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/418fc4df-ca58-485e-b546-4c9f775d4f08 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/fef045d4-51e0-4f29-9fc0-06b7a5899955 response: body: string: '' @@ -1250,11 +1250,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:07:19 GMT + - Wed, 31 Dec 2025 14:28:03 GMT Pragma: - no-cache RequestId: - - 3afdf13a-1b7c-4cda-a107-bfacba33f268 + - 7a68e16b-3950-44a1-b2dc-5fca322fe508 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 7c29796c..b71c26b9 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:20 GMT + - Wed, 31 Dec 2025 14:28:04 GMT Pragma: - no-cache RequestId: - - f2802995-7c07-4776-916b-c2989d343e8d + - 59a36a3e-7a18-48fc-99e2-2dd6cb311415 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:20 GMT + - Wed, 31 Dec 2025 14:28:04 GMT Pragma: - no-cache RequestId: - - 8c5b2f44-32e5-412d-91af-8d82ca982562 + - e05be104-38f8-47f2-a69c-fe85ef0b5492 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:20 GMT + - Wed, 31 Dec 2025 14:28:05 GMT Pragma: - no-cache RequestId: - - 0cb29cd8-4327-44ec-b183-adc0e77472ed + - b9782401-5ae3-4ba9-8f9b-d1a8acac42b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -169,9 +169,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/semanticModels response: body: string: 'null' @@ -187,13 +187,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:21 GMT + - Wed, 31 Dec 2025 14:28:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/76b2c8dc-1f9f-4911-9f05-9919d860dcc3 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7 Pragma: - no-cache RequestId: - - 0a6d0959-dfef-4fee-b65d-56425e74647b + - ae1ae0d9-b5a5-4403-b507-5f0f21e8c928 Retry-After: - '20' Strict-Transport-Security: @@ -207,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 76b2c8dc-1f9f-4911-9f05-9919d860dcc3 + - 7c495cc0-023b-4202-abb9-ee4b67fc05e7 status: code: 202 message: Accepted @@ -223,13 +223,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/76b2c8dc-1f9f-4911-9f05-9919d860dcc3 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:07:21.8057917", - "lastUpdatedTimeUtc": "2025-11-26T16:07:32.3850055", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:28:06.0691209", + "lastUpdatedTimeUtc": "2025-12-31T14:28:17.22745", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -239,17 +239,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:41 GMT + - Wed, 31 Dec 2025 14:28:26 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/76b2c8dc-1f9f-4911-9f05-9919d860dcc3/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7/result Pragma: - no-cache RequestId: - - c2392122-34f3-4733-9dbc-1a68e4e47fbb + - 8a8c8322-d2f2-46da-841b-63a361878e95 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -257,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 76b2c8dc-1f9f-4911-9f05-9919d860dcc3 + - 7c495cc0-023b-4202-abb9-ee4b67fc05e7 status: code: 200 message: OK @@ -273,13 +273,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/76b2c8dc-1f9f-4911-9f05-9919d860dcc3/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7/result response: body: - string: '{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -290,11 +290,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:07:42 GMT + - Wed, 31 Dec 2025 14:28:26 GMT Pragma: - no-cache RequestId: - - e52b02cb-1632-476d-95ed-036b8d4f61a9 + - aeb412bb-4939-487e-bb83-b89f8aa155ae Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -310,7 +310,7 @@ interactions: body: '{"description": "Created by fab", "displayName": "fabcli000001", "type": "Report", "folderId": null, "definition": {"parts": [{"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiQmxhbmsiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICJlNzcwMzIwZi1jODRjLTQ0YTEtODhiYi03MjA4ZmU5ZTZjNWUiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", + "payloadType": "InlineBase64"}, {"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICIzZTc1YTQxNS1iOTA3LTQyOTUtYjE2My1hNzQ2YjNhZjg4ZDEiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3JlcG9ydC8xLjIuMC9zY2hlbWEuanNvbiIsCiAgInRoZW1lQ29sbGVjdGlvbiI6IHsKICAgICJiYXNlVGhlbWUiOiB7CiAgICAgICJuYW1lIjogIkNZMjRTVTEwIiwKICAgICAgInJlcG9ydFZlcnNpb25BdEltcG9ydCI6ICI1LjYxIiwKICAgICAgInR5cGUiOiAiU2hhcmVkUmVzb3VyY2VzIgogICAgfQogIH0sCiAgImxheW91dE9wdGltaXphdGlvbiI6ICJOb25lIiwKICAib2JqZWN0cyI6IHsKICAgICJzZWN0aW9uIjogWwogICAgICB7CiAgICAgICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgICAidmVydGljYWxBbGlnbm1lbnQiOiB7CiAgICAgICAgICAgICJleHByIjogewogICAgICAgICAgICAgICJMaXRlcmFsIjogewogICAgICAgICAgICAgICAgIlZhbHVlIjogIidUb3AnIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfQogICAgICAgICAgfQogICAgICAgIH0KICAgICAgfQogICAgXQogIH0sCiAgInJlc291cmNlUGFja2FnZXMiOiBbCiAgICB7CiAgICAgICJuYW1lIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJ0eXBlIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAibmFtZSI6ICJDWTI0U1UxMCIsCiAgICAgICAgICAicGF0aCI6ICJCYXNlVGhlbWVzL0NZMjRTVTEwLmpzb24iLAogICAgICAgICAgInR5cGUiOiAiQmFzZVRoZW1lIgogICAgICAgIH0KICAgICAgXQogICAgfQogIF0sCiAgInNldHRpbmdzIjogewogICAgInVzZVN0eWxhYmxlVmlzdWFsQ29udGFpbmVySGVhZGVyIjogdHJ1ZSwKICAgICJkZWZhdWx0RHJpbGxGaWx0ZXJPdGhlclZpc3VhbHMiOiB0cnVlLAogICAgImFsbG93Q2hhbmdlRmlsdGVyVHlwZXMiOiB0cnVlLAogICAgInVzZUVuaGFuY2VkVG9vbHRpcHMiOiB0cnVlLAogICAgInVzZURlZmF1bHRBZ2dyZWdhdGVEaXNwbGF5TmFtZSI6IHRydWUKICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/reports + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/reports response: body: string: 'null' @@ -352,13 +352,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:07:44 GMT + - Wed, 31 Dec 2025 14:28:28 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0f1e20fe-ba1d-41c4-9e40-7c350dc5971d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9 Pragma: - no-cache RequestId: - - 8eec2fc0-4e96-4eef-a7f7-1153892c7c8c + - 7f565388-02a9-4f9c-961a-39fddac0c7bd Retry-After: - '20' Strict-Transport-Security: @@ -372,7 +372,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 0f1e20fe-ba1d-41c4-9e40-7c350dc5971d + - 84925a42-828f-474c-bc74-47f59d2c69e9 status: code: 202 message: Accepted @@ -388,13 +388,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0f1e20fe-ba1d-41c4-9e40-7c350dc5971d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:07:44.6351299", - "lastUpdatedTimeUtc": "2025-11-26T16:07:44.9476345", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:28:28.557812", + "lastUpdatedTimeUtc": "2025-12-31T14:28:28.9171838", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -404,17 +404,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:05 GMT + - Wed, 31 Dec 2025 14:28:48 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0f1e20fe-ba1d-41c4-9e40-7c350dc5971d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9/result Pragma: - no-cache RequestId: - - 55d8a6bf-944d-469d-b2db-4ee2017d255f + - d4238159-6e98-43be-9bce-a582a04658a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -422,7 +422,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 0f1e20fe-ba1d-41c4-9e40-7c350dc5971d + - 84925a42-828f-474c-bc74-47f59d2c69e9 status: code: 200 message: OK @@ -438,13 +438,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0f1e20fe-ba1d-41c4-9e40-7c350dc5971d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9/result response: body: - string: '{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -455,11 +455,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:08:05 GMT + - Wed, 31 Dec 2025 14:28:50 GMT Pragma: - no-cache RequestId: - - 3a060baa-cccb-4cd2-9198-40d50c36d71c + - fd2061c1-5274-479d-86fb-5290449e9af6 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -483,13 +483,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -500,15 +500,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:05 GMT + - Wed, 31 Dec 2025 14:28:50 GMT Pragma: - no-cache RequestId: - - 91ad1a76-d738-4c75-be11-80d01bbb9c7e + - 8efd2c13-8ddb-4cac-97a8-032840caa459 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -534,16 +534,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", + string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", + "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -556,11 +556,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:06 GMT + - Wed, 31 Dec 2025 14:28:51 GMT Pragma: - no-cache RequestId: - - 85f7d17a-9277-4db7-984a-70a410d79ff1 + - 65f3a2a8-0218-4023-b6fc-d1ec74a497ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -586,16 +586,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", + string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", + "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -608,11 +608,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:07 GMT + - Wed, 31 Dec 2025 14:28:51 GMT Pragma: - no-cache RequestId: - - fba36923-9be5-4aa2-b9fb-8a651fff5360 + - 059938fb-39c6-4bee-ae15-24520602fd3c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -649,9 +649,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/semanticModels response: body: string: 'null' @@ -667,13 +667,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:07 GMT + - Wed, 31 Dec 2025 14:28:52 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d62335a8-3220-4fda-8890-f5469689e227 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 Pragma: - no-cache RequestId: - - 2deb7dad-6c3f-43a1-bfb2-99030b9cbd12 + - 3bdc9008-248e-4398-9b0a-8c8cae910b44 Retry-After: - '20' Strict-Transport-Security: @@ -687,7 +687,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d62335a8-3220-4fda-8890-f5469689e227 + - 37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 status: code: 202 message: Accepted @@ -703,13 +703,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d62335a8-3220-4fda-8890-f5469689e227 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:08:08.0757138", - "lastUpdatedTimeUtc": "2025-11-26T16:08:19.8898984", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:28:52.7339491", + "lastUpdatedTimeUtc": "2025-12-31T14:29:04.0510431", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -719,17 +719,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:27 GMT + - Wed, 31 Dec 2025 14:29:12 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d62335a8-3220-4fda-8890-f5469689e227/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490/result Pragma: - no-cache RequestId: - - 44441825-1b40-4a91-9fc0-d1f5d643f9a7 + - 1f631e0b-32cd-4152-b546-aabb9144ef4a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -737,7 +737,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d62335a8-3220-4fda-8890-f5469689e227 + - 37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 status: code: 200 message: OK @@ -753,13 +753,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d62335a8-3220-4fda-8890-f5469689e227/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490/result response: body: - string: '{"id": "b62cec27-5da9-43b1-8862-5d2969d0b2bf", "type": "SemanticModel", - "displayName": "fabcli000002", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId @@ -770,11 +770,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:08:28 GMT + - Wed, 31 Dec 2025 14:29:14 GMT Pragma: - no-cache RequestId: - - 69cbadf4-6816-4d55-bac5-c878ab787195 + - db7027be-f74d-45f0-bce5-5a560247ab1b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -798,13 +798,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -815,15 +815,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:28 GMT + - Wed, 31 Dec 2025 14:29:14 GMT Pragma: - no-cache RequestId: - - e65a5746-0e92-4045-b19e-c81e1b4f283b + - dffaac48-cb99-4f15-b7c8-acc819496ffa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -849,18 +849,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", + string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", + "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "b62cec27-5da9-43b1-8862-5d2969d0b2bf", + "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -869,15 +869,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '265' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:29 GMT + - Wed, 31 Dec 2025 14:29:15 GMT Pragma: - no-cache RequestId: - - 0e18a6d2-5b46-4b4c-a1de-d905a9e6c853 + - 51443058-edf3-42c8-b7ca-802578d45cb5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -903,13 +903,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/semanticModels/b62cec27-5da9-43b1-8862-5d2969d0b2bf + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/semanticModels/b10e546f-82bb-4abc-a8db-be0e0e79d1ba response: body: - string: '{"id": "b62cec27-5da9-43b1-8862-5d2969d0b2bf", "type": "SemanticModel", - "displayName": "fabcli000002", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -922,13 +922,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:30 GMT + - Wed, 31 Dec 2025 14:29:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 11157a73-6d9f-48de-883e-4a459a3652ec + - 55b31866-a2b4-4b09-a8be-810252bd7ded Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -954,9 +954,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/b62cec27-5da9-43b1-8862-5d2969d0b2bf/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/b10e546f-82bb-4abc-a8db-be0e0e79d1ba/connections response: body: string: '{"value": []}' @@ -972,11 +972,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:31 GMT + - Wed, 31 Dec 2025 14:29:15 GMT Pragma: - no-cache RequestId: - - 9d246345-c4a9-4532-bc55-97f3065fcbf1 + - d0a4467b-7900-4628-b3d9-9a40c923b29b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1002,13 +1002,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1019,15 +1019,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:31 GMT + - Wed, 31 Dec 2025 14:29:17 GMT Pragma: - no-cache RequestId: - - 3f73def9-e2f2-45be-bfd5-09b0f7aafe84 + - 56ab112f-4ca2-4e25-a66c-7ac02d7e51f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1053,18 +1053,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", + string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", + "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "b62cec27-5da9-43b1-8862-5d2969d0b2bf", + "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1073,15 +1073,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '265' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:31 GMT + - Wed, 31 Dec 2025 14:29:17 GMT Pragma: - no-cache RequestId: - - 9d803b81-f63f-43c3-9105-0f253ef6cb5d + - 691769d1-2542-4b32-bbbc-cace4e226bb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1109,9 +1109,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/0f1831da-fadd-4c0d-8cad-daadb028b4c1/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/getDefinition response: body: string: 'null' @@ -1127,13 +1127,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:32 GMT + - Wed, 31 Dec 2025 14:29:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/16118967-d188-4e7b-a694-ad964d528aa7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2 Pragma: - no-cache RequestId: - - f091c67c-824e-421c-89ec-2539512cc782 + - a517484d-f128-4648-9295-e20501a5a809 Retry-After: - '20' Strict-Transport-Security: @@ -1147,7 +1147,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 16118967-d188-4e7b-a694-ad964d528aa7 + - c9626f47-e9fc-4590-8df8-84fd977177c2 status: code: 202 message: Accepted @@ -1163,13 +1163,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/16118967-d188-4e7b-a694-ad964d528aa7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:08:32.8453781", - "lastUpdatedTimeUtc": "2025-11-26T16:08:33.0641196", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:29:18.4443873", + "lastUpdatedTimeUtc": "2025-12-31T14:29:18.6482471", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1179,17 +1179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:53 GMT + - Wed, 31 Dec 2025 14:29:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/16118967-d188-4e7b-a694-ad964d528aa7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2/result Pragma: - no-cache RequestId: - - 33da2cb9-182a-4820-aa6f-50a1d70ba0ad + - 13100865-5cac-4d2e-b5b0-7a3b9bef3459 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1197,7 +1197,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 16118967-d188-4e7b-a694-ad964d528aa7 + - c9626f47-e9fc-4590-8df8-84fd977177c2 status: code: 200 message: OK @@ -1213,13 +1213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/16118967-d188-4e7b-a694-ad964d528aa7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2/result response: body: string: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9ZTc3MDMyMGYtYzg0Yy00NGExLTg4YmItNzIwOGZlOWU2YzVlIgogICAgfQogIH0KfQ==", + "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9M2U3NWE0MTUtYjkwNy00Mjk1LWIxNjMtYTc0NmIzYWY4OGQxIgogICAgfQogIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -1242,11 +1242,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:08:53 GMT + - Wed, 31 Dec 2025 14:29:39 GMT Pragma: - no-cache RequestId: - - 48c5743c-df1b-4020-893b-0daf6af01d98 + - c25d3e4d-9f78-417d-9906-e5523896fd44 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1260,7 +1260,7 @@ interactions: message: OK - request: body: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsICJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieUNvbm5lY3Rpb24iOiB7ImNvbm5lY3Rpb25TdHJpbmciOiAiRGF0YSBTb3VyY2U9cGJpYXp1cmU6Ly9hcGkucG93ZXJiaS5jb207SW5pdGlhbCBDYXRhbG9nPWZhYnJpY2NsaV9Xb3Jrc3BhY2VQZXJUZXN0Y2xhc3NfMDAwMDAxL2ZhYmNsaTAwMDAwMjtzZW1hbnRpY21vZGVsaWQ9YjYyY2VjMjctNWRhOS00M2IxLTg4NjItNWQyOTY5ZDBiMmJmIn19fQ==", + "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsICJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieUNvbm5lY3Rpb24iOiB7ImNvbm5lY3Rpb25TdHJpbmciOiAiRGF0YSBTb3VyY2U9cGJpYXp1cmU6Ly9hcGkucG93ZXJiaS5jb207SW5pdGlhbCBDYXRhbG9nPWZhYnJpY2NsaV9Xb3Jrc3BhY2VQZXJUZXN0Y2xhc3NfMDAwMDAxL2ZhYmNsaTAwMDAwMjtzZW1hbnRpY21vZGVsaWQ9YjEwZTU0NmYtODJiYi00YWJjLWE4ZGItYmUwZTBlNzlkMWJhIn19fQ==", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "eyJuYW1lIjogIkNZMjRTVTEwIiwgImRhdGFDb2xvcnMiOiBbIiMxMThERkYiLCAiIzEyMjM5RSIsICIjRTY2QzM3IiwgIiM2QjAwN0IiLCAiI0UwNDRBNyIsICIjNzQ0RUMyIiwgIiNEOUIzMDAiLCAiI0Q2NDU1MCIsICIjMTk3Mjc4IiwgIiMxQUFCNDAiLCAiIzE1QzZGNCIsICIjNDA5MkZGIiwgIiNGRkEwNTgiLCAiI0JFNURDOSIsICIjRjQ3MkQwIiwgIiNCNUExRkYiLCAiI0M0QTIwMCIsICIjRkY4MDgwIiwgIiMwMERCQkMiLCAiIzVCRDY2NyIsICIjMDA5MUQ1IiwgIiM0NjY4QzUiLCAiI0ZGNjMwMCIsICIjOTkwMDhBIiwgIiNFQzAwOEMiLCAiIzUzMzI4NSIsICIjOTk3MDBBIiwgIiNGRjQxNDEiLCAiIzFGOUE4NSIsICIjMjU4OTFDIiwgIiMwMDU3QTIiLCAiIzAwMjA1MCIsICIjQzk0RjBGIiwgIiM0NTBGNTQiLCAiI0I2MDA2NCIsICIjMzQxMjRGIiwgIiM2QTVBMjkiLCAiIzFBQUI0MCIsICIjQkExNDFBIiwgIiMwQzNEMzciLCAiIzBCNTExRiJdLCAiZm9yZWdyb3VuZCI6ICIjMjUyNDIzIiwgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLCAiZm9yZWdyb3VuZE5ldXRyYWxUZXJ0aWFyeSI6ICIjQjNCMEFEIiwgImJhY2tncm91bmQiOiAiI0ZGRkZGRiIsICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsICJiYWNrZ3JvdW5kTmV1dHJhbCI6ICIjQzhDNkM0IiwgInRhYmxlQWNjZW50IjogIiMxMThERkYiLCAiZ29vZCI6ICIjMUFBQjQwIiwgIm5ldXRyYWwiOiAiI0Q5QjMwMCIsICJiYWQiOiAiI0Q2NDU1NCIsICJtYXhpbXVtIjogIiMxMThERkYiLCAiY2VudGVyIjogIiNEOUIzMDAiLCAibWluaW11bSI6ICIjREVFRkZGIiwgIm51bGwiOiAiI0ZGN0Y0OCIsICJoeXBlcmxpbmsiOiAiIzAwNzhkNCIsICJ2aXNpdGVkSHlwZXJsaW5rIjogIiMwMDc4ZDQiLCAidGV4dENsYXNzZXMiOiB7ImNhbGxvdXQiOiB7ImZvbnRTaXplIjogNDUsICJmb250RmFjZSI6ICJESU4iLCAiY29sb3IiOiAiIzI1MjQyMyJ9LCAidGl0bGUiOiB7ImZvbnRTaXplIjogMTIsICJmb250RmFjZSI6ICJESU4iLCAiY29sb3IiOiAiIzI1MjQyMyJ9LCAiaGVhZGVyIjogeyJmb250U2l6ZSI6IDEyLCAiZm9udEZhY2UiOiAiU2Vnb2UgVUkgU2VtaWJvbGQiLCAiY29sb3IiOiAiIzI1MjQyMyJ9LCAibGFiZWwiOiB7ImZvbnRTaXplIjogMTAsICJmb250RmFjZSI6ICJTZWdvZSBVSSIsICJjb2xvciI6ICIjMjUyNDIzIn19LCAidmlzdWFsU3R5bGVzIjogeyIqIjogeyIqIjogeyIqIjogW3sid29yZFdyYXAiOiB0cnVlfV0sICJsaW5lIjogW3sidHJhbnNwYXJlbmN5IjogMH1dLCAib3V0bGluZSI6IFt7InRyYW5zcGFyZW5jeSI6IDB9XSwgInBsb3RBcmVhIjogW3sidHJhbnNwYXJlbmN5IjogMH1dLCAiY2F0ZWdvcnlBeGlzIjogW3sic2hvd0F4aXNUaXRsZSI6IHRydWUsICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIsICJjb25jYXRlbmF0ZUxhYmVscyI6IGZhbHNlfV0sICJ2YWx1ZUF4aXMiOiBbeyJzaG93QXhpc1RpdGxlIjogdHJ1ZSwgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIn1dLCAieTJBeGlzIjogW3sic2hvdyI6IHRydWV9XSwgInRpdGxlIjogW3sidGl0bGVXcmFwIjogdHJ1ZX1dLCAibGluZVN0eWxlcyI6IFt7InN0cm9rZVdpZHRoIjogM31dLCAid29yZFdyYXAiOiBbeyJzaG93IjogdHJ1ZX1dLCAiYmFja2dyb3VuZCI6IFt7InNob3ciOiB0cnVlLCAidHJhbnNwYXJlbmN5IjogMH1dLCAiYm9yZGVyIjogW3sid2lkdGgiOiAxfV0sICJvdXRzcGFjZVBhbmUiOiBbeyJiYWNrZ3JvdW5kQ29sb3IiOiB7InNvbGlkIjogeyJjb2xvciI6ICIjZmZmZmZmIn19LCAidHJhbnNwYXJlbmN5IjogMCwgImJvcmRlciI6IHRydWUsICJib3JkZXJDb2xvciI6IHsic29saWQiOiB7ImNvbG9yIjogIiNCM0IwQUQifX19XSwgImZpbHRlckNhcmQiOiBbeyIkaWQiOiAiQXBwbGllZCIsICJ0cmFuc3BhcmVuY3kiOiAwLCAiZm9yZWdyb3VuZENvbG9yIjogeyJzb2xpZCI6IHsiY29sb3IiOiAiIzI1MjQyMyJ9fSwgImJvcmRlciI6IHRydWV9LCB7IiRpZCI6ICJBdmFpbGFibGUiLCAidHJhbnNwYXJlbmN5IjogMCwgImZvcmVncm91bmRDb2xvciI6IHsic29saWQiOiB7ImNvbG9yIjogIiMyNTI0MjMifX0sICJib3JkZXIiOiB0cnVlfV19fSwgInNjYXR0ZXJDaGFydCI6IHsiKiI6IHsiYnViYmxlcyI6IFt7ImJ1YmJsZVNpemUiOiAtMTAsICJtYXJrZXJSYW5nZVR5cGUiOiAiYXV0byJ9XSwgImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAiZmlsbFBvaW50IjogW3sic2hvdyI6IHRydWV9XSwgImxlZ2VuZCI6IFt7InNob3dHcmFkaWVudExlZ2VuZCI6IHRydWV9XX19LCAibGluZUNoYXJ0IjogeyIqIjogeyJnZW5lcmFsIjogW3sicmVzcG9uc2l2ZSI6IHRydWV9XSwgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogW3siYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsICJncmlkTGluZVR5cGUiOiAiaW5uZXIifV0sICJmb3JlY2FzdCI6IFt7Im1hdGNoU2VyaWVzSW50ZXJwb2xhdGlvbiI6IHRydWV9XX19LCAibWFwIjogeyIqIjogeyJidWJibGVzIjogW3siYnViYmxlU2l6ZSI6IC0xMCwgIm1hcmtlclJhbmdlVHlwZSI6ICJhdXRvIn1dfX0sICJhenVyZU1hcCI6IHsiKiI6IHsiYnViYmxlTGF5ZXIiOiBbeyJidWJibGVSYWRpdXMiOiA4LCAibWluQnViYmxlUmFkaXVzIjogOCwgIm1heFJhZGl1cyI6IDQwfV0sICJiYXJDaGFydCI6IFt7ImJhckhlaWdodCI6IDMsICJ0aGlja25lc3MiOiAzfV19fSwgInBpZUNoYXJ0IjogeyIqIjogeyJsZWdlbmQiOiBbeyJzaG93IjogdHJ1ZSwgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIn1dLCAibGFiZWxzIjogW3sibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIn1dfX0sICJkb251dENoYXJ0IjogeyIqIjogeyJsZWdlbmQiOiBbeyJzaG93IjogdHJ1ZSwgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIn1dLCAibGFiZWxzIjogW3sibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIn1dfX0sICJwaXZvdFRhYmxlIjogeyIqIjogeyJyb3dIZWFkZXJzIjogW3sic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZX1dfX0sICJtdWx0aVJvd0NhcmQiOiB7IioiOiB7ImNhcmQiOiBbeyJvdXRsaW5lV2VpZ2h0IjogMiwgImJhclNob3ciOiB0cnVlLCAiYmFyV2VpZ2h0IjogMn1dfX0sICJrcGkiOiB7IioiOiB7InRyZW5kbGluZSI6IFt7InRyYW5zcGFyZW5jeSI6IDIwfV19fSwgImNhcmRWaXN1YWwiOiB7IioiOiB7ImxheW91dCI6IFt7Im1heFRpbGVzIjogM31dLCAib3ZlcmZsb3ciOiBbeyJ0eXBlIjogMH1dLCAiaW1hZ2UiOiBbeyJmaXhlZFNpemUiOiBmYWxzZX0sIHsiaW1hZ2VBcmVhU2l6ZSI6IDUwfV19fSwgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogeyIqIjogeyJsYXlvdXQiOiBbeyJtYXhUaWxlcyI6IDN9XX19LCAic2xpY2VyIjogeyIqIjogeyJnZW5lcmFsIjogW3sicmVzcG9uc2l2ZSI6IHRydWV9XSwgImRhdGUiOiBbeyJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlfV0sICJpdGVtcyI6IFt7InBhZGRpbmciOiA0LCAiYWNjZXNzaWJpbGl0eUNvbnRyYXN0UHJvcGVydGllcyI6IHRydWV9XX19LCAid2F0ZXJmYWxsQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dfX0sICJjb2x1bW5DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJjbHVzdGVyZWRDb2x1bW5DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJodW5kcmVkUGVyY2VudFN0YWNrZWRDb2x1bW5DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJiYXJDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJjbHVzdGVyZWRCYXJDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJodW5kcmVkUGVyY2VudFN0YWNrZWRCYXJDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJhcmVhQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbeyJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwgImdyaWRMaW5lVHlwZSI6ICJpbm5lciJ9XX19LCAic3RhY2tlZEFyZWFDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJsaW5lU3RhY2tlZENvbHVtbkNvbWJvQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbeyJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwgImdyaWRMaW5lVHlwZSI6ICJpbm5lciJ9XX19LCAicmliYm9uQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbeyJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwgImdyaWRMaW5lVHlwZSI6ICJpbm5lciJ9XSwgInZhbHVlQXhpcyI6IFt7InNob3ciOiB0cnVlfV19fSwgImh1bmRyZWRQZXJjZW50U3RhY2tlZEFyZWFDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJncm91cCI6IHsiKiI6IHsiYmFja2dyb3VuZCI6IFt7InNob3ciOiBmYWxzZX1dfX0sICJiYXNpY1NoYXBlIjogeyIqIjogeyJiYWNrZ3JvdW5kIjogW3sic2hvdyI6IGZhbHNlfV0sICJnZW5lcmFsIjogW3sia2VlcExheWVyT3JkZXIiOiB0cnVlfV0sICJ2aXN1YWxIZWFkZXIiOiBbeyJzaG93IjogZmFsc2V9XX19LCAic2hhcGUiOiB7IioiOiB7ImJhY2tncm91bmQiOiBbeyJzaG93IjogZmFsc2V9XSwgImdlbmVyYWwiOiBbeyJrZWVwTGF5ZXJPcmRlciI6IHRydWV9XSwgInZpc3VhbEhlYWRlciI6IFt7InNob3ciOiBmYWxzZX1dfX0sICJpbWFnZSI6IHsiKiI6IHsiYmFja2dyb3VuZCI6IFt7InNob3ciOiBmYWxzZX1dLCAiZ2VuZXJhbCI6IFt7ImtlZXBMYXllck9yZGVyIjogdHJ1ZX1dLCAidmlzdWFsSGVhZGVyIjogW3sic2hvdyI6IGZhbHNlfV0sICJsb2NrQXNwZWN0IjogW3sic2hvdyI6IHRydWV9XX19LCAiYWN0aW9uQnV0dG9uIjogeyIqIjogeyJiYWNrZ3JvdW5kIjogW3sic2hvdyI6IGZhbHNlfV0sICJ2aXN1YWxIZWFkZXIiOiBbeyJzaG93IjogZmFsc2V9XX19LCAicGFnZU5hdmlnYXRvciI6IHsiKiI6IHsiYmFja2dyb3VuZCI6IFt7InNob3ciOiBmYWxzZX1dLCAidmlzdWFsSGVhZGVyIjogW3sic2hvdyI6IGZhbHNlfV19fSwgImJvb2ttYXJrTmF2aWdhdG9yIjogeyIqIjogeyJiYWNrZ3JvdW5kIjogW3sic2hvdyI6IGZhbHNlfV0sICJ2aXN1YWxIZWFkZXIiOiBbeyJzaG93IjogZmFsc2V9XX19LCAidGV4dGJveCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7ImtlZXBMYXllck9yZGVyIjogdHJ1ZX1dLCAidmlzdWFsSGVhZGVyIjogW3sic2hvdyI6IGZhbHNlfV19fSwgInBhZ2UiOiB7IioiOiB7Im91dHNwYWNlIjogW3siY29sb3IiOiB7InNvbGlkIjogeyJjb2xvciI6ICIjRkZGRkZGIn19fV0sICJiYWNrZ3JvdW5kIjogW3sidHJhbnNwYXJlbmN5IjogMTAwfV19fX19", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -1285,9 +1285,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/0f1831da-fadd-4c0d-8cad-daadb028b4c1/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/updateDefinition response: body: string: 'null' @@ -1303,13 +1303,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:08:54 GMT + - Wed, 31 Dec 2025 14:29:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/803ff682-7c61-4763-8a6c-797e4847a99e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2df0e196-6177-4aee-8f87-146571c22155 Pragma: - no-cache RequestId: - - 8b562787-1ad4-4295-a0a9-a674402e4c25 + - f80a9809-016b-4981-9314-b2a1c33e5131 Retry-After: - '20' Strict-Transport-Security: @@ -1323,7 +1323,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 803ff682-7c61-4763-8a6c-797e4847a99e + - 2df0e196-6177-4aee-8f87-146571c22155 status: code: 202 message: Accepted @@ -1339,13 +1339,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/803ff682-7c61-4763-8a6c-797e4847a99e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2df0e196-6177-4aee-8f87-146571c22155 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:08:55.3639554", - "lastUpdatedTimeUtc": "2025-11-26T16:08:55.7233276", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:29:41.293677", + "lastUpdatedTimeUtc": "2025-12-31T14:29:41.8249217", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1355,15 +1355,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:15 GMT + - Wed, 31 Dec 2025 14:30:01 GMT Pragma: - no-cache RequestId: - - e82ca9eb-0579-478e-9e84-73c85d51766e + - d74c4204-b136-49e9-9e22-aa392743da25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1385,13 +1385,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1402,15 +1402,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:16 GMT + - Wed, 31 Dec 2025 14:30:02 GMT Pragma: - no-cache RequestId: - - 55768079-46ec-4c2b-91cb-c74d5d8ddb4e + - d0c209d3-b88a-4ec7-8996-1e31b47018c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1436,18 +1436,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", + string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", + "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "b62cec27-5da9-43b1-8862-5d2969d0b2bf", + "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1456,15 +1456,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '265' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:16 GMT + - Wed, 31 Dec 2025 14:30:02 GMT Pragma: - no-cache RequestId: - - b370765e-faf4-426d-8a47-a0165b007b88 + - b429aee1-a736-4b52-8e96-eec14f2a4a19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1490,13 +1490,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/reports/0f1831da-fadd-4c0d-8cad-daadb028b4c1 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/reports/2402afe3-6ef3-4a96-b68e-14311c00f888 response: body: - string: '{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + string: '{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1505,17 +1505,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:17 GMT + - Wed, 31 Dec 2025 14:30:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3fe472c7-85fb-405b-87c9-dae4201fb671 + - e7f7f241-e6d3-4ac0-86e5-c6d787b2de4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1543,9 +1543,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/0f1831da-fadd-4c0d-8cad-daadb028b4c1/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/getDefinition response: body: string: 'null' @@ -1561,13 +1561,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:17 GMT + - Wed, 31 Dec 2025 14:30:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0044e209-0d0c-4644-b9ff-686f2b6f4fec + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc Pragma: - no-cache RequestId: - - dc0c7512-0d86-440d-9224-03dee4ff9589 + - 4b7a68a9-af19-49d5-8ccd-e918fb38b035 Retry-After: - '20' Strict-Transport-Security: @@ -1581,7 +1581,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 0044e209-0d0c-4644-b9ff-686f2b6f4fec + - aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc status: code: 202 message: Accepted @@ -1597,13 +1597,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0044e209-0d0c-4644-b9ff-686f2b6f4fec + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:09:18.0376613", - "lastUpdatedTimeUtc": "2025-11-26T16:09:18.2720329", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:30:04.5852701", + "lastUpdatedTimeUtc": "2025-12-31T14:30:05.209345", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1617,13 +1617,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:38 GMT + - Wed, 31 Dec 2025 14:30:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0044e209-0d0c-4644-b9ff-686f2b6f4fec/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc/result Pragma: - no-cache RequestId: - - 1b6e15dd-f2a1-4ef7-8e01-9379b40f49af + - 6805d623-43cd-4c06-83f0-a6d8faa33644 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1631,7 +1631,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 0044e209-0d0c-4644-b9ff-686f2b6f4fec + - aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc status: code: 200 message: OK @@ -1647,13 +1647,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0044e209-0d0c-4644-b9ff-686f2b6f4fec/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc/result response: body: string: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAyO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPWI2MmNlYzI3LTVkYTktNDNiMS04ODYyLTVkMjk2OWQwYjJiZiIKICAgIH0KICB9Cn0=", + "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAyO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPWIxMGU1NDZmLTgyYmItNGFiYy1hOGRiLWJlMGUwZTc5ZDFiYSIKICAgIH0KICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -1676,11 +1676,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:09:38 GMT + - Wed, 31 Dec 2025 14:30:25 GMT Pragma: - no-cache RequestId: - - ada55d5f-7cf8-481b-8975-690709106650 + - b5214b62-961d-46bc-9a33-e5a008c40616 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1704,9 +1704,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/0f1831da-fadd-4c0d-8cad-daadb028b4c1/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/connections response: body: string: '{"value": []}' @@ -1722,11 +1722,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:39 GMT + - Wed, 31 Dec 2025 14:30:27 GMT Pragma: - no-cache RequestId: - - f08437e3-c6ff-4868-acb8-bdcfb93f403f + - 7954ee53-e342-40d1-9ee1-622840429518 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1752,13 +1752,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1769,15 +1769,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:40 GMT + - Wed, 31 Dec 2025 14:30:27 GMT Pragma: - no-cache RequestId: - - 65fd8df0-9f94-4415-a692-fdb701250daa + - 50370e6c-0784-49be-ab44-4683cc5b98be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1803,18 +1803,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "0f1831da-fadd-4c0d-8cad-daadb028b4c1", "type": "Report", + string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", + "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, {"id": "b62cec27-5da9-43b1-8862-5d2969d0b2bf", + "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1823,15 +1823,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '265' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:40 GMT + - Wed, 31 Dec 2025 14:30:28 GMT Pragma: - no-cache RequestId: - - 00d00949-3984-4b93-aa20-ce9ef7aaba33 + - e82181f6-f3f2-4fc9-8a4c-3fe302a11815 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1859,9 +1859,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/b62cec27-5da9-43b1-8862-5d2969d0b2bf + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/b10e546f-82bb-4abc-a8db-be0e0e79d1ba response: body: string: '' @@ -1877,11 +1877,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:09:42 GMT + - Wed, 31 Dec 2025 14:30:29 GMT Pragma: - no-cache RequestId: - - 682e2e73-01a6-4fc1-9588-f9fa0339d9ff + - 9b565a10-8eba-4dbf-b932-d8ab9f096cb5 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 7698bb06..037c49b5 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:42 GMT + - Wed, 31 Dec 2025 14:30:29 GMT Pragma: - no-cache RequestId: - - 9f583f4d-12a0-4681-bc91-379eea54d2a1 + - 0afea65c-31fa-4769-9e6f-ac1db8ae58ce 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.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +77,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:42 GMT + - Wed, 31 Dec 2025 14:30:31 GMT Pragma: - no-cache RequestId: - - 23ceed8a-b725-4764-b3f6-25cbbea921b3 + - 6650d5d9-25f0-4cda-8d5e-fb3320a977b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,13 +111,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -126,15 +126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:44 GMT + - Wed, 31 Dec 2025 14:30:31 GMT Pragma: - no-cache RequestId: - - 6aab33b0-3c69-4d8d-a2d3-796fec9597e0 + - 25692ca4-b0bd-4169-a1eb-9bf84f608397 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,14 +163,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/variablelibraries + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries response: body: - string: '{"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -179,17 +179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:45 GMT + - Wed, 31 Dec 2025 14:30:33 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4ad54de2-f4b0-4796-9044-ec3de3263c97 + - 7fe16d47-81cc-4c83-b045-003d06b12626 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -215,13 +215,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -232,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:46 GMT + - Wed, 31 Dec 2025 14:30:33 GMT Pragma: - no-cache RequestId: - - 1d089e32-5b72-4b46-8f99-bfdae1c0c73e + - 450b5ab7-dd70-48ea-a5a3-646f7eea0987 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,16 +266,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + 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", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '246' + - '244' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:46 GMT + - Wed, 31 Dec 2025 14:30:33 GMT Pragma: - no-cache RequestId: - - adb9d9b0-a6a6-422a-91e2-40a083f1656d + - 39e1a0e2-e313-478f-ae4e-4b0838a1ce0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -318,14 +318,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/variablelibraries/5197f0c8-8aa5-4129-99da-a0f4c7e2c21f + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries/f3c23c38-8807-4b47-b1af-e3028cc672e1 response: body: - string: '{"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "properties": {"activeValueSetName": + "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"activeValueSetName": "Default value set"}}' headers: Access-Control-Expose-Headers: @@ -335,17 +335,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '208' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:46 GMT + - Wed, 31 Dec 2025 14:30:35 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a6228894-f36e-4bea-9480-2df600667722 + - f2abb60c-7db9-4cde-ad27-917e7e1ec251 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -373,14 +373,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/variablelibraries/5197f0c8-8aa5-4129-99da-a0f4c7e2c21f + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries/f3c23c38-8807-4b47-b1af-e3028cc672e1 response: body: - string: '{"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "properties": {"$type": "VariableLibraryProperties", + "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"$type": "VariableLibraryProperties", "activeValueSetName": "Default value set"}}' headers: Access-Control-Expose-Headers: @@ -394,13 +394,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:47 GMT + - Wed, 31 Dec 2025 14:30:36 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2f78f1bf-ebfc-4260-8b5b-52afff13f3d3 + - 2a129e25-3d6e-4d3a-a68f-2a45c3ad039c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -426,13 +426,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -443,15 +443,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:47 GMT + - Wed, 31 Dec 2025 14:30:36 GMT Pragma: - no-cache RequestId: - - 0eca0be8-d106-4bd8-90a9-9c78490cae9e + - 670bf109-aa81-42b7-b83c-d27afe63d3e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -477,16 +477,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + 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", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -495,15 +495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '246' + - '244' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:47 GMT + - Wed, 31 Dec 2025 14:30:36 GMT Pragma: - no-cache RequestId: - - af1ae523-9aef-4f42-9642-429c01ec5ca9 + - 759749e0-0cae-494a-ad38-42c3a4265e21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -529,14 +529,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/variablelibraries/5197f0c8-8aa5-4129-99da-a0f4c7e2c21f + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries/f3c23c38-8807-4b47-b1af-e3028cc672e1 response: body: - string: '{"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "properties": {"activeValueSetName": + "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"activeValueSetName": "Default value set"}}' headers: Access-Control-Expose-Headers: @@ -546,17 +546,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '208' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:49 GMT + - Wed, 31 Dec 2025 14:30:37 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 26a8ad90-6086-4399-b9f5-c49f951c551f + - d2d8447a-af7d-4097-85bd-12da4ee02e8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -584,9 +584,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/5197f0c8-8aa5-4129-99da-a0f4c7e2c21f/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/f3c23c38-8807-4b47-b1af-e3028cc672e1/getDefinition response: body: string: 'null' @@ -602,13 +602,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:09:48 GMT + - Wed, 31 Dec 2025 14:30:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50f034a-ae1d-40ca-b2bf-36ac64885562 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7699831b-1a58-4c90-9321-2afdf9ab001a Pragma: - no-cache RequestId: - - 74573230-1405-469b-8bee-39f04459b544 + - 8c2fe6c7-48aa-4deb-93ea-8bb00c322b89 Retry-After: - '20' Strict-Transport-Security: @@ -622,7 +622,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f50f034a-ae1d-40ca-b2bf-36ac64885562 + - 7699831b-1a58-4c90-9321-2afdf9ab001a status: code: 202 message: Accepted @@ -638,13 +638,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50f034a-ae1d-40ca-b2bf-36ac64885562 + 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-11-26T16:09:49.773982", - "lastUpdatedTimeUtc": "2025-11-26T16:09:50.1495864", "percentComplete": 100, + 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: @@ -654,17 +654,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:10:09 GMT + - Wed, 31 Dec 2025 14:30:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50f034a-ae1d-40ca-b2bf-36ac64885562/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7699831b-1a58-4c90-9321-2afdf9ab001a/result Pragma: - no-cache RequestId: - - 3cb2e6f7-e36b-4371-920b-2fab74b707ba + - ea52ca5d-b4cb-4148-a10b-5f3093e941c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,7 +672,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f50f034a-ae1d-40ca-b2bf-36ac64885562 + - 7699831b-1a58-4c90-9321-2afdf9ab001a status: code: 200 message: OK @@ -688,9 +688,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50f034a-ae1d-40ca-b2bf-36ac64885562/result + 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=", @@ -707,11 +707,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:10:10 GMT + - Wed, 31 Dec 2025 14:30:58 GMT Pragma: - no-cache RequestId: - - b70667cf-a9bf-448b-8712-c7a81d30481e + - 87ab23bc-b000-4338-871b-4897458430ee Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -735,9 +735,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/5197f0c8-8aa5-4129-99da-a0f4c7e2c21f/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/f3c23c38-8807-4b47-b1af-e3028cc672e1/connections response: body: string: '{"value": []}' @@ -753,11 +753,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:10:11 GMT + - Wed, 31 Dec 2025 14:30:59 GMT Pragma: - no-cache RequestId: - - 45374ee9-15ca-414f-b67f-1e2742dd1934 + - d9ffdc37-62a9-473d-a5a5-0f9fe3ebb651 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -783,13 +783,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -800,15 +800,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:10:11 GMT + - Wed, 31 Dec 2025 14:31:00 GMT Pragma: - no-cache RequestId: - - 29d4242d-03b4-4736-84c3-467c05517dae + - 26cd0feb-c858-4955-b281-865a2c3ec165 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -834,16 +834,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "5197f0c8-8aa5-4129-99da-a0f4c7e2c21f", "type": "VariableLibrary", + 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", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -852,15 +852,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '246' + - '244' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:10:11 GMT + - Wed, 31 Dec 2025 14:30:59 GMT Pragma: - no-cache RequestId: - - b1aa3707-1a4a-480a-aba2-f3686a40bc74 + - f9366874-349e-48b1-8702-d02330ec9215 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -888,9 +888,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/5197f0c8-8aa5-4129-99da-a0f4c7e2c21f + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/f3c23c38-8807-4b47-b1af-e3028cc672e1 response: body: string: '' @@ -906,11 +906,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:10:11 GMT + - Wed, 31 Dec 2025 14:31:00 GMT Pragma: - no-cache RequestId: - - 4fafb800-53e4-4b4a-a4a2-22b1500313c3 + - ef820c80-c41b-4463-979e-09df4d47084c 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 148f1654..c9bfb908 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:05 GMT + - Wed, 31 Dec 2025 14:38:34 GMT Pragma: - no-cache RequestId: - - c7506306-c4fb-49b2-80b2-06e1965a6882 + - b7960c21-1388-4de4-b750-84329f4b7c75 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.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +77,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:06 GMT + - Wed, 31 Dec 2025 14:38:35 GMT Pragma: - no-cache RequestId: - - b5397c29-9815-47bf-9d3f-37ed46cb8af8 + - b2cee87d-0254-4180-9cdc-e399315facec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,13 +111,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -126,15 +126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:06 GMT + - Wed, 31 Dec 2025 14:38:35 GMT Pragma: - no-cache RequestId: - - 2b75ecef-4133-41ec-a438-9df8ad2c0957 + - 6e2046be-16e0-48c6-a6cc-d9fb27f32f40 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,14 +163,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "b7a5e93a-7090-47b0-9f70-82b236f0acdb", "type": "Lakehouse", + string: '{"id": "83bb07ae-e23c-4f35-bfc2-25e070a52e7f", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -179,17 +179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:10 GMT + - Wed, 31 Dec 2025 14:38:37 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3fe37569-d993-495d-9ebb-9a88f8d21386 + - 6e334044-63da-463f-9fdc-65ecc3242b4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -215,13 +215,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -232,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:11 GMT + - Wed, 31 Dec 2025 14:38:38 GMT Pragma: - no-cache RequestId: - - 74a8e84f-68cf-4681-bd44-ce6f3a477d23 + - abf6e3ef-d6b8-4f8a-b122-849966775f5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,15 +266,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "b7a5e93a-7090-47b0-9f70-82b236f0acdb", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -283,15 +283,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '241' + - '242' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:12 GMT + - Wed, 31 Dec 2025 14:38:38 GMT Pragma: - no-cache RequestId: - - 9bf287be-1557-49ec-8810-31f21c164fbc + - c80601b4-f078-44cd-95f4-6560372e1014 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -317,13 +317,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -334,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:11 GMT + - Wed, 31 Dec 2025 14:38:38 GMT Pragma: - no-cache RequestId: - - acbd6f20-c335-41fb-8366-de621cf36969 + - c3d90d80-cfbb-4aee-b2d2-48fdb416667a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -368,15 +368,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "b7a5e93a-7090-47b0-9f70-82b236f0acdb", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -385,15 +385,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '241' + - '242' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:12 GMT + - Wed, 31 Dec 2025 14:38:39 GMT Pragma: - no-cache RequestId: - - 491d711d-b2ef-4266-8b5f-514b330fd38a + - cac67a38-03a9-4a86-93fa-bc39dbc512cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/b7a5e93a-7090-47b0-9f70-82b236f0acdb + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/83bb07ae-e23c-4f35-bfc2-25e070a52e7f response: body: string: '' @@ -439,11 +439,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:13:13 GMT + - Wed, 31 Dec 2025 14:38:39 GMT Pragma: - no-cache RequestId: - - 5bae6f71-0e86-4990-9b25-a2cd72b949ed + - 8b38a98f-c977-459e-96c8-06060c5b6650 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 80ec5625..c352932f 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 @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:47:57 GMT + - Wed, 31 Dec 2025 14:37:37 GMT Pragma: - no-cache RequestId: - - ed73e734-7c24-480c-bdeb-f783388c675a + - e0584eb6-8fff-4af5-8b19-720a78727fd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,10 +64,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +77,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:47:57 GMT + - Wed, 31 Dec 2025 14:37:38 GMT Pragma: - no-cache RequestId: - - 8219484d-076d-46c1-b353-39a6751b0e82 + - a7828f54-30a8-4f8a-a77c-731fcfc266ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,10 +113,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -124,15 +126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:47:59 GMT + - Wed, 31 Dec 2025 14:37:37 GMT Pragma: - no-cache RequestId: - - 8e493f02-f089-4486-ae05-8a08fb998b45 + - cc7f80ea-7b30-4d21-a265-97049f852662 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,12 +165,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", + string: '{"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -177,17 +179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:04 GMT + - Wed, 31 Dec 2025 14:37:40 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c158ee20-0f97-4a06-90c4-9d6af31f7e4a + - 7ca20a1b-b3f6-4bfd-bb29-62fe2b0c0e27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +221,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:04 GMT + - Wed, 31 Dec 2025 14:37:41 GMT Pragma: - no-cache RequestId: - - 0def3315-e2cb-4861-bbec-66a40e8d1c09 + - 6e532fae-1da3-4af7-88a9-84c137c3fabc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,12 +268,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +283,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '242' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:04 GMT + - Wed, 31 Dec 2025 14:37:41 GMT Pragma: - no-cache RequestId: - - 0712eb6a-2274-4c6c-aafc-d4e3da297623 + - 6d01e3d6-1130-45a8-99a0-3422e76e109c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,12 +319,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -330,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '242' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:05 GMT + - Wed, 31 Dec 2025 14:37:42 GMT Pragma: - no-cache RequestId: - - 5cb20ce7-dc00-4e38-b233-0ea6c004d9a3 + - ad32ea94-dfe1-4199-b6a0-c0410d36fb54 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -369,12 +373,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", + string: '{"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -383,17 +387,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:07 GMT + - Wed, 31 Dec 2025 14:37:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0eda50c3-668f-4c52-8540-72806fc03227 + - c9500505-8672-4f41-9c62-e7484f83a756 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -425,7 +429,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -436,15 +440,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:07 GMT + - Wed, 31 Dec 2025 14:37:44 GMT Pragma: - no-cache RequestId: - - bd0a35da-9eb1-4af3-bf3e-cc4a4e4c6d01 + - 2c8c22c3-a8a6-4d2c-9be4-ee6282f448d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -472,14 +476,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a"}, {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", - "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created - by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -488,15 +493,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '222' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:08 GMT + - Wed, 31 Dec 2025 14:37:44 GMT Pragma: - no-cache RequestId: - - 946fefca-7064-4457-8e3d-7128d38ad301 + - f60ba768-6fd4-4714-8865-821d999e8efa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -524,7 +529,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/afd7ef95-7350-4867-bab1-cca395bdfc16/Files/originalShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/originalShortcut response: body: string: '' @@ -538,7 +543,7 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Sun, 28 Dec 2025 13:48:11 GMT + - Wed, 31 Dec 2025 14:37:44 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -566,7 +571,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/afd7ef95-7350-4867-bab1-cca395bdfc16/Files/originalShortcut.Shortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/originalShortcut.Shortcut response: body: string: '' @@ -580,7 +585,7 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Sun, 28 Dec 2025 13:48:12 GMT + - Wed, 31 Dec 2025 14:37:45 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -612,7 +617,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -623,15 +628,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:12 GMT + - Wed, 31 Dec 2025 14:37:45 GMT Pragma: - no-cache RequestId: - - 3aaac786-8a63-4ed5-9b73-0abf03d25344 + - a9eb21c2-c41e-412b-8d8f-447368259769 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -659,14 +664,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a"}, {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", - "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created - by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -675,15 +681,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '222' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:14 GMT + - Wed, 31 Dec 2025 14:37:45 GMT Pragma: - no-cache RequestId: - - 646dde5f-b914-445b-aa9e-cec811cc4836 + - ba1335cd-b48c-4bcf-86c3-005ecd9ea74e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -699,7 +705,7 @@ interactions: message: OK - request: body: '{"path": "Files", "name": "originalShortcut", "target": {"oneLake": {"workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": "24ccf396-64f7-4069-8dbe-7b0e9be87430", + "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Accept: @@ -715,12 +721,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts?shortcutConflictPolicy=GenerateUniqueName + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts?shortcutConflictPolicy=GenerateUniqueName response: body: string: '{"name": "originalShortcut", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": - "24ccf396-64f7-4069-8dbe-7b0e9be87430", "path": "Files"}}}' + "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": + "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -736,17 +742,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '192' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:15 GMT + - Wed, 31 Dec 2025 14:37:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/originalShortcut + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/originalShortcut Pragma: - no-cache RequestId: - - adff07e9-4575-4c9f-abbf-effbdc060e73 + - 0eff946d-0d7f-424e-8403-41b447fd19f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -780,7 +786,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -791,15 +797,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:15 GMT + - Wed, 31 Dec 2025 14:37:46 GMT Pragma: - no-cache RequestId: - - e2c8e015-2c4e-4508-8ac7-d3657ff9bf15 + - 4f38bd5a-f7ec-4275-a7c9-1dfa529fba8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -827,15 +833,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -844,15 +850,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '263' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:16 GMT + - Wed, 31 Dec 2025 14:37:47 GMT Pragma: - no-cache RequestId: - - 3abf43a4-1442-4903-a1a5-c9c898bae075 + - eca8764c-6e0f-4bc5-9307-38cc64796883 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -880,7 +886,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/afd7ef95-7350-4867-bab1-cca395bdfc16/Files/originalShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/originalShortcut response: body: string: '' @@ -900,11 +906,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:18 GMT + - Wed, 31 Dec 2025 14:37:47 GMT ETag: - - '"0x8DE4617BA8B190C"' + - '"0x8DE487A28128E18"' Last-Modified: - - Sun, 28 Dec 2025 13:48:06 GMT + - Wed, 31 Dec 2025 14:37:42 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -932,12 +938,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/originalShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/originalShortcut response: body: string: '{"name": "originalShortcut", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": - "24ccf396-64f7-4069-8dbe-7b0e9be87430", "path": "Files"}}}' + "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": + "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -953,15 +959,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '192' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:18 GMT + - Wed, 31 Dec 2025 14:37:48 GMT Pragma: - no-cache RequestId: - - cbca5d0c-713f-4269-aa7e-4b7805155ca7 + - ee3a3745-271e-48d3-91bb-3aa7aedd1c1e Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -979,7 +985,7 @@ interactions: message: OK - request: body: '{"name": "fabcli000003", "path": "Files", "target": {"oneLake": {"workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": "24ccf396-64f7-4069-8dbe-7b0e9be87430", + "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Accept: @@ -995,12 +1001,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts?shortcutConflictPolicy=Abort + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts?shortcutConflictPolicy=Abort response: body: string: '{"name": "fabcli000003", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": - "24ccf396-64f7-4069-8dbe-7b0e9be87430", "path": "Files"}}}' + "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": + "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1016,17 +1022,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '190' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:20 GMT + - Wed, 31 Dec 2025 14:37:49 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/fabcli8dc39b3lx0 + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli9ljwityi6s Pragma: - no-cache RequestId: - - e96cb84f-580c-49ee-8038-351e93b9e892 + - 0298bc96-04fb-4352-a137-717c5f10cb06 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1058,7 +1064,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/originalShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/originalShortcut response: body: string: '' @@ -1081,11 +1087,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:48:20 GMT + - Wed, 31 Dec 2025 14:37:50 GMT Pragma: - no-cache RequestId: - - 1a22c786-8819-4ef9-8c4f-ca6174821d20 + - f8847da2-3099-4a2c-8fa6-ba0f2cc346dd Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1119,7 +1125,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1130,15 +1136,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:21 GMT + - Wed, 31 Dec 2025 14:37:49 GMT Pragma: - no-cache RequestId: - - 7aae15d1-422b-4b34-888d-f448a6f9c60b + - c0b4f074-ea46-48c1-a8eb-b5ca94d15a03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1166,17 +1172,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "c834f81f-b371-46af-9dd2-3d5ba37849df", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1185,15 +1189,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '292' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:21 GMT + - Wed, 31 Dec 2025 14:37:50 GMT Pragma: - no-cache RequestId: - - 59db62ea-1f74-45aa-8474-60759b8c3125 + - 5ef7946b-a831-47ef-8b97-056d9b418d16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1221,7 +1225,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/afd7ef95-7350-4867-bab1-cca395bdfc16/Files/fabcli000003 + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/fabcli000003 response: body: string: '' @@ -1241,11 +1245,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:21 GMT + - Wed, 31 Dec 2025 14:37:52 GMT ETag: - - '"0x8DE4617BA8B190C"' + - '"0x8DE487A28128E18"' Last-Modified: - - Sun, 28 Dec 2025 13:48:06 GMT + - Wed, 31 Dec 2025 14:37:42 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -1273,12 +1277,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/fabcli000003 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli000003 response: body: string: '{"name": "fabcli000003", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": - "24ccf396-64f7-4069-8dbe-7b0e9be87430", "path": "Files"}}}' + "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": + "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1294,15 +1298,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '190' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:22 GMT + - Wed, 31 Dec 2025 14:37:52 GMT Pragma: - no-cache RequestId: - - a0a627fc-48be-48bc-8b63-eba03b3a78be + - 432dc991-b61e-4f1a-96f6-fb870d023b9e Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1336,7 +1340,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1347,15 +1351,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:22 GMT + - Wed, 31 Dec 2025 14:37:53 GMT Pragma: - no-cache RequestId: - - 942b51a0-0b2b-4838-99b9-ef54e0b95532 + - a478837f-b41c-46db-ae5a-c88813f4959a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1383,17 +1387,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "c834f81f-b371-46af-9dd2-3d5ba37849df", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1402,15 +1404,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '292' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:23 GMT + - Wed, 31 Dec 2025 14:37:53 GMT Pragma: - no-cache RequestId: - - 8f670259-1ae1-43f5-bc9b-6e66341b1c70 + - 2a477070-1fef-4708-9e28-89bf25c89d16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1438,16 +1440,16 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/lakehouses/24ccf396-64f7-4069-8dbe-7b0e9be87430 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses/ee914472-2b9e-4a22-9624-3eac0e96c32f response: body: - string: '{"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", + string: '{"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "d3987bbd-67f7-48da-906b-48291a09838a", "properties": {"oneLakeTablesPath": - "https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/24ccf396-64f7-4069-8dbe-7b0e9be87430/Tables", - "oneLakeFilesPath": "https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/24ccf396-64f7-4069-8dbe-7b0e9be87430/Files", - "sqlEndpointProperties": {"connectionString": "mock_connection_string", "id": - "c834f81f-b371-46af-9dd2-3d5ba37849df", "provisioningStatus": "Success"}}}' + "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"}}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1456,17 +1458,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '375' + - '304' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:23 GMT + - Wed, 31 Dec 2025 14:37:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a69a99b5-c3ac-4782-afb0-2203f7883119 + - 82653e14-af9a-46a0-ace1-195d7f1ca568 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1494,7 +1496,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/24ccf396-64f7-4069-8dbe-7b0e9be87430/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ee914472-2b9e-4a22-9624-3eac0e96c32f/connections response: body: string: '{"value": []}' @@ -1510,11 +1512,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:23 GMT + - Wed, 31 Dec 2025 14:37:54 GMT Pragma: - no-cache RequestId: - - d27d387d-90d1-4215-b7b6-a03dd0e18962 + - 2f9ee618-7655-4b0f-92ee-56e760fa21e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1542,7 +1544,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/24ccf396-64f7-4069-8dbe-7b0e9be87430/jobs/TableMaintenance/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ee914472-2b9e-4a22-9624-3eac0e96c32f/jobs/TableMaintenance/schedules response: body: string: '{"value": []}' @@ -1558,11 +1560,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:25 GMT + - Wed, 31 Dec 2025 14:37:55 GMT Pragma: - no-cache RequestId: - - 9ec2585c-d096-43d0-bdd3-b6d0e0edc560 + - 1b7bba4e-4f7c-4928-9c8e-80d37e298e16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1594,7 +1596,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1605,15 +1607,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:24 GMT + - Wed, 31 Dec 2025 14:37:55 GMT Pragma: - no-cache RequestId: - - 0fe08127-c59c-4161-982d-d5890bd1ed0a + - dda8139e-4317-477e-8c14-e3e1249f4bd8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1641,17 +1643,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "c834f81f-b371-46af-9dd2-3d5ba37849df", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1660,15 +1660,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '292' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:25 GMT + - Wed, 31 Dec 2025 14:37:55 GMT Pragma: - no-cache RequestId: - - c5028d57-be4a-49d0-a8e0-a0f0406c2985 + - d0c7f074-0a85-4a75-a951-d04a0a3f6da6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1696,7 +1696,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/afd7ef95-7350-4867-bab1-cca395bdfc16/Files/fabcli000003 + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/fabcli000003 response: body: string: '' @@ -1716,11 +1716,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:26 GMT + - Wed, 31 Dec 2025 14:37:56 GMT ETag: - - '"0x8DE4617BA8B190C"' + - '"0x8DE487A28128E18"' Last-Modified: - - Sun, 28 Dec 2025 13:48:06 GMT + - Wed, 31 Dec 2025 14:37:42 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -1748,12 +1748,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/fabcli000003 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli000003 response: body: string: '{"name": "fabcli000003", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a", "itemId": - "24ccf396-64f7-4069-8dbe-7b0e9be87430", "path": "Files"}}}' + "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": + "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1769,15 +1769,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '190' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:27 GMT + - Wed, 31 Dec 2025 14:37:56 GMT Pragma: - no-cache RequestId: - - b52393ab-74e5-4e78-ac55-1091e2baa1b5 + - 3f3752bd-35e6-4220-8ed9-11e5361e0bb9 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1811,7 +1811,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1822,15 +1822,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:27 GMT + - Wed, 31 Dec 2025 14:37:56 GMT Pragma: - no-cache RequestId: - - 61fe795b-5adb-4058-b9f8-61dba8c8f91e + - b5cd8002-1f96-48d0-b45a-91381e111d23 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1858,17 +1858,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "c834f81f-b371-46af-9dd2-3d5ba37849df", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1877,15 +1875,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '292' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:28 GMT + - Wed, 31 Dec 2025 14:37:57 GMT Pragma: - no-cache RequestId: - - 5750b467-154d-419a-bf1a-eae79d8c612e + - b8be9fdb-469d-48a4-8553-c494bbba3f68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1913,7 +1911,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/d3987bbd-67f7-48da-906b-48291a09838a/afd7ef95-7350-4867-bab1-cca395bdfc16/Files/fabcli000003 + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/fabcli000003 response: body: string: '' @@ -1933,11 +1931,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:28 GMT + - Wed, 31 Dec 2025 14:37:59 GMT ETag: - - '"0x8DE4617BA8B190C"' + - '"0x8DE487A28128E18"' Last-Modified: - - Sun, 28 Dec 2025 13:48:06 GMT + - Wed, 31 Dec 2025 14:37:42 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -1967,7 +1965,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16/shortcuts/Files/fabcli000003 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli000003 response: body: string: '' @@ -1990,11 +1988,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:48:28 GMT + - Wed, 31 Dec 2025 14:38:00 GMT Pragma: - no-cache RequestId: - - 62adb3a8-292e-4ae3-aea3-047c71949ebe + - 48ce3ef8-014f-4788-983a-8d881ab342e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -2028,7 +2026,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -2039,15 +2037,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:28 GMT + - Wed, 31 Dec 2025 14:38:00 GMT Pragma: - no-cache RequestId: - - 1dd0f28e-22c1-499b-aa4a-a909489be357 + - c72f4b0e-13ac-44ff-8e59-3601962b15a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2075,17 +2073,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "c834f81f-b371-46af-9dd2-3d5ba37849df", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "24ccf396-64f7-4069-8dbe-7b0e9be87430", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2094,15 +2092,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '292' + - '318' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:29 GMT + - Wed, 31 Dec 2025 14:38:00 GMT Pragma: - no-cache RequestId: - - d43b47a5-da08-4e37-b2dd-b56d4a393df8 + - 2e3477ea-5e80-4c14-87c4-481a9b6cd55a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2132,7 +2130,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/24ccf396-64f7-4069-8dbe-7b0e9be87430 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ee914472-2b9e-4a22-9624-3eac0e96c32f response: body: string: '' @@ -2148,11 +2146,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:48:31 GMT + - Wed, 31 Dec 2025 14:38:00 GMT Pragma: - no-cache RequestId: - - 6855ca7d-b953-436b-ae71-97720e63b99b + - 86f584bf-61f6-429e-8679-25d039b41ba3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2184,7 +2182,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d3987bbd-67f7-48da-906b-48291a09838a", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -2195,15 +2193,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:31 GMT + - Wed, 31 Dec 2025 14:38:01 GMT Pragma: - no-cache RequestId: - - 74df01af-2b6c-44e6-88bd-e9387db71194 + - f15e9641-d59c-482f-a437-452dad0782e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2231,13 +2229,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "c6646229-4dc1-414d-a6e7-14a48a2c217f", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}, - {"id": "afd7ef95-7350-4867-bab1-cca395bdfc16", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "d3987bbd-67f7-48da-906b-48291a09838a"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2246,15 +2244,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '242' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:48:30 GMT + - Wed, 31 Dec 2025 14:38:02 GMT Pragma: - no-cache RequestId: - - d83b58ce-9fa8-4785-b679-6d6adc6b90ec + - fa1aca63-4b2b-42c3-804c-0d18258ccac4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2284,7 +2282,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d3987bbd-67f7-48da-906b-48291a09838a/items/afd7ef95-7350-4867-bab1-cca395bdfc16 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202 response: body: string: '' @@ -2300,11 +2298,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:48:31 GMT + - Wed, 31 Dec 2025 14:38:02 GMT Pragma: - no-cache RequestId: - - 21ea5a7d-557a-44b1-a14b-b303b1446b75 + - b875c6e3-26fe-4e8d-87dd-98f524f615f4 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 a0cc5203..c6ee00d5 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 @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:05 GMT + - Wed, 31 Dec 2025 14:38:03 GMT Pragma: - no-cache RequestId: - - dff2e20c-37a4-49d8-b16c-8aa62badb346 + - 00a8d903-501f-4a56-b8fb-71e2f277f0f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,10 +64,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +77,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:06 GMT + - Wed, 31 Dec 2025 14:38:03 GMT Pragma: - no-cache RequestId: - - 17184258-5a85-4b52-b6c9-d15e861e1885 + - 9281dbb5-2b12-469e-8f24-95e3f2a41fca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,10 +113,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -124,15 +126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:06 GMT + - Wed, 31 Dec 2025 14:38:03 GMT Pragma: - no-cache RequestId: - - 8e691ee9-77d1-44c9-9913-ea4932c2b63b + - 83e6f397-b822-415f-b0d5-1058ff83ad55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,12 +165,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", + string: '{"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -177,17 +179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:11 GMT + - Wed, 31 Dec 2025 14:38:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7de87d8d-e8a8-498c-9e3c-95795ae26aa2 + - 5fff0398-ddb1-4258-8e1b-5896e827d941 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +221,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:12 GMT + - Wed, 31 Dec 2025 14:38:05 GMT Pragma: - no-cache RequestId: - - ee20954e-c697-4c2f-a063-8aacfc29a856 + - cb60b43d-c902-4985-85b4-3e4170eb1a3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,12 +268,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +283,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:12 GMT + - Wed, 31 Dec 2025 14:38:05 GMT Pragma: - no-cache RequestId: - - f9b8a070-ea22-4701-88cf-165371de96ef + - d0c07bfc-a42a-459c-8f7c-a1162cc48b0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,12 +319,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -330,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:13 GMT + - Wed, 31 Dec 2025 14:38:06 GMT Pragma: - no-cache RequestId: - - c9f767af-0a83-4267-bfad-a269c7cea5c0 + - 95c3bb1d-9d88-4646-bae6-fe695418df32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -369,12 +373,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", + string: '{"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -387,13 +391,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:16 GMT + - Wed, 31 Dec 2025 14:38:07 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d4b7e1b5-1f89-47aa-a6f1-8b44b07cf73f + - 238f936a-1b52-4231-8e56-96a47ea67fce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -425,7 +429,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -436,15 +440,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:17 GMT + - Wed, 31 Dec 2025 14:38:08 GMT Pragma: - no-cache RequestId: - - 14a64382-b3eb-44d7-8b4f-7e6058696c00 + - 345be560-1e02-4ac7-9bee-4012a18b5606 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -472,14 +476,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", - "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created - by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -488,15 +493,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '222' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:16 GMT + - Wed, 31 Dec 2025 14:38:08 GMT Pragma: - no-cache RequestId: - - 0e1f1dfd-8596-40d0-a861-691a2270b2b5 + - b2cf3018-d561-49ba-b2a4-1d1f4af63cbf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -524,14 +529,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", - "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created - by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -540,15 +546,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '222' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:17 GMT + - Wed, 31 Dec 2025 14:38:09 GMT Pragma: - no-cache RequestId: - - 74ebf564-a02f-4975-ab8d-a179b9d05ffb + - 60ce2345-d3e7-46fc-95d3-29c44b2df369 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -579,12 +585,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", + string: '{"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -593,17 +599,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:20 GMT + - Wed, 31 Dec 2025 14:38:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1d94082a-9106-4741-a18e-6bbffad9733c + - fb8b52c1-f760-4f0f-a6c6-66f8a3c76a23 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -635,7 +641,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -646,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:21 GMT + - Wed, 31 Dec 2025 14:38:11 GMT Pragma: - no-cache RequestId: - - 8a95d68c-15c5-4eca-a352-5a63f071b223 + - bc57b5f2-c175-4682-93da-9c3db754670f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -682,16 +688,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", - "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created - by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", - "type": "Lakehouse", "displayName": "fabcli000003", "description": "Created - by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -700,15 +707,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '256' + - '311' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:21 GMT + - Wed, 31 Dec 2025 14:38:11 GMT Pragma: - no-cache RequestId: - - fe619ae1-f74a-4636-97d2-227cef0353e9 + - fb017c7d-6616-4ad7-90d9-512679d7848c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -736,7 +743,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/be810b42-58ab-4488-8f30-5aba4acfcb35/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut response: body: string: '' @@ -750,7 +757,7 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Sun, 28 Dec 2025 13:52:22 GMT + - Wed, 31 Dec 2025 14:38:12 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -778,7 +785,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/be810b42-58ab-4488-8f30-5aba4acfcb35/Files/targetUpdateShortcut.Shortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut.Shortcut response: body: string: '' @@ -792,7 +799,7 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Sun, 28 Dec 2025 13:52:23 GMT + - Wed, 31 Dec 2025 14:38:12 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -824,7 +831,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -835,15 +842,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:24 GMT + - Wed, 31 Dec 2025 14:38:12 GMT Pragma: - no-cache RequestId: - - 20defc36-df03-4dda-a343-8c0f237f14d6 + - e6f95d99-1953-41b8-a455-0b6166d1e4e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -871,19 +878,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -892,15 +897,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '329' + - '311' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:24 GMT + - Wed, 31 Dec 2025 14:38:14 GMT Pragma: - no-cache RequestId: - - ebfc1c07-75a6-4bbd-b740-5240a55a58e7 + - 015e8017-7c57-4e34-8540-9474bc85e36b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -916,7 +921,7 @@ interactions: message: OK - request: body: '{"path": "Files", "name": "targetUpdateShortcut", "target": {"oneLake": - {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", "itemId": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", + {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "6d583dee-3995-4593-9920-f58526b47dd5", "path": "Files"}}}' headers: Accept: @@ -932,12 +937,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts?shortcutConflictPolicy=GenerateUniqueName + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts?shortcutConflictPolicy=GenerateUniqueName response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", - "itemId": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", + "itemId": "6d583dee-3995-4593-9920-f58526b47dd5", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -957,13 +962,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:25 GMT + - Wed, 31 Dec 2025 14:38:14 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts/Files/targetUpdateShortcut + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut Pragma: - no-cache RequestId: - - 20df7474-e7ec-41f6-8d1a-e057285cb8f2 + - 6da094e3-efad-42a0-b4ca-e7b496b38301 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -997,7 +1002,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1008,15 +1013,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:26 GMT + - Wed, 31 Dec 2025 14:38:15 GMT Pragma: - no-cache RequestId: - - fbc71eeb-3ae7-4aae-ad04-045d9d807d01 + - 990a724f-3e67-476f-a3b1-e49e532c817b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1044,19 +1049,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1065,15 +1068,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '329' + - '311' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:26 GMT + - Wed, 31 Dec 2025 14:38:15 GMT Pragma: - no-cache RequestId: - - f09ee899-fa33-4195-9a3d-e342f6d5dd42 + - 2c234986-a6dd-4b46-a8c7-73bdec91bd8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1101,16 +1104,16 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/lakehouses/a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses/56107b92-5b1c-4752-ab0a-4958a0064934 response: body: - string: '{"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", + string: '{"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", "properties": {"oneLakeTablesPath": - "https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8/Tables", - "oneLakeFilesPath": "https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8/Files", - "sqlEndpointProperties": {"connectionString": "mock_connection_string", "id": - "375db029-c6ea-4745-ae3a-1dae01116aac", "provisioningStatus": "Success"}}}' + "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"}}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1119,17 +1122,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '372' + - '303' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:27 GMT + - Wed, 31 Dec 2025 14:38:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1ce2f203-46de-4170-a4d9-5be7692b635d + - 685fbbb8-56c1-45c0-9e95-88f8bac53655 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1157,7 +1160,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/56107b92-5b1c-4752-ab0a-4958a0064934/connections response: body: string: '{"value": []}' @@ -1173,11 +1176,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:27 GMT + - Wed, 31 Dec 2025 14:38:16 GMT Pragma: - no-cache RequestId: - - 61883668-dd73-4d12-b0a4-d8bcc186af29 + - 68fcfe6a-dbe3-4757-a544-d13cc335a21b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1205,7 +1208,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8/jobs/TableMaintenance/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/56107b92-5b1c-4752-ab0a-4958a0064934/jobs/TableMaintenance/schedules response: body: string: '{"value": []}' @@ -1221,11 +1224,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:27 GMT + - Wed, 31 Dec 2025 14:38:17 GMT Pragma: - no-cache RequestId: - - 5b9c1cac-5d0b-4267-92b9-1a2fd90993ba + - 12bf8d40-5ffb-4203-a26b-2d92bbca4c26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1257,7 +1260,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1268,15 +1271,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:27 GMT + - Wed, 31 Dec 2025 14:38:17 GMT Pragma: - no-cache RequestId: - - 5c0ff3ef-321a-4a5c-9309-0dd4a5559386 + - d81cb7bc-90b5-4a0c-bd89-d6c7fd96ce28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1304,21 +1307,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "375db029-c6ea-4745-ae3a-1dae01116aac", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1327,15 +1326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '357' + - '311' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:28 GMT + - Wed, 31 Dec 2025 14:38:18 GMT Pragma: - no-cache RequestId: - - 3ea07eb0-32a7-411f-b4ad-fc9c2307d48a + - af3de752-64e0-4abf-b285-3deebdd4aea4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1363,7 +1362,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/be810b42-58ab-4488-8f30-5aba4acfcb35/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut response: body: string: '' @@ -1383,11 +1382,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:29 GMT + - Wed, 31 Dec 2025 14:38:17 GMT ETag: - - '"0x8DE46184E73C9BC"' + - '"0x8DE487A3691DE3C"' Last-Modified: - - Sun, 28 Dec 2025 13:52:14 GMT + - Wed, 31 Dec 2025 14:38:07 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -1415,12 +1414,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts/Files/targetUpdateShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", - "itemId": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", + "itemId": "6d583dee-3995-4593-9920-f58526b47dd5", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1440,11 +1439,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:30 GMT + - Wed, 31 Dec 2025 14:38:19 GMT Pragma: - no-cache RequestId: - - e8ccda73-5750-4b67-ae18-ab7dbd091ec6 + - d69b3365-41f7-48f3-8fa4-e7a9962cad99 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1462,7 +1461,7 @@ interactions: message: OK - request: body: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"oneLake": - {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", "itemId": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", + {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "56107b92-5b1c-4752-ab0a-4958a0064934", "path": "Files"}}}' headers: Accept: @@ -1478,12 +1477,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts?shortcutConflictPolicy=OverwriteOnly + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts?shortcutConflictPolicy=OverwriteOnly response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", - "itemId": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", + "itemId": "56107b92-5b1c-4752-ab0a-4958a0064934", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1499,238 +1498,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:30 GMT + - Wed, 31 Dec 2025 14:38:19 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts/Files/targetUpdateShortcut - Pragma: - - no-cache - RequestId: - - 2be3bdd0-e2f6-4057-b912-d4a639cbe7d1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: 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": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", - "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: - - '1587' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 28 Dec 2025 13:52:31 GMT - Pragma: - - no-cache - RequestId: - - 9a72cb19-5a26-4004-8aca-c8bafa3b344d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: 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/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items - response: - body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "375db029-c6ea-4745-ae3a-1dae01116aac", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '357' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 28 Dec 2025 13:52:31 GMT - Pragma: - - no-cache - RequestId: - - 607660bf-33b2-46e5-8d8c-57c9b17afd44 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: 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: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/be810b42-58ab-4488-8f30-5aba4acfcb35/Files/targetUpdateShortcut - response: - body: - string: '' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Headers: - - '*' - Access-Control-Allow-Methods: - - '*' - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - '*,Authorization' - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Sun, 28 Dec 2025 13:52:32 GMT - ETag: - - '"0x8DE46185153D998"' - Last-Modified: - - Sun, 28 Dec 2025 13:52:19 GMT - Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - x-ms-onelake-shortcut-path: - - 'true' - x-ms-resource-type: - - directory - status: - code: 200 - message: 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/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts/Files/targetUpdateShortcut - response: - body: - string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", - "itemId": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "path": "Files"}}}' - headers: - Access-Control-Allow-Headers: - - '*' - Access-Control-Allow-Methods: - - '*' - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - '*,Authorization' - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '195' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 28 Dec 2025 13:52:32 GMT + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut Pragma: - no-cache RequestId: - - c8e70ccb-5f26-4d08-a11c-a36af68aa2ba + - b5a270cc-fd5c-4593-be35-1d18f5233b34 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1764,7 +1542,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1775,15 +1553,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:32 GMT + - Wed, 31 Dec 2025 14:38:19 GMT Pragma: - no-cache RequestId: - - 9a5ce19a-b8e1-49b2-a26c-48e2501f91ac + - ac572424-a791-42c1-b0f2-50e753dcdacd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1811,21 +1589,21 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "375db029-c6ea-4745-ae3a-1dae01116aac", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1834,15 +1612,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '357' + - '384' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:32 GMT + - Wed, 31 Dec 2025 14:38:20 GMT Pragma: - no-cache RequestId: - - 0b3fe6ef-62f4-463d-9d15-e4545d8aec93 + - 16a3bc8d-3a6b-4f6a-a16c-3d92b9580aec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1870,7 +1648,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/be810b42-58ab-4488-8f30-5aba4acfcb35/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut response: body: string: '' @@ -1890,11 +1668,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:34 GMT + - Wed, 31 Dec 2025 14:38:20 GMT ETag: - - '"0x8DE46185153D998"' + - '"0x8DE487A3856A03C"' Last-Modified: - - Sun, 28 Dec 2025 13:52:19 GMT + - Wed, 31 Dec 2025 14:38:10 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -1922,12 +1700,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts/Files/targetUpdateShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", - "itemId": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", + "itemId": "56107b92-5b1c-4752-ab0a-4958a0064934", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1943,15 +1721,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:35 GMT + - Wed, 31 Dec 2025 14:38:21 GMT Pragma: - no-cache RequestId: - - a5358e2f-60e8-41b8-989e-6284f1546e05 + - 7fc26f1c-63ff-4589-bfa2-1b662c13b9a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1985,7 +1763,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1996,15 +1774,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:35 GMT + - Wed, 31 Dec 2025 14:38:21 GMT Pragma: - no-cache RequestId: - - 31ff226d-eda3-4fbf-9c4e-9585fc45004d + - 8d7780b9-a403-459e-823f-0479b0192c17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2032,21 +1810,23 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "375db029-c6ea-4745-ae3a-1dae01116aac", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2055,15 +1835,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '357' + - '408' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:35 GMT + - Wed, 31 Dec 2025 14:38:21 GMT Pragma: - no-cache RequestId: - - 58b385da-d7d1-4ba3-a711-999a20629f8f + - d1a8327c-6758-4a53-841d-f1e1236f14d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2091,7 +1871,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/be810b42-58ab-4488-8f30-5aba4acfcb35/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut response: body: string: '' @@ -2111,11 +1891,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:35 GMT + - Wed, 31 Dec 2025 14:38:23 GMT ETag: - - '"0x8DE46185153D998"' + - '"0x8DE487A3856A03C"' Last-Modified: - - Sun, 28 Dec 2025 13:52:19 GMT + - Wed, 31 Dec 2025 14:38:10 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -2145,7 +1925,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35/shortcuts/Files/targetUpdateShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut response: body: string: '' @@ -2168,11 +1948,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:52:36 GMT + - Wed, 31 Dec 2025 14:38:25 GMT Pragma: - no-cache RequestId: - - a5ee3f51-3154-4a53-9785-82b8e2a16754 + - b79a7a47-69a0-4072-a6bf-5a781c0267b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -2206,7 +1986,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -2217,15 +1997,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:37 GMT + - Wed, 31 Dec 2025 14:38:25 GMT Pragma: - no-cache RequestId: - - c2763e6c-b80c-4b60-813b-fd6a2c56e985 + - b53c4432-d224-4911-bdfb-78d8cc068313 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2253,21 +2033,23 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "375db029-c6ea-4745-ae3a-1dae01116aac", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8", "type": "Lakehouse", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2276,15 +2058,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '357' + - '408' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:37 GMT + - Wed, 31 Dec 2025 14:38:25 GMT Pragma: - no-cache RequestId: - - 3a845393-f6c0-4a00-bd7d-9e81d3b0d53a + - 98d73a05-949d-4280-b060-d791b6e5fd58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2314,7 +2096,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/a3f96756-5f52-4ecf-a1cf-1d6eee2eb8d8 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/56107b92-5b1c-4752-ab0a-4958a0064934 response: body: string: '' @@ -2330,11 +2112,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:52:38 GMT + - Wed, 31 Dec 2025 14:38:25 GMT Pragma: - no-cache RequestId: - - 472ae224-afec-4ecf-ae87-442094ec989a + - 30dfb59d-5671-423b-a0db-b16f90f00425 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2366,7 +2148,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -2377,15 +2159,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:38 GMT + - Wed, 31 Dec 2025 14:38:25 GMT Pragma: - no-cache RequestId: - - 54ff26a7-d4ef-48d0-84c3-e2b0be781ebc + - ab76785d-ed48-4128-ac4e-61d3ffc7bf07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2413,17 +2195,19 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "36fccf43-19a6-4c6d-8488-c7fffd855a34", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2432,15 +2216,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '295' + - '341' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:38 GMT + - Wed, 31 Dec 2025 14:38:27 GMT Pragma: - no-cache RequestId: - - f5957a55-c36f-46a5-9c08-dd51b262b934 + - 2a65b8cd-3b7b-4497-a543-126505a4e46e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2470,7 +2254,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/6eb15e4a-f40c-4ddb-965a-e35d8ec2ff0d + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/6d583dee-3995-4593-9920-f58526b47dd5 response: body: string: '' @@ -2486,11 +2270,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:52:39 GMT + - Wed, 31 Dec 2025 14:38:27 GMT Pragma: - no-cache RequestId: - - 872cf9e1-bfd6-4c6f-86e4-7f55599a270b + - 3f013c3f-92da-430b-a24e-a2886849d90e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2522,7 +2306,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -2533,15 +2317,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1587' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:38 GMT + - Wed, 31 Dec 2025 14:38:28 GMT Pragma: - no-cache RequestId: - - ccbb1192-af6d-427b-9416-8a73da051f7c + - b4ab6e37-823e-4646-8414-8defd27f1793 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2569,13 +2353,15 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "ffe3fbb9-93d1-460b-931d-4d05f555b07a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}, - {"id": "be810b42-58ab-4488-8f30-5aba4acfcb35", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "c0c700b7-1584-44c0-b3a3-28e6c3caa9b1"}]}' + 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", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2584,15 +2370,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '276' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 28 Dec 2025 13:52:40 GMT + - Wed, 31 Dec 2025 14:38:27 GMT Pragma: - no-cache RequestId: - - 5354b6d7-f128-4db7-93fa-b3d330145444 + - d16ef835-af07-4bcf-a196-dd7e17bb1250 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2622,7 +2408,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c0c700b7-1584-44c0-b3a3-28e6c3caa9b1/items/be810b42-58ab-4488-8f30-5aba4acfcb35 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47 response: body: string: '' @@ -2638,11 +2424,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 28 Dec 2025 13:52:39 GMT + - Wed, 31 Dec 2025 14:38:28 GMT Pragma: - no-cache RequestId: - - 62dbcd96-f8df-46a8-9b9e-e3db6142e8f5 + - 4031f6d4-02d4-4b13-a138-13b28cdafc93 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 d3b5ac01..2306bedf 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:38 GMT + - Wed, 31 Dec 2025 14:37:14 GMT Pragma: - no-cache RequestId: - - af425ec6-9756-41c1-be90-fc14c6f9c77e + - 60942e6a-0a43-45b4-ba2b-883de0a1f45a 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.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +77,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:38 GMT + - Wed, 31 Dec 2025 14:37:15 GMT Pragma: - no-cache RequestId: - - 6015f4a5-d754-497c-9a8f-530575788be9 + - 2cd8bfa5-eb90-46bd-b80c-3f47804fbacd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,13 +111,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -126,15 +126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:39 GMT + - Wed, 31 Dec 2025 14:37:15 GMT Pragma: - no-cache RequestId: - - 77b4cfec-6d4c-41cb-872b-5a8c48ffe67b + - e309f08b-7f74-4259-b45b-67b341cee3e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,14 +163,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", + string: '{"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -179,17 +179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:41 GMT + - Wed, 31 Dec 2025 14:37:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 82c590c6-48d7-4f19-bb5f-2865ebe7882c + - 8749b321-a1ae-4663-a16a-b4ef3af93d66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -215,13 +215,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -232,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:41 GMT + - Wed, 31 Dec 2025 14:37:18 GMT Pragma: - no-cache RequestId: - - 687aa397-57d5-46d4-ab1d-ca0ebb99bd23 + - 6a8623f2-dd49-498e-a015-a5525e6ee30e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,15 +266,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -287,11 +287,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:41 GMT + - Wed, 31 Dec 2025 14:37:19 GMT Pragma: - no-cache RequestId: - - 01551974-ccb3-4bcb-9029-b345832996fe + - 7807518f-9e15-4752-aa77-8afb9f44176d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -317,15 +317,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -338,11 +338,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:42 GMT + - Wed, 31 Dec 2025 14:37:19 GMT Pragma: - no-cache RequestId: - - 2b824d0c-b91e-4ccb-98fc-f79b3cfd8afe + - c63ed407-d21a-47c0-b1d4-9152413a755f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -371,14 +371,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses response: body: - string: '{"id": "2ae03e18-153e-4981-a445-ccd6fab0212e", "type": "Lakehouse", + string: '{"id": "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "type": "Lakehouse", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}' + "81065bd8-e334-4715-b170-dedb4cd514e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -387,17 +387,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:44 GMT + - Wed, 31 Dec 2025 14:37:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 461fa638-888c-439c-b75b-e53246acb2aa + - 1f148be2-3688-4aa2-ba4c-97786da97b63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -423,13 +423,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -440,15 +440,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:45 GMT + - Wed, 31 Dec 2025 14:37:23 GMT Pragma: - no-cache RequestId: - - cd340caa-a749-4f13-bf1d-7bc0ad45043a + - 6ead2b5c-eb18-4fd0-96c5-efe379993244 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -474,17 +474,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "2ae03e18-153e-4981-a445-ccd6fab0212e", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -493,15 +493,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '274' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:45 GMT + - Wed, 31 Dec 2025 14:37:23 GMT Pragma: - no-cache RequestId: - - 861545a0-ddf8-40d8-896d-8e5c442f5ed1 + - e0e8481a-54bf-418d-972c-0d4650149758 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -527,9 +527,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/f016a7de-afee-43d3-a0ab-4023cd91ca7e/d157a7f0-75f1-417c-a70c-813f2eeef752/Files/testShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/890f09d7-ced5-41c1-9a1f-8c28015e7f8a/Files/testShortcut response: body: string: '' @@ -543,7 +543,7 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Wed, 26 Nov 2025 16:12:47 GMT + - Wed, 31 Dec 2025 14:37:27 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -569,9 +569,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/f016a7de-afee-43d3-a0ab-4023cd91ca7e/d157a7f0-75f1-417c-a70c-813f2eeef752/Files/testShortcut.Shortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/890f09d7-ced5-41c1-9a1f-8c28015e7f8a/Files/testShortcut.Shortcut response: body: string: '' @@ -585,7 +585,7 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Wed, 26 Nov 2025 16:12:49 GMT + - Wed, 31 Dec 2025 14:37:28 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -611,13 +611,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -628,15 +628,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:50 GMT + - Wed, 31 Dec 2025 14:37:29 GMT Pragma: - no-cache RequestId: - - 8fd62570-a65b-447b-8448-212ab67c5738 + - ed3bff6a-f62f-4205-a12e-d0991d6e9daa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -662,21 +662,21 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "f79b233a-739c-49da-afeb-a7ce37ff9717", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "e89a7ee8-71ba-4653-9a98-c64614e6aebe", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "2ae03e18-153e-4981-a445-ccd6fab0212e", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "2d8e0e5a-6a95-4b29-9e77-d5ea5fe28c33", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7505ac4a-466c-4479-b40f-d08ca7d2ef65", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -685,15 +685,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '342' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:50 GMT + - Wed, 31 Dec 2025 14:37:30 GMT Pragma: - no-cache RequestId: - - e13c7ac1-cb7a-4cd6-89b1-2d5af96e6c80 + - d4b01ab0-a870-4e7e-8b32-003e275e848b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -709,7 +709,7 @@ interactions: message: OK - request: body: '{"path": "Files", "name": "testShortcut", "target": {"oneLake": {"workspaceId": - "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "itemId": "2ae03e18-153e-4981-a445-ccd6fab0212e", + "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "path": "Files"}}}' headers: Accept: @@ -723,14 +723,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/d157a7f0-75f1-417c-a70c-813f2eeef752/shortcuts?shortcutConflictPolicy=GenerateUniqueName + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/890f09d7-ced5-41c1-9a1f-8c28015e7f8a/shortcuts?shortcutConflictPolicy=GenerateUniqueName response: body: string: '{"name": "testShortcut", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "itemId": - "2ae03e18-153e-4981-a445-ccd6fab0212e", "path": "Files"}}}' + "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": + "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -746,17 +746,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '189' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:51 GMT + - Wed, 31 Dec 2025 14:37:31 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/d157a7f0-75f1-417c-a70c-813f2eeef752/shortcuts/Files/testShortcut + - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/890f09d7-ced5-41c1-9a1f-8c28015e7f8a/shortcuts/Files/testShortcut Pragma: - no-cache RequestId: - - 1d10be26-3363-4683-b721-ea4e579d6ead + - 20d9a9cf-ff94-4ff4-b08f-91ecc12df08f Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -784,13 +784,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -801,15 +801,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:52 GMT + - Wed, 31 Dec 2025 14:37:31 GMT Pragma: - no-cache RequestId: - - 1c27a0b8-2276-4d5c-a9f7-bffda35310b8 + - 4d8f0d40-72e4-424c-a4e1-87d6eb12c406 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -835,21 +835,21 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "f79b233a-739c-49da-afeb-a7ce37ff9717", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "e89a7ee8-71ba-4653-9a98-c64614e6aebe", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "2ae03e18-153e-4981-a445-ccd6fab0212e", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "2d8e0e5a-6a95-4b29-9e77-d5ea5fe28c33", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7505ac4a-466c-4479-b40f-d08ca7d2ef65", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -858,15 +858,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '342' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:51 GMT + - Wed, 31 Dec 2025 14:37:31 GMT Pragma: - no-cache RequestId: - - 80791c82-a46e-4140-b777-9b4774df1285 + - a424ef7b-6613-4ae8-99c9-71f7eae6ee78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -892,9 +892,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/f016a7de-afee-43d3-a0ab-4023cd91ca7e/d157a7f0-75f1-417c-a70c-813f2eeef752/Files/testShortcut + uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/890f09d7-ced5-41c1-9a1f-8c28015e7f8a/Files/testShortcut response: body: string: '' @@ -914,11 +914,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:53 GMT + - Wed, 31 Dec 2025 14:37:34 GMT ETag: - - '"0x8DE2D06A176EB28"' + - '"0x8DE487A1ADF2810"' Last-Modified: - - Wed, 26 Nov 2025 16:12:43 GMT + - Wed, 31 Dec 2025 14:37:20 GMT Server: - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: @@ -944,13 +944,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -961,15 +961,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:54 GMT + - Wed, 31 Dec 2025 14:37:34 GMT Pragma: - no-cache RequestId: - - 95270b16-7296-44a5-a5f1-6a559c8e7592 + - 5af4e2e9-d0c8-4e05-a449-c7721f52e58b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -995,21 +995,21 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "f79b233a-739c-49da-afeb-a7ce37ff9717", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "e89a7ee8-71ba-4653-9a98-c64614e6aebe", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "2ae03e18-153e-4981-a445-ccd6fab0212e", "type": "Lakehouse", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "2d8e0e5a-6a95-4b29-9e77-d5ea5fe28c33", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7505ac4a-466c-4479-b40f-d08ca7d2ef65", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "7fcd70b8-c565-4d53-b5b6-6dc0215b5069", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1018,15 +1018,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '342' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:54 GMT + - Wed, 31 Dec 2025 14:37:35 GMT Pragma: - no-cache RequestId: - - 73b8ad71-a471-4350-95ad-0d6f4ca4378d + - 7b8088c2-7e50-4ebd-97ba-657125a6c47d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1054,9 +1054,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/2ae03e18-153e-4981-a445-ccd6fab0212e + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/7fcd70b8-c565-4d53-b5b6-6dc0215b5069 response: body: string: '' @@ -1072,11 +1072,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:12:55 GMT + - Wed, 31 Dec 2025 14:37:35 GMT Pragma: - no-cache RequestId: - - 94a7d0b5-4853-4522-bbf2-79e9eadc3e2b + - 11ae2768-fe9d-407c-ac18-a61c78d0e0ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1102,13 +1102,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1119,15 +1119,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:55 GMT + - Wed, 31 Dec 2025 14:37:35 GMT Pragma: - no-cache RequestId: - - a7bda65c-dca9-46f4-82a6-897153e54f95 + - eb1018b7-f0d8-406a-9fde-db3b53f82a33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1153,17 +1153,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items response: body: - string: '{"value": [{"id": "e770320f-c84c-44a1-88bb-7208fe9e6c5e", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "f79b233a-739c-49da-afeb-a7ce37ff9717", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}, - {"id": "d157a7f0-75f1-417c-a70c-813f2eeef752", "type": "Lakehouse", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "f016a7de-afee-43d3-a0ab-4023cd91ca7e"}]}' + string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "2d8e0e5a-6a95-4b29-9e77-d5ea5fe28c33", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, + {"id": "890f09d7-ced5-41c1-9a1f-8c28015e7f8a", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1172,15 +1172,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '276' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:12:56 GMT + - Wed, 31 Dec 2025 14:37:36 GMT Pragma: - no-cache RequestId: - - 04a13553-fa2e-4608-b8f7-fe2202ce7c46 + - 92821584-ea8b-4150-b46d-005d659778cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1208,9 +1208,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/items/d157a7f0-75f1-417c-a70c-813f2eeef752 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/890f09d7-ced5-41c1-9a1f-8c28015e7f8a response: body: string: '' @@ -1226,11 +1226,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 26 Nov 2025 16:12:56 GMT + - Wed, 31 Dec 2025 14:37:37 GMT Pragma: - no-cache RequestId: - - 9378de87-75dd-4b26-93d7-430441281129 + - fb847e43-2876-450c-b4a0-3c53a322ee5a 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 a9c1819b..badd5915 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:00 GMT + - Wed, 31 Dec 2025 14:32:01 GMT Pragma: - no-cache RequestId: - - 5934300c-563f-449b-bcfc-ccc21f648a0c + - 66a343bc-d090-4be4-80d1-80d6881cc5c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -79,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:01 GMT + - Wed, 31 Dec 2025 14:32:02 GMT RequestId: - - d6b69971-b999-4050-907b-d18c18246ec4 + - a1eb1bdd-c30c-4f06-806e-58c325df43c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -89,7 +89,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: @@ -107,9 +107,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -124,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:01 GMT + - Wed, 31 Dec 2025 14:32:02 GMT RequestId: - - d0b2d95a-86d4-4c9d-ae0c-82bec87d59a1 + - 1e18b17f-8c14-479c-b276-1ae2764ed481 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,7 +134,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,12 +156,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: - string: '{"id": "aa652287-96e1-4562-9f5a-3262134b8d61", "type": "Workspace", + string: '{"id": "017dd1ac-17f8-48b4-92a3-042ac5d79610", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 1}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -173,9 +173,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:02 GMT + - Wed, 31 Dec 2025 14:32:03 GMT RequestId: - - 68e199d8-aede-4a15-a00e-1a8194535c25 + - 4324d756-9adc-4f7a-ab68-82923ff654f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -183,7 +183,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: @@ -201,13 +201,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -218,15 +218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:02 GMT + - Wed, 31 Dec 2025 14:32:03 GMT Pragma: - no-cache RequestId: - - 62c72184-f9ad-4c56-b07e-15d7fb2e4b61 + - 987ebdd4-6f67-4074-8da3-9aa947b682c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -234,7 +234,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: @@ -252,15 +252,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "aa652287-96e1-4562-9f5a-3262134b8d61", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "017dd1ac-17f8-48b4-92a3-042ac5d79610", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 1}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -272,9 +272,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:02 GMT + - Wed, 31 Dec 2025 14:32:04 GMT RequestId: - - ffc5c627-ccf2-4191-9c00-1f319c8a853b + - 8b48489f-4475-45ad-af5e-126fcb8e9d60 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -282,7 +282,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: @@ -300,13 +300,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -317,15 +317,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:03 GMT + - Wed, 31 Dec 2025 14:32:03 GMT Pragma: - no-cache RequestId: - - e2465853-9166-4663-b510-2e1d465d1836 + - 8ef143f1-53a7-4a3d-b98f-0e5cd4121ea6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -333,7 +333,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: @@ -351,15 +351,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "aa652287-96e1-4562-9f5a-3262134b8d61", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "017dd1ac-17f8-48b4-92a3-042ac5d79610", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 1}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -371,9 +371,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:02 GMT + - Wed, 31 Dec 2025 14:32:04 GMT RequestId: - - d8855c95-6c5d-479e-acea-b51ac021b303 + - 389aae82-1a8f-4443-b796-cd9e59111fca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -381,7 +381,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: @@ -401,9 +401,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/aa652287-96e1-4562-9f5a-3262134b8d61 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/017dd1ac-17f8-48b4-92a3-042ac5d79610 response: body: string: '' @@ -415,9 +415,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:18:03 GMT + - Wed, 31 Dec 2025 14:32:05 GMT RequestId: - - a5a25ea2-3230-4945-8327-ccf7f9783248 + - eeb53756-a807-4de5-85f8-f86e5fde66b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -425,7 +425,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/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 f1210fca..33648aca 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 @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:07 GMT + - Wed, 31 Dec 2025 14:32:11 GMT Pragma: - no-cache RequestId: - - bb770b3f-6a0e-413b-8ab4-03094ed98139 + - 1443515c-f541-4f17-a2bc-7f9a820366bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -79,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:08 GMT + - Wed, 31 Dec 2025 14:32:11 GMT RequestId: - - 2c6af99c-b7d2-4ec9-8caf-446723e462a2 + - 3aff1b4e-b021-488b-b8fb-709792f3b34e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -89,7 +89,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: @@ -107,9 +107,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -124,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:08 GMT + - Wed, 31 Dec 2025 14:32:12 GMT RequestId: - - 2176e300-4125-4ca5-9866-158936d8be52 + - 9b6ff5a9-945c-4f75-877b-7b019031144d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,7 +134,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,12 +156,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: - string: '{"id": "83157df1-7cbc-4be4-a458-0b74f6080748", "type": "Workspace", + string: '{"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -173,9 +173,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:09 GMT + - Wed, 31 Dec 2025 14:32:12 GMT RequestId: - - 51f1034a-593a-4c4a-a172-fd7d923f8404 + - 77a91a8a-b19b-4775-88d8-797edb5e797c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -183,7 +183,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: @@ -201,13 +201,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -218,15 +218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:09 GMT + - Wed, 31 Dec 2025 14:32:12 GMT Pragma: - no-cache RequestId: - - b060f8f9-b106-4265-8630-0034313a47fe + - 67e5b716-d3ba-4f15-a945-108afe9f35b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -234,7 +234,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: @@ -252,15 +252,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "83157df1-7cbc-4be4-a458-0b74f6080748", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -272,9 +272,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:09 GMT + - Wed, 31 Dec 2025 14:32:12 GMT RequestId: - - 83f72a87-c59c-4a37-89c5-51b111ebc989 + - b095cdad-182a-4aa4-9764-5737a46819f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -282,7 +282,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: @@ -300,12 +300,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/83157df1-7cbc-4be4-a458-0b74f6080748 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/bf02ca4d-9f7d-4dec-a366-e8930cf8aeba response: body: - string: '{"id": "83157df1-7cbc-4be4-a458-0b74f6080748", "type": "Workspace", + string: '{"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -317,9 +317,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:09 GMT + - Wed, 31 Dec 2025 14:32:13 GMT RequestId: - - b4e2be3e-fc54-4bf6-a1c8-c1ad74694600 + - 4645e20a-54e0-4f6c-ab09-c5a405f6b05f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -327,16 +327,14 @@ 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: '{"name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' + body: '{"autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}}' headers: Accept: - '*/*' @@ -345,16 +343,16 @@ interactions: Connection: - keep-alive Content-Length: - - '267' + - '106' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/83157df1-7cbc-4be4-a458-0b74f6080748 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/bf02ca4d-9f7d-4dec-a366-e8930cf8aeba response: body: - string: '{"id": "83157df1-7cbc-4be4-a458-0b74f6080748", "type": "Workspace", + string: '{"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -366,9 +364,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:09 GMT + - Wed, 31 Dec 2025 14:32:13 GMT RequestId: - - 4d5acfab-f60c-4093-a1a5-ee29d0362fdb + - 32999cde-c3c1-43a2-9f09-106c6c2101e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,7 +374,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: @@ -394,13 +392,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -411,15 +409,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:09 GMT + - Wed, 31 Dec 2025 14:32:13 GMT Pragma: - no-cache RequestId: - - c0ec8230-620c-43ce-833e-eec89eeeccc4 + - e991c685-680f-4b4c-9399-01ed0455746f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -427,7 +425,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: @@ -445,15 +443,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "83157df1-7cbc-4be4-a458-0b74f6080748", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -465,9 +463,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:10 GMT + - Wed, 31 Dec 2025 14:32:14 GMT RequestId: - - f693db50-057a-4af5-b69b-b32ba1c6f44e + - fb634716-7fed-49d3-970b-c83431945019 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -475,7 +473,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: @@ -493,12 +491,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/83157df1-7cbc-4be4-a458-0b74f6080748 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/bf02ca4d-9f7d-4dec-a366-e8930cf8aeba response: body: - string: '{"id": "83157df1-7cbc-4be4-a458-0b74f6080748", "type": "Workspace", + string: '{"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -510,9 +508,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:10 GMT + - Wed, 31 Dec 2025 14:32:15 GMT RequestId: - - 1a59aa7e-9290-4964-ae62-d8c0ac77f07e + - f5c26e18-4779-4294-9879-52a0ccef75c5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +518,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: @@ -538,13 +536,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -555,15 +553,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:10 GMT + - Wed, 31 Dec 2025 14:32:14 GMT Pragma: - no-cache RequestId: - - 5650350e-f173-498c-b008-5898e6f2384f + - 7868612d-12f5-43cf-a280-a6a7ec6e07f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -571,7 +569,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: @@ -589,15 +587,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "83157df1-7cbc-4be4-a458-0b74f6080748", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "bf02ca4d-9f7d-4dec-a366-e8930cf8aeba", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -609,9 +607,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:10 GMT + - Wed, 31 Dec 2025 14:32:15 GMT RequestId: - - 7b6e7af5-155e-4dba-85f6-e74e310c3022 + - 3af72a43-8a80-467f-b367-ef60cf509d8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -619,7 +617,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: @@ -639,9 +637,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/83157df1-7cbc-4be4-a458-0b74f6080748 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/bf02ca4d-9f7d-4dec-a366-e8930cf8aeba response: body: string: '' @@ -653,9 +651,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:18:10 GMT + - Wed, 31 Dec 2025 14:32:16 GMT RequestId: - - 5b5a3387-dff9-4a92-949e-99ea366b8cbd + - fd9ec19a-1f56-4cab-90d8-3b8369dd29c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -663,7 +661,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/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 8c56fc08..497eb118 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:14 GMT + - Wed, 31 Dec 2025 14:32:21 GMT Pragma: - no-cache RequestId: - - dc966099-91a0-459f-ab7b-38e64c8d6408 + - 1411b4f8-b702-4ccb-b8f5-6c9a9297c1bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -79,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:14 GMT + - Wed, 31 Dec 2025 14:32:21 GMT RequestId: - - ce92df3d-8699-43c1-8a3d-9d3f792b7558 + - aa6f2670-8558-49db-85c0-d9d2ec6bf454 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -89,7 +89,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: @@ -107,9 +107,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -124,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:14 GMT + - Wed, 31 Dec 2025 14:32:21 GMT RequestId: - - ae202ae3-bd15-4c11-9c1c-c4fef5fda0c5 + - 63f50e1f-6bd9-4642-871d-f60d0dde1fd2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,7 +134,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,12 +156,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: - string: '{"id": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", "type": "Workspace", + string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -173,9 +173,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:14 GMT + - Wed, 31 Dec 2025 14:32:21 GMT RequestId: - - e29e5519-518f-4067-8076-644cae0b61dd + - 103ccd84-6f10-46db-beef-5d15be070904 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -183,7 +183,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: @@ -201,13 +201,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -218,15 +218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:15 GMT + - Wed, 31 Dec 2025 14:32:22 GMT Pragma: - no-cache RequestId: - - f6045cb5-ecfd-488a-9b85-5b79254a4190 + - 2787a89f-90fd-4b49-8c72-918e8e005e78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -234,7 +234,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: @@ -252,15 +252,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -272,9 +272,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:15 GMT + - Wed, 31 Dec 2025 14:32:23 GMT RequestId: - - 4e386bde-19d5-41a7-ac0b-7206ecf66dad + - a4c575d9-956c-4f48-8be6-08285f0d5dd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -282,7 +282,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: @@ -300,12 +300,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/e77a0a0d-0c03-464a-a7e8-44590cf9581c + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d response: body: - string: '{"id": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", "type": "Workspace", + string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -317,9 +317,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:15 GMT + - Wed, 31 Dec 2025 14:32:23 GMT RequestId: - - 8f6f2c89-fc02-469f-8342-962374545887 + - c2f271b2-275a-4e90-a3c1-86060a424461 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -327,16 +327,14 @@ 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: '{"name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": - {"enabled": false}}' + body: '{"autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}}' headers: Accept: - '*/*' @@ -345,16 +343,16 @@ interactions: Connection: - keep-alive Content-Length: - - '267' + - '106' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/e77a0a0d-0c03-464a-a7e8-44590cf9581c + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d response: body: - string: '{"id": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", "type": "Workspace", + string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -366,9 +364,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:15 GMT + - Wed, 31 Dec 2025 14:32:24 GMT RequestId: - - 953f90df-b21b-4c89-8d18-9f50d135e1de + - 8c083d52-db15-4b3b-85a9-bb99217fe8ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,7 +374,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: @@ -394,13 +392,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -411,15 +409,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:16 GMT + - Wed, 31 Dec 2025 14:32:24 GMT Pragma: - no-cache RequestId: - - 0b72b285-fe4e-44c3-9b2a-f7f59ecc5f02 + - 9b2150be-de64-4977-963f-309139912746 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -427,7 +425,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: @@ -445,15 +443,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -465,9 +463,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:15 GMT + - Wed, 31 Dec 2025 14:32:24 GMT RequestId: - - e3f7e0cc-f5ad-47b3-9f9e-37f702d45073 + - 1f4e50fe-7055-4628-84bc-aa8e890822c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -475,7 +473,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: @@ -493,12 +491,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/e77a0a0d-0c03-464a-a7e8-44590cf9581c + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d response: body: - string: '{"id": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", "type": "Workspace", + string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -510,9 +508,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:16 GMT + - Wed, 31 Dec 2025 14:32:25 GMT RequestId: - - 2f690fbe-f06b-4941-9f28-a3112d36af2c + - 17c8952f-01ac-4b17-a663-bdaab2e34931 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +518,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: @@ -538,13 +536,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -555,15 +553,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:16 GMT + - Wed, 31 Dec 2025 14:32:26 GMT Pragma: - no-cache RequestId: - - d009a746-08ec-40be-93ad-9eb262baa8b9 + - 054afa9a-5a5f-44f6-9868-07d92b4c9a81 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -571,7 +569,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: @@ -589,15 +587,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "e77a0a0d-0c03-464a-a7e8-44590cf9581c", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -609,9 +607,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:17 GMT + - Wed, 31 Dec 2025 14:32:26 GMT RequestId: - - 3cd88014-5c39-4c36-9067-56f012db10b2 + - b7001fac-364f-43b4-a58b-2288b28e35da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -619,7 +617,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: @@ -639,9 +637,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/e77a0a0d-0c03-464a-a7e8-44590cf9581c + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d response: body: string: '' @@ -653,9 +651,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:18:16 GMT + - Wed, 31 Dec 2025 14:32:26 GMT RequestId: - - b63ae76a-41b1-4ea2-9c04-77d164f5f959 + - 5b6d815d-0b67-4b55-b310-85a50e4860c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -663,7 +661,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/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 af081294..03018ae3 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:11 GMT + - Wed, 31 Dec 2025 14:32:15 GMT Pragma: - no-cache RequestId: - - 21dba923-db77-4294-b1a0-2968f8d455cd + - b545da1e-7794-4ca4-9caf-cdb4f0b5af8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -79,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:11 GMT + - Wed, 31 Dec 2025 14:32:16 GMT RequestId: - - c0d121b8-583d-47d8-98e6-11d301c059e5 + - b7e695b5-3838-4001-a07e-248c0664fb8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -89,7 +89,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: @@ -107,9 +107,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -124,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:11 GMT + - Wed, 31 Dec 2025 14:32:16 GMT RequestId: - - 5b55956e-1610-44ec-9416-c664ab27521c + - c837a585-1839-41bc-9428-1ae141c507e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,7 +134,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,12 +156,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: - string: '{"id": "fe27ad2f-d58e-4988-b471-4466727d9ee9", "type": "Workspace", + string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -173,9 +173,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:12 GMT + - Wed, 31 Dec 2025 14:32:16 GMT RequestId: - - b2f9e123-f1bd-470b-81ee-2da8ced86695 + - 84b791eb-76dc-4936-a940-3b1ad9d2e794 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -183,7 +183,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: @@ -201,13 +201,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -218,15 +218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:12 GMT + - Wed, 31 Dec 2025 14:32:17 GMT Pragma: - no-cache RequestId: - - 37948752-8b4e-4c66-95ba-a617f41a1ccf + - b5ec79cd-b7ff-4e52-bdc2-67dd7f50a6ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -234,7 +234,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: @@ -252,15 +252,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "fe27ad2f-d58e-4988-b471-4466727d9ee9", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -272,9 +272,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:12 GMT + - Wed, 31 Dec 2025 14:32:18 GMT RequestId: - - 0f6ecf87-f4f5-447f-b7d7-3c246e1ed066 + - d489f4c1-6d76-4229-b418-aae59615e7d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -282,7 +282,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: @@ -300,12 +300,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/fe27ad2f-d58e-4988-b471-4466727d9ee9 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b response: body: - string: '{"id": "fe27ad2f-d58e-4988-b471-4466727d9ee9", "type": "Workspace", + string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -317,9 +317,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:12 GMT + - Wed, 31 Dec 2025 14:32:17 GMT RequestId: - - dc4c94bb-81aa-41d6-94fe-5d1a36772d32 + - 84d51624-4d1b-4db4-a5f8-dfeb75be4b44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -327,16 +327,14 @@ 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: '{"name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' + body: '{"autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}}' headers: Accept: - '*/*' @@ -345,16 +343,16 @@ interactions: Connection: - keep-alive Content-Length: - - '267' + - '106' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/fe27ad2f-d58e-4988-b471-4466727d9ee9 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b response: body: - string: '{"id": "fe27ad2f-d58e-4988-b471-4466727d9ee9", "type": "Workspace", + string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -366,9 +364,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:12 GMT + - Wed, 31 Dec 2025 14:32:18 GMT RequestId: - - 7b1a9320-b8b8-4f88-938b-def94c38ab30 + - 8cae6c11-828a-428f-8e9e-f50b0ccf2e93 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,7 +374,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: @@ -394,13 +392,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -411,15 +409,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:13 GMT + - Wed, 31 Dec 2025 14:32:18 GMT Pragma: - no-cache RequestId: - - 114a4019-c83e-482d-960f-30e5711f17a3 + - 06d0f0d4-d553-4440-9e9e-b0608b6f1aad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -427,7 +425,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: @@ -445,15 +443,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "fe27ad2f-d58e-4988-b471-4466727d9ee9", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -465,9 +463,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:13 GMT + - Wed, 31 Dec 2025 14:32:18 GMT RequestId: - - 96a45f6e-f978-4044-9e80-f69a4ceef164 + - 00c6e634-0dfb-4ce5-ba90-e18f7a499826 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -475,7 +473,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: @@ -493,12 +491,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/fe27ad2f-d58e-4988-b471-4466727d9ee9 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b response: body: - string: '{"id": "fe27ad2f-d58e-4988-b471-4466727d9ee9", "type": "Workspace", + string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -510,9 +508,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:13 GMT + - Wed, 31 Dec 2025 14:32:19 GMT RequestId: - - f0f42f59-c006-46cd-b451-601bc5c3c51f + - e7e6523d-f02c-4e36-8e74-750b1a25f461 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +518,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: @@ -538,13 +536,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -555,15 +553,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:14 GMT + - Wed, 31 Dec 2025 14:32:20 GMT Pragma: - no-cache RequestId: - - 86f8267c-9a7c-4a34-a10e-a6e9c69692ff + - 66dcec84-d948-46f1-91d9-08853aa81ea2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -571,7 +569,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: @@ -589,15 +587,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "fe27ad2f-d58e-4988-b471-4466727d9ee9", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -609,9 +607,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:13 GMT + - Wed, 31 Dec 2025 14:32:20 GMT RequestId: - - f250fbcf-b4fb-48a8-b0f6-b5951b7c7814 + - 61a1178d-2a71-4a88-96a9-ea7d8b97b5ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -619,7 +617,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: @@ -639,9 +637,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/fe27ad2f-d58e-4988-b471-4466727d9ee9 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b response: body: string: '' @@ -653,9 +651,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:18:13 GMT + - Wed, 31 Dec 2025 14:32:21 GMT RequestId: - - 18984258-80f3-49de-ba90-47ed8056073a + - 7daa7ac0-cb84-4043-9cfd-be080db269e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -663,7 +661,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/test_set_sparkpool_success[nodeSize-Medium].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[nodeSize-Medium].yaml index aa850e4a..de6bf3c2 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:04 GMT + - Wed, 31 Dec 2025 14:32:06 GMT Pragma: - no-cache RequestId: - - 7bb00396-02bb-4d65-b684-5cafabc98168 + - 5636d6dc-36b0-43e5-b795-13a9895157a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -79,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:04 GMT + - Wed, 31 Dec 2025 14:32:06 GMT RequestId: - - 2af7a71e-6d67-4714-a3bb-1278816c98a5 + - ccd5bd26-06c9-4c65-bcbb-0731a29fd9c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -89,7 +89,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: @@ -107,9 +107,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -124,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:04 GMT + - Wed, 31 Dec 2025 14:32:06 GMT RequestId: - - 6d23f865-4ddf-499e-b692-d681dd8512bd + - c949fb70-a96d-4d78-932d-95d034c2ae3e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,7 +134,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,12 +156,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools response: body: - string: '{"id": "14f05208-a45f-4543-b479-d343586021f2", "type": "Workspace", + string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -173,9 +173,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:05 GMT + - Wed, 31 Dec 2025 14:32:06 GMT RequestId: - - dce8287e-58a7-4121-bcb7-3f96e460d650 + - 3185345a-2e90-457f-80e1-7072e6aa5884 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -183,7 +183,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: @@ -201,13 +201,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -218,15 +218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:05 GMT + - Wed, 31 Dec 2025 14:32:07 GMT Pragma: - no-cache RequestId: - - b7ec5fd8-4723-4fb6-9c2e-1e6252234872 + - 3ebf6bbc-bd14-4ba6-a330-a423e3a36d34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -234,7 +234,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: @@ -252,15 +252,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "14f05208-a45f-4543-b479-d343586021f2", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -272,9 +272,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:05 GMT + - Wed, 31 Dec 2025 14:32:07 GMT RequestId: - - ef9dd7b2-7f46-40aa-8324-f9c79ff90757 + - 3c10877c-4e7c-4eb0-abcb-7da52bf1c1e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -282,7 +282,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: @@ -300,12 +300,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/14f05208-a45f-4543-b479-d343586021f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 response: body: - string: '{"id": "14f05208-a45f-4543-b479-d343586021f2", "type": "Workspace", + string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -317,9 +317,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:05 GMT + - Wed, 31 Dec 2025 14:32:07 GMT RequestId: - - c4588087-f0ed-473d-9eec-fdfcedc627e8 + - 9f5c3c64-5c0c-48f1-a3bd-844121adb7a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -327,16 +327,14 @@ 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: '{"name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' + body: '{"nodeSize": "Medium"}' headers: Accept: - '*/*' @@ -345,16 +343,16 @@ interactions: Connection: - keep-alive Content-Length: - - '268' + - '28' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/14f05208-a45f-4543-b479-d343586021f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 response: body: - string: '{"id": "14f05208-a45f-4543-b479-d343586021f2", "type": "Workspace", + string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -366,9 +364,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:05 GMT + - Wed, 31 Dec 2025 14:32:08 GMT RequestId: - - cb713871-924a-4083-bb22-257ad570ecd2 + - b347a82a-6087-42fa-b116-8a3062886939 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,7 +374,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: @@ -394,13 +392,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -411,15 +409,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:06 GMT + - Wed, 31 Dec 2025 14:32:09 GMT Pragma: - no-cache RequestId: - - 763daa40-8990-4126-a4de-05d4ee6a960f + - e86ab72e-1bf0-4055-b584-beb54e5f8f1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -427,7 +425,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: @@ -445,15 +443,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "14f05208-a45f-4543-b479-d343586021f2", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -465,9 +463,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:06 GMT + - Wed, 31 Dec 2025 14:32:09 GMT RequestId: - - 1e2b438e-c482-402f-ae7a-ec80b367a427 + - abb63c07-cb00-4c28-a54d-73245fda4d06 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -475,7 +473,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: @@ -493,12 +491,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/14f05208-a45f-4543-b479-d343586021f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 response: body: - string: '{"id": "14f05208-a45f-4543-b479-d343586021f2", "type": "Workspace", + string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -510,9 +508,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:06 GMT + - Wed, 31 Dec 2025 14:32:09 GMT RequestId: - - 3608aec8-4654-4ed8-a7ce-39ae5880d62a + - ba139f17-edac-459a-a2d6-4fd0b65d72bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +518,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: @@ -538,13 +536,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -555,15 +553,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:06 GMT + - Wed, 31 Dec 2025 14:32:09 GMT Pragma: - no-cache RequestId: - - 1c1bffb4-81e1-4363-83e8-8976bdfc23cd + - 323a1e88-b55c-441d-9590-7d9d5e26abe8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -571,7 +569,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: @@ -589,15 +587,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/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": "14f05208-a45f-4543-b479-d343586021f2", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -609,9 +607,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:07 GMT + - Wed, 31 Dec 2025 14:32:10 GMT RequestId: - - af24b74a-e467-413b-867b-db629a27c954 + - 3fcdf9c7-1fae-41cf-bf1a-b40c854a11da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -619,7 +617,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: @@ -639,9 +637,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d/spark/pools/14f05208-a45f-4543-b479-d343586021f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 response: body: string: '' @@ -653,9 +651,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:18:07 GMT + - Wed, 31 Dec 2025 14:32:11 GMT RequestId: - - c2c0872b-41b2-4403-b93d-498ab920ca47 + - 31edbf5e-ed5c-4449-b835-71ef65db7964 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -663,7 +661,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/test_set_workspace_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_invalid_query_failure.yaml index 79f4c51e..fa27d74f 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:10:12 GMT + - Wed, 31 Dec 2025 14:31:01 GMT Pragma: - no-cache RequestId: - - 672ea2ef-bfaa-4236-b2f3-5f70772aa394 + - 6a4b9401-17d1-4171-9e57-5a141156d04c 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 d01885d0..cac8d5f2 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:12 GMT + - Wed, 31 Dec 2025 14:31:01 GMT Pragma: - no-cache RequestId: - - 18707c9d-283a-4371-9ead-a4ab445de09a + - 7a0aab06-1377-4612-ab5e-4cf496cf7269 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,13 +62,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:12 GMT + - Wed, 31 Dec 2025 14:31:02 GMT Pragma: - no-cache RequestId: - - 4391a385-9486-4a47-9934-0155b6e894ea + - b6b6df17-8d69-4167-8cb5-288afb58e064 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -95,7 +95,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: @@ -113,13 +113,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:17 GMT + - Wed, 31 Dec 2025 14:31:07 GMT Pragma: - no-cache RequestId: - - f0452790-ba8a-46a1-8a5c-a7fa2b0a50b4 + - 95032e91-2d85-4148-b53d-98c7697fe458 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -145,7 +145,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: @@ -166,12 +166,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:24 GMT + - Wed, 31 Dec 2025 14:31:15 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1 + - https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 Pragma: - no-cache RequestId: - - 3706ab35-acb5-4c32-972a-317f76b5f542 + - e48a99e6-9c30-4b40-82dc-a632c58ffd68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -199,7 +199,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: @@ -217,16 +217,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + {"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '397' + - '2100' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:24 GMT + - Wed, 31 Dec 2025 14:31:15 GMT Pragma: - no-cache RequestId: - - cba90b18-f193-4d82-9b9a-4fb1564f84a9 + - 40934d97-4bba-4bc5-8115-f86df2110b06 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -252,7 +252,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: @@ -270,15 +270,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 response: body: - string: '{"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -288,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '276' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:24 GMT + - Wed, 31 Dec 2025 14:31:15 GMT Pragma: - no-cache RequestId: - - e7dea4aa-f30c-4639-9c77-8bb745827bad + - e3f19a26-1402-44c4-ae78-b888d4b32dba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -304,7 +304,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: @@ -322,9 +322,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -340,11 +340,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:24 GMT + - Wed, 31 Dec 2025 14:31:16 GMT Pragma: - no-cache RequestId: - - 88e10749-f02f-40da-b1c9-56b742abbb1b + - 93e2fe49-fef7-4b1f-af28-9f497bd3fe9d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -352,7 +352,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: @@ -370,9 +370,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -389,9 +389,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:25 GMT + - Wed, 31 Dec 2025 14:31:17 GMT RequestId: - - d123aa57-176c-4084-9468-d2d1adb9290f + - 1af65669-ad6b-4ea0-a269-6243c3b38e4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -399,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: @@ -417,13 +417,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -434,15 +434,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:25 GMT + - Wed, 31 Dec 2025 14:31:18 GMT Pragma: - no-cache RequestId: - - a82a7476-7ce4-45e4-8173-795193447d03 + - 24198080-d3ff-4225-93b0-8259fe52beec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -450,14 +450,14 @@ 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", "description": "fabcli000002"}' + body: '{"description": "fabcli000002"}' headers: Accept: - '*/*' @@ -466,16 +466,16 @@ interactions: Connection: - keep-alive Content-Length: - - '70' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 response: body: - string: '{"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -485,15 +485,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:25 GMT + - Wed, 31 Dec 2025 14:31:18 GMT Pragma: - no-cache RequestId: - - 854ff495-ab7d-4ffe-96f2-872312ac50c5 + - d78deb4b-f6c6-4447-8d13-64fcea361544 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -501,7 +501,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: @@ -519,16 +519,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + {"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -538,15 +538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '410' + - '2117' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:26 GMT + - Wed, 31 Dec 2025 14:31:19 GMT Pragma: - no-cache RequestId: - - 8f6230b8-f481-43d6-980d-1fd527c75ba2 + - 60c5a273-e053-4862-ae23-d9b506c0839b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,7 +554,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: @@ -572,15 +572,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 response: body: - string: '{"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -590,15 +590,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '276' + - '275' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:26 GMT + - Wed, 31 Dec 2025 14:31:18 GMT Pragma: - no-cache RequestId: - - ce1cffe0-8bfc-43d6-aa8b-6aa773d10242 + - a01e04e1-d47b-42a5-96e5-ead65585f295 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -606,7 +606,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: @@ -624,9 +624,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -642,11 +642,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:26 GMT + - Wed, 31 Dec 2025 14:31:19 GMT Pragma: - no-cache RequestId: - - 9d5711ca-305f-4376-a380-53ba0a9839be + - 29e04142-a24a-4a6f-aa6e-43e31687ca9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -654,7 +654,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: @@ -672,9 +672,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -691,11 +691,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:26 GMT + - Wed, 31 Dec 2025 14:31:20 GMT ETag: - - '"0x8DDEACAB302297C"' + - '"0x8DE4879427648B9"' RequestId: - - 7392185e-e5c3-4e7d-a409-9b33c78d7ef7 + - 337d032e-d2a4-4c30-b2b1-fac7d7661645 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -703,7 +703,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: @@ -721,13 +721,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -738,15 +738,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:26 GMT + - Wed, 31 Dec 2025 14:31:21 GMT Pragma: - no-cache RequestId: - - 7dda22ff-299a-4bc4-8126-258d2c9a8aa6 + - 95e0d11f-0935-49ac-9aad-eb9aa7c49ad1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -754,7 +754,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: @@ -772,16 +772,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ff7bfd46-9302-477c-89f9-aa98060259b1", "displayName": "fabcli000001", + {"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -791,15 +791,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '410' + - '2117' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:27 GMT + - Wed, 31 Dec 2025 14:31:21 GMT Pragma: - no-cache RequestId: - - 3fe58a30-34d2-4c77-86c2-841a7a7176f9 + - dee09da2-c2df-41db-bb81-0dbb7b0dafb2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -807,7 +807,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: @@ -825,9 +825,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/items response: body: string: '{"value": []}' @@ -843,11 +843,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:27 GMT + - Wed, 31 Dec 2025 14:31:21 GMT Pragma: - no-cache RequestId: - - 162c8f5b-39ce-47db-acf8-80afe835e6ce + - 28b0d36b-6db8-4a87-9174-65c1d35561d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -855,7 +855,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: @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ff7bfd46-9302-477c-89f9-aa98060259b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 response: body: string: '' @@ -893,11 +893,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:17:27 GMT + - Wed, 31 Dec 2025 14:31:21 GMT Pragma: - no-cache RequestId: - - 3fd729a1-43f3-42cf-ad75-bd0fc9ea1cef + - 5065b04a-f89b-44be-a0a0-f4b9ae1de03d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -905,7 +905,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/test_set_workspace_metadata_success[displayName].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[displayName].yaml index 80c0e8f8..a39326c1 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:27 GMT + - Wed, 31 Dec 2025 14:31:22 GMT Pragma: - no-cache RequestId: - - 293f02f8-75fb-4e72-a910-9e8163e15d31 + - 153d2986-0aa3-4b8d-af9b-5970c762d926 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,13 +62,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:28 GMT + - Wed, 31 Dec 2025 14:31:22 GMT Pragma: - no-cache RequestId: - - 37b16366-8c36-4c3e-a79c-ff490d83f689 + - 32cb9199-fb3f-49f8-b9f7-227f4d71927c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -95,7 +95,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: @@ -113,13 +113,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:33 GMT + - Wed, 31 Dec 2025 14:31:27 GMT Pragma: - no-cache RequestId: - - 0de353be-4d5e-4335-b7af-1bc5e99f1fca + - c836783a-4f76-459d-9dc3-f87fd3c677dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -145,7 +145,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: @@ -166,12 +166,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000001", + string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:39 GMT + - Wed, 31 Dec 2025 14:31:32 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + - https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 Pragma: - no-cache RequestId: - - dd4d1099-c92a-48f8-8d53-422de8c6c04d + - 3c61f924-8797-4837-8658-4eb4781a78bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -199,7 +199,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: @@ -217,16 +217,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000001", + {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '394' + - '2099' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:39 GMT + - Wed, 31 Dec 2025 14:31:33 GMT Pragma: - no-cache RequestId: - - bc7205a6-0a58-4a9a-a6a6-7243cb79aa62 + - 19945620-5d5d-4fe9-8bf6-273913bc79e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -252,7 +252,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: @@ -270,15 +270,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 response: body: - string: '{"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000001", + string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -292,11 +292,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:39 GMT + - Wed, 31 Dec 2025 14:31:34 GMT Pragma: - no-cache RequestId: - - 8da3786b-15b5-4338-8971-9386d731968b + - f78be44c-2d0f-45cb-8b70-e5d904ca78ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -304,7 +304,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: @@ -322,9 +322,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -340,11 +340,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:39 GMT + - Wed, 31 Dec 2025 14:31:33 GMT Pragma: - no-cache RequestId: - - 67196796-1a01-40c1-8729-ca45630ad810 + - d0b50eae-f23d-4ce7-9e46-ebe799f1e76f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -352,7 +352,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: @@ -370,9 +370,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -389,9 +389,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:40 GMT + - Wed, 31 Dec 2025 14:31:34 GMT RequestId: - - 4b44a550-6910-47e4-b53d-c94919a33d19 + - fd692621-7a65-4b04-811d-60f27a0ce1fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -399,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: @@ -417,13 +417,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -434,15 +434,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:35 GMT Pragma: - no-cache RequestId: - - adf6ef75-7018-43ed-a439-195e2fdbf622 + - 5c3b1dc9-3bf3-48d0-b582-fc87f6b8fcb8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -450,14 +450,14 @@ 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": "fabcli000002", "description": "Created by fab"}' + body: '{"displayName": "fabcli000002"}' headers: Accept: - '*/*' @@ -466,16 +466,16 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 response: body: - string: '{"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -485,15 +485,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:35 GMT Pragma: - no-cache RequestId: - - ad612e34-c26b-4dd5-8aae-0212aefb082d + - 5817c7f8-bd8f-444f-9c81-5d61d9826f15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -501,7 +501,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: @@ -519,16 +519,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -538,15 +538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '393' + - '2100' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:35 GMT Pragma: - no-cache RequestId: - - fb78a90f-5991-47fc-a80e-3f35559d80c2 + - 5b88b981-565f-4766-a635-5bbcc0378982 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,7 +554,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: @@ -572,16 +572,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -591,15 +591,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '393' + - '2100' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:36 GMT Pragma: - no-cache RequestId: - - 1fe573aa-523f-4c24-bda8-fd53e74c8f99 + - c95042e3-5840-4b00-bdae-1f352ba522f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -607,7 +607,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: @@ -625,16 +625,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -644,15 +644,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '393' + - '2100' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:36 GMT Pragma: - no-cache RequestId: - - b5d270a1-a13f-4ae6-8649-99465b70c186 + - 573d479b-e4b4-4b7e-ac5f-6a316a966608 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -660,7 +660,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: @@ -678,15 +678,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 response: body: - string: '{"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -700,11 +700,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:36 GMT Pragma: - no-cache RequestId: - - 1a67d4f5-51d5-4788-a0a2-90bee51faa86 + - 7f213a75-57da-49fd-a567-591962efe421 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -712,7 +712,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: @@ -730,9 +730,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -748,11 +748,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:41 GMT + - Wed, 31 Dec 2025 14:31:36 GMT Pragma: - no-cache RequestId: - - 909fdcfc-cae6-4f2f-8dc1-aec496c32de2 + - 15beb81e-213a-4fae-8be9-19c19798df4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -760,7 +760,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: @@ -778,9 +778,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -797,11 +797,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:37 GMT ETag: - - '"0x8DDEACABC170EE8"' + - '"0x8DE48794D09CE21"' RequestId: - - a6242662-8fed-444c-94dc-0b78193e2881 + - d37df48f-701f-4931-9adb-a1c3fda2c820 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -809,7 +809,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: @@ -827,13 +827,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -844,15 +844,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:38 GMT Pragma: - no-cache RequestId: - - 09551693-887a-41fe-b33a-b657a026e961 + - 7b75f9a1-79fe-4f5f-abf5-6f871fbc3dbd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -860,7 +860,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: @@ -878,16 +878,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -897,15 +897,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '393' + - '2100' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:38 GMT Pragma: - no-cache RequestId: - - 573512d0-f698-42ad-95a0-fffbda3019ff + - 9f9b6e67-0bdc-4532-a721-ee61bcca3cf7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -913,7 +913,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: @@ -931,15 +931,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 response: body: - string: '{"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000002", + string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -953,11 +953,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:38 GMT Pragma: - no-cache RequestId: - - bb90c08d-4fa5-490d-8440-a95a64b84182 + - 20a58326-f77d-4dfb-a12a-9e6e67fca87f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -965,7 +965,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: @@ -983,9 +983,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -1001,11 +1001,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:39 GMT Pragma: - no-cache RequestId: - - 7998a974-d7a0-430a-9656-bbbc43edf3b7 + - d2beb9bf-4697-4f58-86b6-7ab0fd1fc828 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1013,7 +1013,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: @@ -1031,9 +1031,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -1050,11 +1050,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:42 GMT ETag: - - '"0x8DDEACABC170EE8"' + - '"0x8DE48794D09CE21"' RequestId: - - af26c8c6-86fc-4819-abd8-5423b23e4720 + - 0ecf928d-0cbc-47e1-bf99-0ff93eab865a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1062,7 +1062,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: @@ -1080,13 +1080,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -1097,15 +1097,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:42 GMT + - Wed, 31 Dec 2025 14:31:42 GMT Pragma: - no-cache RequestId: - - 47d7dc2c-f481-4e56-b161-1a5844aa6677 + - a23388ee-6acc-4712-a836-0da6629d1bf5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1113,14 +1113,14 @@ 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", "description": "Created by fab"}' + body: '{"displayName": "fabcli000001"}' headers: Accept: - '*/*' @@ -1129,16 +1129,16 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 response: body: - string: '{"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000001", + string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -1148,15 +1148,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:43 GMT + - Wed, 31 Dec 2025 14:31:42 GMT Pragma: - no-cache RequestId: - - 09226ffe-7fa9-4c83-bbbe-21034ecdd9e3 + - 2b20bfd8-39f0-4f5b-acbd-c2922b1a9b7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1164,7 +1164,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: @@ -1182,16 +1182,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9", "displayName": "fabcli000001", + {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1201,15 +1201,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '394' + - '2099' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:43 GMT + - Wed, 31 Dec 2025 14:31:42 GMT Pragma: - no-cache RequestId: - - a645ae3a-7b6d-4e79-950d-8d24203dc0c2 + - 3024860b-b76e-4a29-a434-21796ad6a05d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1217,7 +1217,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: @@ -1235,9 +1235,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626/items response: body: string: '{"value": []}' @@ -1253,11 +1253,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:44 GMT + - Wed, 31 Dec 2025 14:31:43 GMT Pragma: - no-cache RequestId: - - 4eb94324-302f-4491-b37b-a2aca300dc26 + - e7a82449-a6a2-4708-a687-0eb0db362930 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1265,7 +1265,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: @@ -1285,9 +1285,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e960f6d4-d4dd-4e76-b7f5-ed3b349ee0e9 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 response: body: string: '' @@ -1303,11 +1303,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:17:44 GMT + - Wed, 31 Dec 2025 14:31:43 GMT Pragma: - no-cache RequestId: - - 4a119b76-f43d-48f4-9000-53685b9cb341 + - dfa3616d-9941-4119-9e3f-cfae11b25c34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1315,7 +1315,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/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 3132dec1..ff8e49b7 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:44 GMT + - Wed, 31 Dec 2025 14:31:44 GMT Pragma: - no-cache RequestId: - - 9742c722-2b1c-49de-bdf4-bc0aaf3a4cdf + - e513ca19-d939-43d2-8c47-c8fbd8533366 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -44,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: @@ -62,13 +62,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '355' + - '2061' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:44 GMT + - Wed, 31 Dec 2025 14:31:44 GMT Pragma: - no-cache RequestId: - - 73936680-a89e-41e9-b346-cefd5b070a1e + - 2947d2a4-5e95-4ca7-93e0-28d6c3719205 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -95,7 +95,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: @@ -113,13 +113,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '343' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:49 GMT + - Wed, 31 Dec 2025 14:31:48 GMT Pragma: - no-cache RequestId: - - 9c7fb2f1-8f02-4ae4-9522-3b03c62fd9bd + - c7246330-9b36-4fd4-b92b-f2ad09ea3b02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -145,7 +145,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: @@ -166,12 +166,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "5e4d67e0-7e8a-4eae-971c-5f0f312585a0", "displayName": "fabcli000001", + string: '{"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:56 GMT + - Wed, 31 Dec 2025 14:31:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0 + - https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650 Pragma: - no-cache RequestId: - - 1571459a-ba7e-4314-8a61-10c45ef0fb83 + - 92a38a97-d8bb-410e-b0a2-97a569f9b314 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -199,7 +199,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: @@ -217,16 +217,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5e4d67e0-7e8a-4eae-971c-5f0f312585a0", "displayName": "fabcli000001", + {"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '395' + - '2099' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:57 GMT + - Wed, 31 Dec 2025 14:31:56 GMT Pragma: - no-cache RequestId: - - b20828ac-c1b1-477b-aa7e-7a140a9c8094 + - a6157bb3-86c2-488d-a19a-5c494085cda9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -252,7 +252,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: @@ -270,15 +270,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0 + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650 response: body: - string: '{"id": "5e4d67e0-7e8a-4eae-971c-5f0f312585a0", "displayName": "fabcli000001", + string: '{"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -292,11 +292,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:57 GMT + - Wed, 31 Dec 2025 14:31:56 GMT Pragma: - no-cache RequestId: - - 0b1d9d64-3f24-4df4-83c0-f4cfd70be1b1 + - 576f50f3-cc57-4cb1-9add-3f24b0eed947 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -304,7 +304,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: @@ -322,9 +322,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -340,11 +340,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:57 GMT + - Wed, 31 Dec 2025 14:31:56 GMT Pragma: - no-cache RequestId: - - 24c1f5bf-a56c-460a-bed2-cf65bad80c79 + - e9478950-2230-4d97-8a07-8f493a78b3f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -352,7 +352,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: @@ -370,9 +370,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -389,9 +389,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:58 GMT + - Wed, 31 Dec 2025 14:31:57 GMT RequestId: - - 5cc71aff-0852-423b-a678-ab0dbfd164e9 + - ef0c50d4-6492-47d6-8a8d-8d70cfc55762 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -399,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: @@ -417,13 +417,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -434,15 +434,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:59 GMT + - Wed, 31 Dec 2025 14:31:57 GMT Pragma: - no-cache RequestId: - - 87de6859-e086-47f8-80a8-99dc7d743b45 + - 401679af-7a98-4614-8958-ed6a5fe8df08 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -450,7 +450,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: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/spark/settings response: body: string: '{"automaticLog": {"enabled": false}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -494,11 +494,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:58 GMT + - Wed, 31 Dec 2025 14:31:58 GMT ETag: - - '"0x8DDEACAC6E96B7C"' + - '"0x8DE48795AE70701"' RequestId: - - 463cba13-f505-4696-845e-5934e3f501c3 + - 636a75f6-b66b-4363-b351-1cbad322841b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -506,7 +506,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: @@ -524,16 +524,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5e4d67e0-7e8a-4eae-971c-5f0f312585a0", "displayName": "fabcli000001", + {"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -543,15 +543,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '395' + - '2099' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:58 GMT + - Wed, 31 Dec 2025 14:31:59 GMT Pragma: - no-cache RequestId: - - d2fd4864-0aae-4489-b121-fe9f6cd806e5 + - 2eefebfc-ac1a-44fb-a999-696cd2abdfcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -559,7 +559,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: @@ -577,15 +577,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0 + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650 response: body: - string: '{"id": "5e4d67e0-7e8a-4eae-971c-5f0f312585a0", "displayName": "fabcli000001", + string: '{"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", - "capacityRegion": "West Europe", "oneLakeEndpoints": {"blobEndpoint": "https://westeurope-onelake.blob.fabric.microsoft.com", - "dfsEndpoint": "https://westeurope-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": + "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", + "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' headers: Access-Control-Expose-Headers: @@ -599,11 +599,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:59 GMT + - Wed, 31 Dec 2025 14:31:59 GMT Pragma: - no-cache RequestId: - - 7498235e-b864-425e-9e35-add90d6c7ae8 + - 8c09e74b-41d4-4cb7-992d-180d2585048c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -611,7 +611,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: @@ -629,9 +629,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -647,11 +647,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:59 GMT + - Wed, 31 Dec 2025 14:31:58 GMT Pragma: - no-cache RequestId: - - 093a13ce-254a-4a7f-a854-c0f26dc82085 + - 483ecbfc-a38c-48d0-b636-1df925df67a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -659,7 +659,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: @@ -677,9 +677,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/spark/settings response: body: string: '{"automaticLog": {"enabled": false}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -696,11 +696,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:00 GMT + - Wed, 31 Dec 2025 14:32:00 GMT ETag: - - '"0x8DDEACAC6E96B7C"' + - '"0x8DE48795AE70701"' RequestId: - - 1ca7ab01-efea-48bb-8b87-8705efd365fc + - cf0933e4-f2b5-403c-8b62-47a12c75565d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -708,7 +708,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: @@ -726,13 +726,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": - {"id": "00000000-0000-0000-0000-000000000001", "displayName": "Tenant Admin", + {"id": "00000000-0000-0000-0000-000000000001", "displayName": "MSIT Cycle", "type": "User", "userDetails": {"userPrincipalName": "mocked@admin_test_user"}}, "role": "Admin"}]}' headers: @@ -743,15 +743,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:17:59 GMT + - Wed, 31 Dec 2025 14:32:00 GMT Pragma: - no-cache RequestId: - - 311e2d8d-713b-481e-874b-859719043bf0 + - e7cb98c6-62f6-4b35-b212-ae017ac87afc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -759,7 +759,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: @@ -777,16 +777,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "5c8a8929-5b8c-4fe0-b47a-4ffd8e08206d", + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5e4d67e0-7e8a-4eae-971c-5f0f312585a0", "displayName": "fabcli000001", + {"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -796,15 +796,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '395' + - '2099' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:00 GMT + - Wed, 31 Dec 2025 14:32:01 GMT Pragma: - no-cache RequestId: - - 7b7dd787-a1f4-4e60-9975-ee8be710b4fc + - 2581a206-f52a-4930-b97f-df316e37b957 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -812,7 +812,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: @@ -830,9 +830,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/items response: body: string: '{"value": []}' @@ -848,11 +848,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:00 GMT + - Wed, 31 Dec 2025 14:32:00 GMT Pragma: - no-cache RequestId: - - 41e143c0-ae5f-487d-94a0-e0a1953d8025 + - c970e01f-1a18-417c-ba67-244f2d76a338 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -860,7 +860,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: @@ -880,9 +880,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5e4d67e0-7e8a-4eae-971c-5f0f312585a0 + uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650 response: body: string: '' @@ -898,11 +898,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 03 Sep 2025 09:18:00 GMT + - Wed, 31 Dec 2025 14:32:01 GMT Pragma: - no-cache RequestId: - - 46e236e8-7703-4f1c-af8c-97e97214c243 + - ea44579d-b03e-4c0c-b6a5-f1a10cc8d7bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -910,7 +910,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/test_virtual_item_not_supported_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_virtual_item_not_supported_failure.yaml index 9487b0c9..08d0ec22 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,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:13 GMT + - Wed, 31 Dec 2025 14:38:40 GMT Pragma: - no-cache RequestId: - - e12501e8-69f9-4bad-ba3d-118737f6deaf + - 958715d8-9506-4f0e-aa9c-07f751db655c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,12 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6 response: body: - string: '{"id": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "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": @@ -80,15 +80,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '295' + - '296' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:13 GMT + - Wed, 31 Dec 2025 14:38:39 GMT Pragma: - no-cache RequestId: - - bc2967d4-ddb9-43d3-8659-b24df6b25096 + - 37fc74e3-5297-4f43-8c05-3c28f78c21eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -114,12 +114,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6 response: body: - string: '{"id": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "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": @@ -132,15 +132,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '295' + - '296' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:14 GMT + - Wed, 31 Dec 2025 14:38:40 GMT Pragma: - no-cache RequestId: - - 21428ffa-329f-4835-84ca-cbf3da7b3681 + - 188c9d75-631e-4bbd-9220-2caa2b009646 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -168,9 +168,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/provisionIdentity + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/provisionIdentity response: body: string: 'null' @@ -186,13 +186,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:15 GMT + - Wed, 31 Dec 2025 14:38:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/89182ab0-421f-4e87-9dde-75be1ebd9111 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe Pragma: - no-cache RequestId: - - c0362583-366f-4853-9bc9-4ec4f8e7dd91 + - f47cd8be-5ec0-48e7-9d54-1c928deddb7a Retry-After: - '5' Strict-Transport-Security: @@ -206,7 +206,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 89182ab0-421f-4e87-9dde-75be1ebd9111 + - dbb74b3b-99c5-4c1c-ae10-91ad32a59afe status: code: 202 message: Accepted @@ -222,13 +222,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/89182ab0-421f-4e87-9dde-75be1ebd9111 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:13:15.516331", - "lastUpdatedTimeUtc": "2025-11-26T16:13:16.6724559", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:38:41.4469362", + "lastUpdatedTimeUtc": "2025-12-31T14:38:42.7752692", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -238,17 +238,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:20 GMT + - Wed, 31 Dec 2025 14:38:46 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/89182ab0-421f-4e87-9dde-75be1ebd9111/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe/result Pragma: - no-cache RequestId: - - b9d49634-d823-4390-9546-d07344c5d1de + - 0cdbb703-7c55-4555-96bb-c5792ab6dd27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -256,7 +256,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 89182ab0-421f-4e87-9dde-75be1ebd9111 + - dbb74b3b-99c5-4c1c-ae10-91ad32a59afe status: code: 200 message: OK @@ -272,13 +272,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/89182ab0-421f-4e87-9dde-75be1ebd9111/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe/result response: body: - string: '{"applicationId": "9604146b-09a6-4697-ac2c-d1966993059b", "servicePrincipalId": - "f2d4386b-5d54-4e32-99af-a590e81e0b8d"}' + string: '{"applicationId": "c7d3c782-72a2-47e1-ba87-c3039090f603", "servicePrincipalId": + "df83e5ef-fcd6-4dbf-b773-53ad2542cf15"}' headers: Access-Control-Expose-Headers: - RequestId @@ -289,11 +289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Nov 2025 16:13:20 GMT + - Wed, 31 Dec 2025 14:38:47 GMT Pragma: - no-cache RequestId: - - 9e5634c9-4e81-445a-9da2-360aa303d45f + - a73cdc1f-3a31-4894-9a5e-e1f61c497247 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -317,13 +317,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -334,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:21 GMT + - Wed, 31 Dec 2025 14:38:47 GMT Pragma: - no-cache RequestId: - - 5b85524b-99fa-474f-9a2e-a8479a8d20bf + - cb3d6c4b-926f-4214-9727-025c0d3c9bfb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -368,17 +368,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6 response: body: - string: '{"id": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "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": "9604146b-09a6-4697-ac2c-d1966993059b", - "servicePrincipalId": "f2d4386b-5d54-4e32-99af-a590e81e0b8d"}}' + "Completed", "workspaceIdentity": {"applicationId": "c7d3c782-72a2-47e1-ba87-c3039090f603", + "servicePrincipalId": "df83e5ef-fcd6-4dbf-b773-53ad2542cf15"}}' headers: Access-Control-Expose-Headers: - RequestId @@ -387,15 +387,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '380' + - '382' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:21 GMT + - Wed, 31 Dec 2025 14:38:48 GMT Pragma: - no-cache RequestId: - - 7a50a301-038b-4bac-bcd8-14012b690ab7 + - 2454b4eb-c260-4e74-abb2-81538009b9d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -421,13 +421,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - 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": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", + "My workspace", "description": "", "type": "Personal"}, {"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -438,15 +438,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '796' + - '2091' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:21 GMT + - Wed, 31 Dec 2025 14:38:49 GMT Pragma: - no-cache RequestId: - - 106125dc-c59d-4cc3-9bd4-c390c9bfe61a + - 0da50c39-6f2e-401f-a7c4-848adf1e1b0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -472,17 +472,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6 response: body: - string: '{"id": "f016a7de-afee-43d3-a0ab-4023cd91ca7e", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "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": "9604146b-09a6-4697-ac2c-d1966993059b", - "servicePrincipalId": "f2d4386b-5d54-4e32-99af-a590e81e0b8d"}}' + "Completed", "workspaceIdentity": {"applicationId": "c7d3c782-72a2-47e1-ba87-c3039090f603", + "servicePrincipalId": "df83e5ef-fcd6-4dbf-b773-53ad2542cf15"}}' headers: Access-Control-Expose-Headers: - RequestId @@ -491,15 +491,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '380' + - '382' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:22 GMT + - Wed, 31 Dec 2025 14:38:49 GMT Pragma: - no-cache RequestId: - - 43a002ca-c600-4f5b-a312-115c8c628670 + - 4a613646-d7df-4702-aebc-41eabae7ab35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -527,9 +527,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f016a7de-afee-43d3-a0ab-4023cd91ca7e/deprovisionIdentity + uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/deprovisionIdentity response: body: string: 'null' @@ -545,13 +545,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:22 GMT + - Wed, 31 Dec 2025 14:38:49 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fe05be56-a6ca-4b2e-a1e8-4e67ef348fdb + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eb48be7-3e2c-4d09-8196-8ff0ca24ffee Pragma: - no-cache RequestId: - - 0df09912-2d74-4923-97da-7520d0f19c07 + - 32c27277-9881-4427-aacd-f12a8d67edf4 Retry-After: - '5' Strict-Transport-Security: @@ -565,7 +565,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - fe05be56-a6ca-4b2e-a1e8-4e67ef348fdb + - 7eb48be7-3e2c-4d09-8196-8ff0ca24ffee status: code: 202 message: Accepted @@ -581,13 +581,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.2.0 + - ms-fabric-cli-test/1.3.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fe05be56-a6ca-4b2e-a1e8-4e67ef348fdb + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eb48be7-3e2c-4d09-8196-8ff0ca24ffee response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-11-26T16:13:23.2058387", - "lastUpdatedTimeUtc": "2025-11-26T16:13:24.1120723", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:38:49.5878458", + "lastUpdatedTimeUtc": "2025-12-31T14:38:50.5722903", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -601,11 +601,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 26 Nov 2025 16:13:28 GMT + - Wed, 31 Dec 2025 14:38:54 GMT Pragma: - no-cache RequestId: - - 6286141f-a3d5-4e4e-8e17-a698cca52f45 + - fc7e0ed7-709f-4541-82b8-82e23b281993 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/test_set.py b/tests/test_commands/test_set.py index 87a0ab9f..378ee2aa 100644 --- a/tests/test_commands/test_set.py +++ b/tests/test_commands/test_set.py @@ -228,7 +228,8 @@ def test_set_workspace_success( ) # Assert - upsert_workspace_to_cache.assert_called_once() + # Cache is only updated when displayName changes, not for other properties + upsert_workspace_to_cache.assert_not_called() mock_print_done.assert_called_once() get(workspace.full_path, query=query) @@ -301,7 +302,7 @@ def test_set_sparkpool_success( ) # Assert - upsert_spark_pool_to_cache.assert_called_once() + upsert_spark_pool_to_cache.assert_not_called() mock_print_done.assert_called_once() get(sparkpool.full_path, query=query) @@ -441,7 +442,7 @@ def test_set_domain_success( ) # Assert - upsert_domain_to_cache.assert_called_once() + upsert_domain_to_cache.assert_not_called() mock_print_done.assert_called_once() get(domain.full_path, query=query) @@ -787,8 +788,14 @@ def _test_set_metadata_success( # Assert mock_print_done.assert_called_once() - if upsert_entity_to_cache and should_upsert_to_cache: + if ( + upsert_entity_to_cache + and should_upsert_to_cache + and metadata_to_set in ["displayName", "name"] + ): upsert_entity_to_cache.assert_called_once() + elif upsert_entity_to_cache: + upsert_entity_to_cache.assert_not_called() new_entity = entity From dc9a581e2f6d16fed607be4dd3bb0b9a0b50efab Mon Sep 17 00:00:00 2001 From: may-hartov Date: Thu, 1 Jan 2026 09:35:48 +0200 Subject: [PATCH 4/6] tests fixes capacity tests fixes --- .../capacities_api_processor.py | 11 +- ...st_set_capacity_invalid_query_failure.yaml | 535 +++----------- ...est_set_capacity_success[sku.name-F4].yaml | 699 ++++-------------- tests/test_commands/test_set.py | 1 - 4 files changed, 275 insertions(+), 971 deletions(-) diff --git a/tests/test_commands/api_processors/capacities_api_processor.py b/tests/test_commands/api_processors/capacities_api_processor.py index 246cdb41..f7502c2b 100644 --- a/tests/test_commands/api_processors/capacities_api_processor.py +++ b/tests/test_commands/api_processors/capacities_api_processor.py @@ -5,12 +5,13 @@ import re from urllib3 import request + from tests.test_commands.api_processors.base_api_processor import BaseAPIProcessor -from tests.test_commands.data.static_test_data import get_mock_data, get_static_data from tests.test_commands.api_processors.utils import ( load_request_json_body, load_response_json_body, ) +from tests.test_commands.data.static_test_data import get_mock_data, get_static_data class CapacitiesAPIProcessor(BaseAPIProcessor): @@ -81,7 +82,7 @@ def _handle_azure_capacity_request(self, request): request_body = load_request_json_body(request) if ( request_body - and request_body["location"] + and "location" in request_body and request_body["location"] == get_static_data().azure_location ): request_body["location"] = get_mock_data().azure_location @@ -144,8 +145,12 @@ def _handle_get_azure_capacity_response(self, response): if not data: return + if "error" in data: + return + if ( - data["id"].endswith( + "id" in data + and data["id"].endswith( f"/capacities/{get_static_data().capacity.name}", re.IGNORECASE ) and data["name"].lower() == get_static_data().capacity.name.lower() 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 444c77a6..aae0dc6d 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.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "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 09:18:21 GMT + - Thu, 01 Jan 2026 07:11:13 GMT Pragma: - no-cache RequestId: - - d7e8579a-4de8-48de-94c1-41f35b717205 + - c3e57de1-2e22-4cdd-9496-fd041dc29967 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.3.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/0E79E228-921E-4C18-857B-4153603B4F7C?api-version=2022-07-01-preview&t=638924879046153073&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=sHoGSNkOvndC9FxypJNTqWB5JvhOUJm-TaPPImi3P9ZMmpyp00V4Wk8OYw5DcZkIRvsYiKvC_xjA0Ei4YkzBaHptPu7LDJkwTHgbMyIS8gLfKvyJKTjZBX62_heN1shc250bX3eRsysip420nCx9H9SBX3wVITuRUoEG_R85XYhBse-Rovuc9moUOvxxZlklpnDaKIBSeTFbKSHMVPYtH86vyNxzpu3NWghfLCYkQ3RLyk6aJfBTWzkhmPYTmUevqevhkY5hI-bCuLZ0uEVQ4BWxuxmucnHCN4UVO98Ve8H2jpJ1IGwGxkiW2x4VEaIRqjFowOKItbBAw0Ah5ee9yg&h=0BWpNkylcb6WgzR03IbSp8r61Su1GD0XJO6zuR2RB48 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B326D4B8-C9EB-4FE4-AB04-E71A67C085D0?api-version=2022-07-01-preview&t=639028482797375226&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=oTf2EmS1KdHdmTi0MGHYWWT0gUkXVisx8UKvz6ujRjHQxH6vr7scrN2kHRNOXk4zzc59EX2itnkhhhOpHoeE8TCNoss3sZeRFgbU0eQrvceTvXDpI-a9jbOWDTZDutHtXod2V7XkvhYFz0xe6yabGeX0aI-jQP__njuGbradXEiyhK0mXz811qJhwl6Vo3NiCoWVE1Oy3vbft8Cbh-vVLISQKFbaj45l-i-e15_GcIyjP1k4tkbt0OQIhXvdFdQgYDOHSXaArV0581IAUiJDhaZ3aNiyg6W49a6NhBCFKUKc0bV7-vV1RlD1AWO_FGu0MeBF3iYO6IpkARB4lTaMeA&h=6cPnSsdEErZAFEqPuOJ45lDMV1cobuCpInE4talMr8Y 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 09:18:24 GMT + - Thu, 01 Jan 2026 07:11:18 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/0E79E228-921E-4C18-857B-4153603B4F7C?api-version=2022-07-01-preview&t=638924879046309316&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=F1S3QUiFjAVJSz5krAHBS33HV8hWZGsnxJswaCm-tAHyev-SbJSIsFcqWCl86m9qdZwKhuWvSYEWdqNKBKe0K2ftPsjbuOzYAQQxEwkSrMQbiKTMe10UAJOeZgsme9Vd6_iCh9DVM25-svUK7OkY6Ax5aEy-YP-V09eePGDR11YP5yCmDfZGiSBzEoJZTEwyXrwxLOMWkmMx-yjFGi3naZz3SvwqPOSY8oIPO00cwrB6pG09IpqPz3Oa1idUUfD2Ux4yE6nqmZovAE3t1Nl8LWyXlcDkk7eLrK0cEK3ybph9v0PV7g-254mFtShfmA0VBbcdY505NrzUn8Zx-w9Qrg&h=aghXc8XS01ACSblZMtLi0p55jwDIVrT4UC78LdBOgbY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B326D4B8-C9EB-4FE4-AB04-E71A67C085D0?api-version=2022-07-01-preview&t=639028482797375226&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=y9U7xpGxtNJcQy9KqSmtkaA_eOWvn6ouwlPAM-6qqW0-CZuA0Y-TVMespmfmBtTaHgmhudeu228yIdYy78asaNC_zoAfnquylj9kQzX2lgquH_o8Mlai12rQhEwnkFy1PqhQGn5uGeVj1Le9KPk3WtAPWdx0Mhw5v40B8pLr-EWgpd_79pn2uYQQ5PYuQ9Miyl56FVSC0XSp0-yX7FebGMH82TH1jRJ_N6lsw4DWURH6ek-KVyh35l9wUpDVLUdg1p_Palr0Ko05G5seaVkhEdXtiYF0A9XbLjdZaP_7o6J991L_Bg9OFzDMDX-_uY2NiYUvsECGXMV0imTC1wcHsg&h=__pidQ7sk3xqIWhYmhTdI6zyhhf5KKJm9l31jWdDWqU 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.3.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/0E79E228-921E-4C18-857B-4153603B4F7C?api-version=2022-07-01-preview&t=638924879046153073&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=sHoGSNkOvndC9FxypJNTqWB5JvhOUJm-TaPPImi3P9ZMmpyp00V4Wk8OYw5DcZkIRvsYiKvC_xjA0Ei4YkzBaHptPu7LDJkwTHgbMyIS8gLfKvyJKTjZBX62_heN1shc250bX3eRsysip420nCx9H9SBX3wVITuRUoEG_R85XYhBse-Rovuc9moUOvxxZlklpnDaKIBSeTFbKSHMVPYtH86vyNxzpu3NWghfLCYkQ3RLyk6aJfBTWzkhmPYTmUevqevhkY5hI-bCuLZ0uEVQ4BWxuxmucnHCN4UVO98Ve8H2jpJ1IGwGxkiW2x4VEaIRqjFowOKItbBAw0Ah5ee9yg&h=0BWpNkylcb6WgzR03IbSp8r61Su1GD0XJO6zuR2RB48 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B326D4B8-C9EB-4FE4-AB04-E71A67C085D0?api-version=2022-07-01-preview&t=639028482797375226&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=oTf2EmS1KdHdmTi0MGHYWWT0gUkXVisx8UKvz6ujRjHQxH6vr7scrN2kHRNOXk4zzc59EX2itnkhhhOpHoeE8TCNoss3sZeRFgbU0eQrvceTvXDpI-a9jbOWDTZDutHtXod2V7XkvhYFz0xe6yabGeX0aI-jQP__njuGbradXEiyhK0mXz811qJhwl6Vo3NiCoWVE1Oy3vbft8Cbh-vVLISQKFbaj45l-i-e15_GcIyjP1k4tkbt0OQIhXvdFdQgYDOHSXaArV0581IAUiJDhaZ3aNiyg6W49a6NhBCFKUKc0bV7-vV1RlD1AWO_FGu0MeBF3iYO6IpkARB4lTaMeA&h=6cPnSsdEErZAFEqPuOJ45lDMV1cobuCpInE4talMr8Y response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/0E79E228-921E-4C18-857B-4153603B4F7C", - "name": "0E79E228-921E-4C18-857B-4153603B4F7C", "status": "Provisioning", - "startTime": "2025-09-03T09:18:23.8670000Z"}' - 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 09:18:24 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/0E79E228-921E-4C18-857B-4153603B4F7C?api-version=2022-07-01-preview&t=638924879046153073&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=sHoGSNkOvndC9FxypJNTqWB5JvhOUJm-TaPPImi3P9ZMmpyp00V4Wk8OYw5DcZkIRvsYiKvC_xjA0Ei4YkzBaHptPu7LDJkwTHgbMyIS8gLfKvyJKTjZBX62_heN1shc250bX3eRsysip420nCx9H9SBX3wVITuRUoEG_R85XYhBse-Rovuc9moUOvxxZlklpnDaKIBSeTFbKSHMVPYtH86vyNxzpu3NWghfLCYkQ3RLyk6aJfBTWzkhmPYTmUevqevhkY5hI-bCuLZ0uEVQ4BWxuxmucnHCN4UVO98Ve8H2jpJ1IGwGxkiW2x4VEaIRqjFowOKItbBAw0Ah5ee9yg&h=0BWpNkylcb6WgzR03IbSp8r61Su1GD0XJO6zuR2RB48 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/0E79E228-921E-4C18-857B-4153603B4F7C", - "name": "0E79E228-921E-4C18-857B-4153603B4F7C", "status": "Provisioning", - "startTime": "2025-09-03T09:18:23.8670000Z"}' - 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 09:18:24 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/0E79E228-921E-4C18-857B-4153603B4F7C?api-version=2022-07-01-preview&t=638924879046153073&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=sHoGSNkOvndC9FxypJNTqWB5JvhOUJm-TaPPImi3P9ZMmpyp00V4Wk8OYw5DcZkIRvsYiKvC_xjA0Ei4YkzBaHptPu7LDJkwTHgbMyIS8gLfKvyJKTjZBX62_heN1shc250bX3eRsysip420nCx9H9SBX3wVITuRUoEG_R85XYhBse-Rovuc9moUOvxxZlklpnDaKIBSeTFbKSHMVPYtH86vyNxzpu3NWghfLCYkQ3RLyk6aJfBTWzkhmPYTmUevqevhkY5hI-bCuLZ0uEVQ4BWxuxmucnHCN4UVO98Ve8H2jpJ1IGwGxkiW2x4VEaIRqjFowOKItbBAw0Ah5ee9yg&h=0BWpNkylcb6WgzR03IbSp8r61Su1GD0XJO6zuR2RB48 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/0E79E228-921E-4C18-857B-4153603B4F7C", - "name": "0E79E228-921E-4C18-857B-4153603B4F7C", "status": "Provisioning", - "startTime": "2025-09-03T09:18:23.8670000Z"}' - 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 09:18:25 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/0E79E228-921E-4C18-857B-4153603B4F7C?api-version=2022-07-01-preview&t=638924879046153073&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=sHoGSNkOvndC9FxypJNTqWB5JvhOUJm-TaPPImi3P9ZMmpyp00V4Wk8OYw5DcZkIRvsYiKvC_xjA0Ei4YkzBaHptPu7LDJkwTHgbMyIS8gLfKvyJKTjZBX62_heN1shc250bX3eRsysip420nCx9H9SBX3wVITuRUoEG_R85XYhBse-Rovuc9moUOvxxZlklpnDaKIBSeTFbKSHMVPYtH86vyNxzpu3NWghfLCYkQ3RLyk6aJfBTWzkhmPYTmUevqevhkY5hI-bCuLZ0uEVQ4BWxuxmucnHCN4UVO98Ve8H2jpJ1IGwGxkiW2x4VEaIRqjFowOKItbBAw0Ah5ee9yg&h=0BWpNkylcb6WgzR03IbSp8r61Su1GD0XJO6zuR2RB48 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/0E79E228-921E-4C18-857B-4153603B4F7C", - "name": "0E79E228-921E-4C18-857B-4153603B4F7C", "status": "Succeeded", "startTime": - "2025-09-03T09:18:23.8670000Z", "endTime": "2025-09-03T09:18:26.3600000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B326D4B8-C9EB-4FE4-AB04-E71A67C085D0", + "name": "B326D4B8-C9EB-4FE4-AB04-E71A67C085D0", "status": "Succeeded", "startTime": + "2026-01-01T07:11:18.4170000Z", "endTime": "2026-01-01T07:11:22.8470000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:34 GMT + - Thu, 01 Jan 2026 07:11:30 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.3.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": "e6d0019c-5688-4d9c-9752-668813626b91", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "2206801b-c552-4cba-a49f-6710482b344a", "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"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:40 GMT + - Thu, 01 Jan 2026 07:11:33 GMT Pragma: - no-cache RequestId: - - babba61a-78f0-4767-b1e4-8fd742eea8b4 + - c1f64baf-0a88-42e0-83d4-4c898e86d221 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.3.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": "e6d0019c-5688-4d9c-9752-668813626b91", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "Active"}, {"id": "2206801b-c552-4cba-a49f-6710482b344a", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:45 GMT + - Thu, 01 Jan 2026 07:11:36 GMT Pragma: - no-cache RequestId: - - 880cedbf-e338-4e7f-8519-11de929d74a0 + - 70c52340-016e-4145-a1f6-973228bf198e 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,15 +267,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "e6d0019c-5688-4d9c-9752-668813626b91", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "2206801b-c552-4cba-a49f-6710482b344a", "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"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -428,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:49 GMT + - Thu, 01 Jan 2026 07:11:43 GMT Pragma: - no-cache RequestId: - - d98a2abe-46f1-4e92-9fda-282f335d5cf9 + - 592b31bb-667b-46d0-8440-4e24867a222a 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.3.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 09:18:49 GMT + - Thu, 01 Jan 2026 07:11:43 GMT Expires: - '-1' Pragma: @@ -511,14 +367,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "e6d0019c-5688-4d9c-9752-668813626b91", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "Active"}, {"id": "2206801b-c552-4cba-a49f-6710482b344a", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -528,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:55 GMT + - Thu, 01 Jan 2026 07:11:47 GMT Pragma: - no-cache RequestId: - - bfb29ce7-b24d-403f-ae07-8af41650ebde + - da773b00-022e-443b-99b4-689c46cb7289 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -544,7 +400,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: @@ -562,170 +418,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 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 09:18: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 - 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 09:18: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: '' + string: '{"error": {"code": "SubscriptionNotFound", "message": "The subscription + ''00000000-0000-0000-0000-000000000000'' could not be found."}}' headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE Cache-Control: - no-cache Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 09:18:57 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381513564&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=wd19WZZueFaaueKdj6bvEE1pX4tRf9ekSyxVoSXK5PJhP5DoUGTkM_qXmkO2S2TQUCh3MUvcGRdz2V9le9mKh9ZTlWzcopEzpYEgmIqsp02nEz7eclAe4XvZV-mu1cPFsiJlW0LjzpeH1cGQQ0t8QRtDTxzaHvdPPVHJH-ZPwvFsXs-8uTzxVcbieoLQL3Tmgs7ojRTyhJy0CLZI0zr140vJdi9r8bMXzbYSeU7ecYETxPXQv-Blbovaoe8jVl9XrGLKRXIH50GZh8hHql2CubDZcDnPR0jvBnMcC20o7VVVPL-88Ci907Y3nNsuGBQqHzIQpa4iUopL3iF7_-IAZg&h=lkTw_xtWjuQiZBWz1tc4AJ_FMqiOG0huuiHqmlbu9eY - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:58 GMT + - Thu, 01 Jan 2026 07:11:49 GMT Expires: - '-1' Pragma: @@ -736,13 +444,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: 404 + message: Not Found - request: body: null headers: @@ -755,25 +459,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' + 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 09:18:58 GMT + - Thu, 01 Jan 2026 07:11:48 GMT Expires: - '-1' Pragma: @@ -784,10 +485,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -803,25 +500,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' + 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": "F32", "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' + - '2540' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:18:59 GMT + - Thu, 01 Jan 2026 07:11:51 GMT Expires: - '-1' Pragma: @@ -832,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 @@ -848,30 +545,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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + - 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: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4?api-version=2022-07-01-preview&t=639028483142217529&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=MHKS996FUgal6Da4UGaFvIpoB0vdXQo12uWOGW6Qujn-Cf0EN3ri9U9MxJMi0OkNM0zi7HykmUhwMl1G-BcE3IaWzwvfwfHnc7jcmP3XnQ6mHAZgI1sZSR7Cn2dy8k98nXe331WdNTwDTysvplZhB6IF4wH76jQyOQfP9uzwtytuwxwAYe5oxulD5t6v8aq5ifFNazAgG-TYzz47yd9hTywdy-wNcIeKNx85bMXJopz6epo1z6hWTKj03HyMTjo17uqdZ9GV6t1VQ98rmtMZa5XCmrtzwHGLYGX9oFBIYB0vRU4gHD5eZZf50TA1Cc1px72ov08W_4mucf2gWBVXAQ&h=8rbDwVkJcAvcUz0GAzsF46M4z5Krt2oRAAT4jN98_Qw 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 09:19:00 GMT + - Thu, 01 Jan 2026 07:11:53 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/32624318-6F39-4A87-842C-F072EC5795C4?api-version=2022-07-01-preview&t=639028483142217529&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=iZ5dpUkF33lCPmL65-PvZQiSbPiBSfS9DwD-Hzl_a1qHQ9nKM3MoPAAz5imaPcB38sl5MIavVBTA5k77T--o--lMN8k4w2TQ0mnvUAooqbZ7HaS1hCXf46MksWL-x0Q9_9fZtKHJ_Ey3L91zYHOhNr7Ku_vaSbQr162leTTa7Z02N1ZBRNGZa4P71Z3nYxe_FpHG5VrcswgboUiA3qoyqv8Xrn_qVLeYQjaiSfxKZkotYiIDefMU4DBUcP6mlDQt86gy_NhAS2F8TpUJaq0A4FHJ0BombwVzPLAhbILM_Iz3BMD8b4Uje-Rxjm-fzaGr-h8tOJQQYFRY4Epz726WoQ&h=MP2jG9z3kphFWv8XkxHDTuwQGL9yZ0nmQJrn44GHFdQ Pragma: - no-cache Strict-Transport-Security: @@ -885,8 +584,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -899,14 +598,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4?api-version=2022-07-01-preview&t=639028483142217529&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=MHKS996FUgal6Da4UGaFvIpoB0vdXQo12uWOGW6Qujn-Cf0EN3ri9U9MxJMi0OkNM0zi7HykmUhwMl1G-BcE3IaWzwvfwfHnc7jcmP3XnQ6mHAZgI1sZSR7Cn2dy8k98nXe331WdNTwDTysvplZhB6IF4wH76jQyOQfP9uzwtytuwxwAYe5oxulD5t6v8aq5ifFNazAgG-TYzz47yd9hTywdy-wNcIeKNx85bMXJopz6epo1z6hWTKj03HyMTjo17uqdZ9GV6t1VQ98rmtMZa5XCmrtzwHGLYGX9oFBIYB0vRU4gHD5eZZf50TA1Cc1px72ov08W_4mucf2gWBVXAQ&h=8rbDwVkJcAvcUz0GAzsF46M4z5Krt2oRAAT4jN98_Qw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4", + "name": "32624318-6F39-4A87-842C-F072EC5795C4", "status": "Deleting", "startTime": + "2026-01-01T07:11:53.6370000Z"}' headers: Cache-Control: - no-cache @@ -917,7 +616,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:19:04 GMT + - Thu, 01 Jan 2026 07:12:04 GMT Expires: - '-1' Pragma: @@ -947,14 +646,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4?api-version=2022-07-01-preview&t=639028483142217529&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=MHKS996FUgal6Da4UGaFvIpoB0vdXQo12uWOGW6Qujn-Cf0EN3ri9U9MxJMi0OkNM0zi7HykmUhwMl1G-BcE3IaWzwvfwfHnc7jcmP3XnQ6mHAZgI1sZSR7Cn2dy8k98nXe331WdNTwDTysvplZhB6IF4wH76jQyOQfP9uzwtytuwxwAYe5oxulD5t6v8aq5ifFNazAgG-TYzz47yd9hTywdy-wNcIeKNx85bMXJopz6epo1z6hWTKj03HyMTjo17uqdZ9GV6t1VQ98rmtMZa5XCmrtzwHGLYGX9oFBIYB0vRU4gHD5eZZf50TA1Cc1px72ov08W_4mucf2gWBVXAQ&h=8rbDwVkJcAvcUz0GAzsF46M4z5Krt2oRAAT4jN98_Qw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4", + "name": "32624318-6F39-4A87-842C-F072EC5795C4", "status": "Deleting", "startTime": + "2026-01-01T07:11:53.6370000Z"}' headers: Cache-Control: - no-cache @@ -965,7 +664,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:19:12 GMT + - Thu, 01 Jan 2026 07:12:14 GMT Expires: - '-1' Pragma: @@ -995,14 +694,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4?api-version=2022-07-01-preview&t=639028483142217529&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=MHKS996FUgal6Da4UGaFvIpoB0vdXQo12uWOGW6Qujn-Cf0EN3ri9U9MxJMi0OkNM0zi7HykmUhwMl1G-BcE3IaWzwvfwfHnc7jcmP3XnQ6mHAZgI1sZSR7Cn2dy8k98nXe331WdNTwDTysvplZhB6IF4wH76jQyOQfP9uzwtytuwxwAYe5oxulD5t6v8aq5ifFNazAgG-TYzz47yd9hTywdy-wNcIeKNx85bMXJopz6epo1z6hWTKj03HyMTjo17uqdZ9GV6t1VQ98rmtMZa5XCmrtzwHGLYGX9oFBIYB0vRU4gHD5eZZf50TA1Cc1px72ov08W_4mucf2gWBVXAQ&h=8rbDwVkJcAvcUz0GAzsF46M4z5Krt2oRAAT4jN98_Qw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Deleting", "startTime": - "2025-09-03T09:18:57.5170000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4", + "name": "32624318-6F39-4A87-842C-F072EC5795C4", "status": "Deleting", "startTime": + "2026-01-01T07:11:53.6370000Z"}' headers: Cache-Control: - no-cache @@ -1013,7 +712,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:19:29 GMT + - Thu, 01 Jan 2026 07:12:24 GMT Expires: - '-1' Pragma: @@ -1043,14 +742,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/627A7B84-6B25-4FEA-8653-0ADE829C72CC?api-version=2022-07-01-preview&t=638924879381357299&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=hwMnnos8O3zdF7hA4lS6spbjyMQBVa_f_s06aYaTNsl2E4KCXIWiAWxAmAg_k41-YaMkFFI_cXoCMQ77W1QzVLNQMlJk_B5sB6DV7D7ABUZbvbYEFHHX2kOn_9vL5KoqWSlCXM2q_KXgKwm0W7OCy0gWJGUeBvGNm6yTZFDPQY6tt20ihUMxX-3-wviHFZ5qPR9QeKSaAEzltOLgaeRYdSgybpln8KjVaQJ0ZOTHkZ_o9yjSx0LN-VxjVK8GZ2LXeizFgCUTB5uN5S1DNJ19aUqUXSW_dF_ELxP2wS1Xsu8j2LKoPVZzz4IVEISdBFR_ixaxexjy7hF-_r6GJSx5NA&h=BV2UNiqaQ6srCxBDHIX-GGGhmQZz7f98b9fPuTBpswE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4?api-version=2022-07-01-preview&t=639028483142217529&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=MHKS996FUgal6Da4UGaFvIpoB0vdXQo12uWOGW6Qujn-Cf0EN3ri9U9MxJMi0OkNM0zi7HykmUhwMl1G-BcE3IaWzwvfwfHnc7jcmP3XnQ6mHAZgI1sZSR7Cn2dy8k98nXe331WdNTwDTysvplZhB6IF4wH76jQyOQfP9uzwtytuwxwAYe5oxulD5t6v8aq5ifFNazAgG-TYzz47yd9hTywdy-wNcIeKNx85bMXJopz6epo1z6hWTKj03HyMTjo17uqdZ9GV6t1VQ98rmtMZa5XCmrtzwHGLYGX9oFBIYB0vRU4gHD5eZZf50TA1Cc1px72ov08W_4mucf2gWBVXAQ&h=8rbDwVkJcAvcUz0GAzsF46M4z5Krt2oRAAT4jN98_Qw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/627A7B84-6B25-4FEA-8653-0ADE829C72CC", - "name": "627A7B84-6B25-4FEA-8653-0ADE829C72CC", "status": "Succeeded", "startTime": - "2025-09-03T09:18:57.5170000Z", "endTime": "2025-09-03T09:19:29.1830000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/32624318-6F39-4A87-842C-F072EC5795C4", + "name": "32624318-6F39-4A87-842C-F072EC5795C4", "status": "Succeeded", "startTime": + "2026-01-01T07:11:53.6370000Z", "endTime": "2026-01-01T07:12:30.3570000Z"}' headers: Cache-Control: - no-cache @@ -1061,7 +760,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:00 GMT + - Thu, 01 Jan 2026 07:12:37 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 f876e5bf..7e583929 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.0.0 + - ms-fabric-cli-test/1.3.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": "F32", "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: - - Wed, 03 Sep 2025 09:20:05 GMT + - Thu, 01 Jan 2026 07:12:42 GMT Pragma: - no-cache RequestId: - - 150ea10d-1157-4371-b88e-04c85d1ee99c + - f443fa1e-1a6d-46a6-a9df-b807cec99b56 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.3.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/D0B7662A-D69F-4905-A5D8-DF08710EB2CD?api-version=2022-07-01-preview&t=638924880078926987&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=xEra5bNvR0cpBlYNa5mAJ6kOZ7BUHYGmlzQSSDFud3zGla6tK11Uad_pXABfyKnQ8EoRK-Izi0_5-4mqMLZ4NAYPdiTo8VR9BD1deAzQgCmunSDDGjBqwBGSh31nTpHU1XNh93k5Uz_GpIdfMTG2jj2wZtc-2p_Slb15Iw6hskxBD_wIwbmdaVtvzBnQ6rVkrOR6jiN5wFgcHFdJKAtstlZ1f87d4xZaBKGQNAe3uXf30YCfnS7mNpATycalXUTQPvTqN3E_bqDUvqRlwCZFXwLpjWZ7hZTouj8_YTAxvu-wbNTNEDeCkLSfLblbW9NkThRMh9vJm01Btp_ftJJPQA&h=dKKjANYAziZebyFkdVrT3ayxRPUd4McPZEweUwZR_kQ + - 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 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 09:20:07 GMT + - Thu, 01 Jan 2026 07:12:47 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/D0B7662A-D69F-4905-A5D8-DF08710EB2CD?api-version=2022-07-01-preview&t=638924880079083366&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=IHbgKe7h0w0aBsXwO4GsilGEML2-2BjB4EgKziFQVLgVfCQ5HcOGYwzepb0mvFjwus8PUfC7SRKhm7AZNHuEjStbINz8U9vdnn1_vh1dRTPhwhnRfPoAsW6OcSQHktkx2Ltq3b2IUfY-l054CDTBrP3ZdEPo7uS0g2Dc9AsDAzhSLgHUOsf5LRCJb3mDz6efbA1LwDq4jeFm-7dQU9dlA9gxaYCc81GAMpskHJ9SEr0pzUd0z-l6B79HoYRbNurU5Bp_uZuT3yPB_-nfS07Eufmy3x6D0eKdw5f2H1O9kgXsOHAog9zQ48zwQSHDtcAUaVpRPDv8HG9_vOg4WpNSUA&h=rg3y5d_RLa2iCplOqzWsLDZFco6aPMSIGvVW2uaXWu4 + - 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 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.3.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D0B7662A-D69F-4905-A5D8-DF08710EB2CD?api-version=2022-07-01-preview&t=638924880078926987&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=xEra5bNvR0cpBlYNa5mAJ6kOZ7BUHYGmlzQSSDFud3zGla6tK11Uad_pXABfyKnQ8EoRK-Izi0_5-4mqMLZ4NAYPdiTo8VR9BD1deAzQgCmunSDDGjBqwBGSh31nTpHU1XNh93k5Uz_GpIdfMTG2jj2wZtc-2p_Slb15Iw6hskxBD_wIwbmdaVtvzBnQ6rVkrOR6jiN5wFgcHFdJKAtstlZ1f87d4xZaBKGQNAe3uXf30YCfnS7mNpATycalXUTQPvTqN3E_bqDUvqRlwCZFXwLpjWZ7hZTouj8_YTAxvu-wbNTNEDeCkLSfLblbW9NkThRMh9vJm01Btp_ftJJPQA&h=dKKjANYAziZebyFkdVrT3ayxRPUd4McPZEweUwZR_kQ + 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 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D0B7662A-D69F-4905-A5D8-DF08710EB2CD", - "name": "D0B7662A-D69F-4905-A5D8-DF08710EB2CD", "status": "Provisioning", - "startTime": "2025-09-03T09:20:07.1870000Z"}' - 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 09:20: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/D0B7662A-D69F-4905-A5D8-DF08710EB2CD?api-version=2022-07-01-preview&t=638924880078926987&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=xEra5bNvR0cpBlYNa5mAJ6kOZ7BUHYGmlzQSSDFud3zGla6tK11Uad_pXABfyKnQ8EoRK-Izi0_5-4mqMLZ4NAYPdiTo8VR9BD1deAzQgCmunSDDGjBqwBGSh31nTpHU1XNh93k5Uz_GpIdfMTG2jj2wZtc-2p_Slb15Iw6hskxBD_wIwbmdaVtvzBnQ6rVkrOR6jiN5wFgcHFdJKAtstlZ1f87d4xZaBKGQNAe3uXf30YCfnS7mNpATycalXUTQPvTqN3E_bqDUvqRlwCZFXwLpjWZ7hZTouj8_YTAxvu-wbNTNEDeCkLSfLblbW9NkThRMh9vJm01Btp_ftJJPQA&h=dKKjANYAziZebyFkdVrT3ayxRPUd4McPZEweUwZR_kQ - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D0B7662A-D69F-4905-A5D8-DF08710EB2CD", - "name": "D0B7662A-D69F-4905-A5D8-DF08710EB2CD", "status": "Provisioning", - "startTime": "2025-09-03T09:20:07.1870000Z"}' - 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 09:20:08 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/D0B7662A-D69F-4905-A5D8-DF08710EB2CD?api-version=2022-07-01-preview&t=638924880078926987&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=xEra5bNvR0cpBlYNa5mAJ6kOZ7BUHYGmlzQSSDFud3zGla6tK11Uad_pXABfyKnQ8EoRK-Izi0_5-4mqMLZ4NAYPdiTo8VR9BD1deAzQgCmunSDDGjBqwBGSh31nTpHU1XNh93k5Uz_GpIdfMTG2jj2wZtc-2p_Slb15Iw6hskxBD_wIwbmdaVtvzBnQ6rVkrOR6jiN5wFgcHFdJKAtstlZ1f87d4xZaBKGQNAe3uXf30YCfnS7mNpATycalXUTQPvTqN3E_bqDUvqRlwCZFXwLpjWZ7hZTouj8_YTAxvu-wbNTNEDeCkLSfLblbW9NkThRMh9vJm01Btp_ftJJPQA&h=dKKjANYAziZebyFkdVrT3ayxRPUd4McPZEweUwZR_kQ - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D0B7662A-D69F-4905-A5D8-DF08710EB2CD", - "name": "D0B7662A-D69F-4905-A5D8-DF08710EB2CD", "status": "Provisioning", - "startTime": "2025-09-03T09:20:07.1870000Z"}' - 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 09:20:08 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/D0B7662A-D69F-4905-A5D8-DF08710EB2CD?api-version=2022-07-01-preview&t=638924880078926987&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=xEra5bNvR0cpBlYNa5mAJ6kOZ7BUHYGmlzQSSDFud3zGla6tK11Uad_pXABfyKnQ8EoRK-Izi0_5-4mqMLZ4NAYPdiTo8VR9BD1deAzQgCmunSDDGjBqwBGSh31nTpHU1XNh93k5Uz_GpIdfMTG2jj2wZtc-2p_Slb15Iw6hskxBD_wIwbmdaVtvzBnQ6rVkrOR6jiN5wFgcHFdJKAtstlZ1f87d4xZaBKGQNAe3uXf30YCfnS7mNpATycalXUTQPvTqN3E_bqDUvqRlwCZFXwLpjWZ7hZTouj8_YTAxvu-wbNTNEDeCkLSfLblbW9NkThRMh9vJm01Btp_ftJJPQA&h=dKKjANYAziZebyFkdVrT3ayxRPUd4McPZEweUwZR_kQ - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D0B7662A-D69F-4905-A5D8-DF08710EB2CD", - "name": "D0B7662A-D69F-4905-A5D8-DF08710EB2CD", "status": "Succeeded", "startTime": - "2025-09-03T09:20:07.1870000Z", "endTime": "2025-09-03T09:20:10.6400000Z"}' + 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"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:11 GMT + - Thu, 01 Jan 2026 07:12:58 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.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + 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"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:15 GMT + - Thu, 01 Jan 2026 07:13:02 GMT Pragma: - no-cache RequestId: - - fe3cf90e-e98e-4483-b2d8-ef0e2b781772 + - 008cbdff-24ea-47c6-9867-c9feff448257 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.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", + "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"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:18 GMT + - Thu, 01 Jan 2026 07:13:06 GMT Pragma: - no-cache RequestId: - - 1a2e35f6-a18e-4f7e-9bf7-15d294541647 + - 4ab76530-a3c8-4add-9db6-56b3f6db8133 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,15 +267,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + 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"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -428,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:25 GMT + - Thu, 01 Jan 2026 07:13:09 GMT Pragma: - no-cache RequestId: - - 9024bfd0-32b9-47ba-9566-674063ac72f9 + - c25f6efa-5a23-4d77-bf7b-f8d8445f81f8 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.3.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 09:20:25 GMT + - Thu, 01 Jan 2026 07:13:10 GMT Expires: - '-1' Pragma: @@ -511,14 +367,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", + "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"}]}' headers: Access-Control-Expose-Headers: @@ -528,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:30 GMT + - Thu, 01 Jan 2026 07:13:13 GMT Pragma: - no-cache RequestId: - - 42a680a0-8da9-445b-ae6b-87128025963b + - a60ba45a-ceb9-4f7a-81af-939d58af80b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -544,7 +400,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: @@ -562,7 +418,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: @@ -575,13 +431,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 09:20:30 GMT + - Thu, 01 Jan 2026 07:13:13 GMT Expires: - '-1' Pragma: @@ -611,7 +467,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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 09:20:31 GMT + - Thu, 01 Jan 2026 07:13:13 GMT Expires: - '-1' Pragma: @@ -649,9 +505,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"provisioningState": "Succeeded", "state": "Active", "administration": - {"members": ["mocked@admin_test_user"]}}, "location": "West Europe", "sku": - {"name": "F4", "tier": "Fabric"}}' + body: '{"sku": {"name": "F4", "tier": "Fabric"}}' headers: Accept: - '*/*' @@ -660,11 +514,11 @@ interactions: Connection: - keep-alive Content-Length: - - '321' + - '69' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: @@ -676,21 +530,21 @@ interactions: {}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/67EED0DE-1B49-469C-90ED-7AC1591AA6BE?api-version=2022-07-01-preview&t=638924880330984926&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=YY7Q5Wlw8kTG7sDFklj3ZUTdNJElvVVq4z0EJt2a2DK_PjEO-FiSgQXXbsc5URWUp3TZzMu1eFlbu8_KAwc_9QEyj48WiGOtylvXQnSDvoboo411k5bezorrrBbRKyYBgNTEemGHGpgv35qwDkPE81aN-cIEZcNKVF3HwILhB2S0jT2b6I69DZPHuTx7KljTj5Q2ypMeiokpk3PLyD96XsH0MiPe1ygDgPUMBRI7xgjwDcXTzRtw4ovZPFtBCoDTD4Sd7mdcua38DR-igCw-2g7qJTsoa98YiVw_ouskq-lNZbixnoukue390lPfu0sREepL311w7k1O5CA_bDi--A&h=90Fj_WDgC0IkbdEjfwNgfWAf_hsmN6JfOqWZ8IJKZeU + - 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 Cache-Control: - no-cache Content-Length: - - '423' + - '439' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:32 GMT + - Thu, 01 Jan 2026 07:13:15 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/67EED0DE-1B49-469C-90ED-7AC1591AA6BE?api-version=2022-07-01-preview&t=638924880330984926&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=QHagVBzg-1jJDA-INshEem1I2Jh-eVypyFfIgHtrMSousadm8YYB09VyswuWjAEKa2s-qXo7KbZbRUTKAZhW5SrdcVnQg3LTXlvERzLPbqPampkOUvbAVJ79X4QSWqNcO33KcE2Nh-KBByT_Ab8Rn2A8ceihz0dMwEBKwH3fw-ZZnz35TOgecKkDP3AR2Ut1htCYWXwv_xcLxLI6cg2qPVMhMTIi2msWATKT5doKFI84D66Ekh_kco2gXHAbcd05HKIdiA0yrM70a11DbgpIclqCEAMfzoL6tuD6vqGxEkHpOWLThLL6LRdPX4934mKJAClKY5o-l3aDavONk8Nh-A&h=zIpFiUu2xyo4hhYPU8sBkHiS8zZsaCvaPn80T77pomM + - 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 Pragma: - no-cache Strict-Transport-Security: @@ -718,14 +572,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/67EED0DE-1B49-469C-90ED-7AC1591AA6BE?api-version=2022-07-01-preview&t=638924880330984926&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=YY7Q5Wlw8kTG7sDFklj3ZUTdNJElvVVq4z0EJt2a2DK_PjEO-FiSgQXXbsc5URWUp3TZzMu1eFlbu8_KAwc_9QEyj48WiGOtylvXQnSDvoboo411k5bezorrrBbRKyYBgNTEemGHGpgv35qwDkPE81aN-cIEZcNKVF3HwILhB2S0jT2b6I69DZPHuTx7KljTj5Q2ypMeiokpk3PLyD96XsH0MiPe1ygDgPUMBRI7xgjwDcXTzRtw4ovZPFtBCoDTD4Sd7mdcua38DR-igCw-2g7qJTsoa98YiVw_ouskq-lNZbixnoukue390lPfu0sREepL311w7k1O5CA_bDi--A&h=90Fj_WDgC0IkbdEjfwNgfWAf_hsmN6JfOqWZ8IJKZeU + 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 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/67EED0DE-1B49-469C-90ED-7AC1591AA6BE", - "name": "67EED0DE-1B49-469C-90ED-7AC1591AA6BE", "status": "Succeeded", "startTime": - "2025-09-03T09:20:32.4270000Z", "endTime": "2025-09-03T09:20:33.1630000Z"}' + 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"}' headers: Cache-Control: - no-cache @@ -736,7 +590,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:33 GMT + - Thu, 01 Jan 2026 07:13:26 GMT Expires: - '-1' Pragma: @@ -766,14 +620,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -783,15 +637,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '464' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:36 GMT + - Thu, 01 Jan 2026 07:13:29 GMT Pragma: - no-cache RequestId: - - e2f0663c-f283-4d4e-ae53-dff3a4723350 + - 2841c422-bfc0-43f9-83e8-2e24b4786c30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -799,7 +653,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: @@ -817,14 +671,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -834,15 +688,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '464' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:40 GMT + - Thu, 01 Jan 2026 07:13:32 GMT Pragma: - no-cache RequestId: - - aec5faa1-29f3-443f-bb77-09868d45cc78 + - fbcacf83-c6c2-4ca5-b59a-b60be6be199a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -850,7 +704,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: @@ -868,7 +722,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: @@ -881,13 +735,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 09:20:40 GMT + - Thu, 01 Jan 2026 07:13:34 GMT Expires: - '-1' Pragma: @@ -917,7 +771,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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: @@ -930,13 +784,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 09:20:41 GMT + - Thu, 01 Jan 2026 07:13:34 GMT Expires: - '-1' Pragma: @@ -966,14 +820,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.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": "a8d41d2d-24af-4ace-9899-753a33b0a5b6", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -983,15 +837,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '493' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:45 GMT + - Thu, 01 Jan 2026 07:13:39 GMT Pragma: - no-cache RequestId: - - 8394b85a-28b2-4415-8314-1ed631a63d99 + - 47ec3764-ad60-4d1b-bcd0-cf73c292a320 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -999,7 +853,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: @@ -1017,218 +871,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.3.1 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 09:20:45 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": "F4", "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 09:20: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-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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 09:20:46 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=P92d-Ps3XklPOoGip28ZeFsshCFjSIpCe_nDoKbmaq4IvkbcgWQs8cXCPYD6byB9V2em6YJatCnZyn49vJ-KQKt4y3ZihxEzJvfpnsWq4NuFTXwDuRYKIshjrf7lG08XN1sAZVem7Ff4Pu5IWcTFclw8la8qwFn7xCzhg-GpNnI0xtwv__-IfzDir7Zp3AgEptCMcYHA3mhm6stdh690SCARTnXVWaX-OqMcEBKRjCtY5aM9u5dGxkYqShLzXUyDav5-eGMAD2XYRS7WTZiNnW2zgKYVBnFNL2q_CEbwh7W1OR1qLSAT6MM8puxuueWPq5g4OoHpzdbHDaUMy5QGmw&h=9lsDMScEM72S-Ram3nnRB5Bjls2njkkUSSHf90l9_CY - 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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' - 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 09:20:47 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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' + string: '{"error": {"code": "SubscriptionNotFound", "message": "The subscription + ''00000000-0000-0000-0000-000000000000'' could not be found."}}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:47 GMT + - Thu, 01 Jan 2026 07:13:40 GMT Expires: - '-1' Pragma: @@ -1239,13 +897,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: 404 + message: Not Found - request: body: null headers: @@ -1258,25 +912,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' + 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 09:20:48 GMT + - Thu, 01 Jan 2026 07:13:41 GMT Expires: - '-1' Pragma: @@ -1287,10 +938,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1306,25 +953,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c + 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/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' + 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": "F32", "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": "F4", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2540' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:20:50 GMT + - Thu, 01 Jan 2026 07:13:44 GMT Expires: - '-1' Pragma: @@ -1335,10 +986,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1351,78 +998,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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' - 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 09:20: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 + - '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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c + - 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: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' + 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 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 09:21:02 GMT + - Thu, 01 Jan 2026 07:13:45 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 Pragma: - no-cache Strict-Transport-Security: @@ -1436,8 +1037,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1450,14 +1051,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c + 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 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Deleting", "startTime": - "2025-09-03T09:20:47.0070000Z"}' + 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"}' headers: Cache-Control: - no-cache @@ -1468,7 +1069,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:17 GMT + - Thu, 01 Jan 2026 07:13:55 GMT Expires: - '-1' Pragma: @@ -1498,14 +1099,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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/1094EF00-486D-4CC8-9464-3072C4266DDC?api-version=2022-07-01-preview&t=638924880476290859&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=IvjXhnfsHeyvsTGozfUPNntd4UgpMi_zUxQgcfVYl8SlpYeKCKnkljb_XwdtTJtZzkISZk4Usg1JEWcRPMAOJV0Kw3uL4ujDeoXpgm59UHlCj9eDv6uBPJUZ8HMnpk5_QIvaoo0IsXBiblYS2YSgO1Qjb2jz4wdj9PHZiRH8Qwk4gtrNQm0sp8K3zvq0pB61HVRuTqdSuf5GsWAOadul8kuE_9XtIaLtyYyNpnqoi0KXDq4fB5uP0MZv-bt-G6FrTfI-p_xDmiSu7RNCJmWOh1CAvQ6bN4OPqf7PVwB6g5KVgCwMlADtVqMmjfOnFKRNJazBxjaIzPLkrzh5LeHZ2Q&h=a4oQwTbr0W_3DD7sY4ka7aIoRbwvTr7ECKVadNkYV3c + 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 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/1094EF00-486D-4CC8-9464-3072C4266DDC", - "name": "1094EF00-486D-4CC8-9464-3072C4266DDC", "status": "Succeeded", "startTime": - "2025-09-03T09:20:47.0070000Z", "endTime": "2025-09-03T09:21:27.2300000Z"}' + 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"}' headers: Cache-Control: - no-cache @@ -1516,7 +1117,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 09:21:50 GMT + - Thu, 01 Jan 2026 07:14:07 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/test_set.py b/tests/test_commands/test_set.py index 378ee2aa..a55e8c61 100644 --- a/tests/test_commands/test_set.py +++ b/tests/test_commands/test_set.py @@ -228,7 +228,6 @@ def test_set_workspace_success( ) # Assert - # Cache is only updated when displayName changes, not for other properties upsert_workspace_to_cache.assert_not_called() mock_print_done.assert_called_once() From 768595b2320db3ffb63ed2693c3a67fb31802f60 Mon Sep 17 00:00:00 2001 From: may-hartov Date: Thu, 1 Jan 2026 13:54:39 +0200 Subject: [PATCH 5/6] changie --- .changes/unreleased/optimization-20260101-115402.yaml | 3 +++ src/fabric_cli/commands/fs/set/fab_fs_set_item.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .changes/unreleased/optimization-20260101-115402.yaml diff --git a/.changes/unreleased/optimization-20260101-115402.yaml b/.changes/unreleased/optimization-20260101-115402.yaml new file mode 100644 index 00000000..ab87d2ba --- /dev/null +++ b/.changes/unreleased/optimization-20260101-115402.yaml @@ -0,0 +1,3 @@ +kind: optimization +body: set command - refactor the update flow to construct PATCH request bodies by extracting only the updated properties from the GET payload. +time: 2026-01-01T11:54:02.344718831Z diff --git a/src/fabric_cli/commands/fs/set/fab_fs_set_item.py b/src/fabric_cli/commands/fs/set/fab_fs_set_item.py index e05be977..5b375dc8 100644 --- a/src/fabric_cli/commands/fs/set/fab_fs_set_item.py +++ b/src/fabric_cli/commands/fs/set/fab_fs_set_item.py @@ -57,7 +57,9 @@ def exec(item: Item, args: Namespace) -> None: item_api.update_item(args, item_update_payload, item_uri=True) if fab_constant.ITEM_QUERY_DISPLAY_NAME in update_payload_dict: - new_item_name = update_payload_dict[fab_constant.ITEM_QUERY_DISPLAY_NAME] + new_item_name = update_payload_dict[ + fab_constant.ITEM_QUERY_DISPLAY_NAME + ] item._name = new_item_name utils_mem_store.upsert_item_to_cache(item) @@ -69,7 +71,6 @@ def _update_item_definition( query_value: str, input_value: str, ) -> dict: - """Update item definition with base64 decode/encode.""" try: updated_def = utils_set.update_item_definition( item_def, @@ -89,7 +90,6 @@ def _update_item_metadata( query_value: str, input_value: str, ) -> dict: - """Update item metadata without base64 encoding.""" try: return utils_set.update_fabric_element( item_metadata, From 8ebbcddd477ca321f92e0aeca148e6b6afb4139a Mon Sep 17 00:00:00 2001 From: may-hartov Date: Thu, 1 Jan 2026 15:42:16 +0200 Subject: [PATCH 6/6] fixed record --- .../test_set/test_set_connection_success.yaml | 2524 ++++++++++------- 1 file changed, 1438 insertions(+), 1086 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml index e84e2cd3..cce9f8dc 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_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.0.0 method: GET uri: https://api.fabric.microsoft.com/v1/connections response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1313' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:53 GMT + - Wed, 03 Sep 2025 09:21:57 GMT Pragma: - no-cache RequestId: - - bbd3339d-fd90-49e4-8a54-35e8b2aed621 + - f316fcaf-5b94-41d7-8762-8edcbf6c2140 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -41,7 +41,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + - https://wabi-west-europe-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.0.0 method: GET uri: https://api.fabric.microsoft.com/v1/connections/supportedConnectionTypes response: @@ -69,175 +69,157 @@ interactions: null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - ["Basic", "ServicePrincipal", "WorkspaceIdentity"]}, {"type": "AnalysisServices", + "Encrypted"], "supportsSkipTestConnection": false}, {"type": "AnalysisServices", "creationMethods": [{"name": "AnalysisServices", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - ["Basic", "WorkspaceIdentity"]}, {"type": "SharePoint", "creationMethods": - [{"name": "SharePointList", "parameters": [{"name": "sharePointSiteUrl", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SharePoint", + "creationMethods": [{"name": "SharePointList", "parameters": [{"name": "sharePointSiteUrl", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - ["Anonymous", "ServicePrincipal", "WorkspaceIdentity"]}, {"type": "Web", "creationMethods": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Web", "creationMethods": [{"name": "Web", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "Basic", "OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": true, "supportedCredentialTypesForUsageInUserControlledCode": - ["Anonymous", "Basic", "ServicePrincipal", "WorkspaceIdentity"]}, {"type": - "OData", "creationMethods": [{"name": "OData", "parameters": [{"name": "url", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["Anonymous", "Basic", "Key", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": true, "supportedCredentialTypesForUsageInUserControlledCode": - ["Anonymous", "Basic", "Key"]}, {"type": "MySql", "creationMethods": [{"name": - "MySql", "parameters": [{"name": "server", "dataType": "Text", "required": + ["NotEncrypted"], "supportsSkipTestConnection": true}, {"type": "OData", "creationMethods": + [{"name": "OData", "parameters": [{"name": "url", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", + "Basic", "Key", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": true}, {"type": "MySql", "creationMethods": + [{"name": "MySql", "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": - ["Basic"]}, {"type": "PostgreSQL", "creationMethods": [{"name": "PostgreSql", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - ["Basic"]}, {"type": "AzureTables", "creationMethods": [{"name": "AzureTables", - "parameters": [{"name": "account", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "domain", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": ["Key", "WorkspaceIdentity"]}, - {"type": "AzureBlobs", "creationMethods": [{"name": "AzureBlobs", "parameters": - [{"name": "account", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "domain", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Anonymous", "Key", "OAuth2", "SharedAccessSignature", - "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - ["Anonymous", "Key", "SharedAccessSignature", "ServicePrincipal", "WorkspaceIdentity"]}, - {"type": "GoogleAnalytics", "creationMethods": [{"name": "GoogleAnalytics", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - []}, {"type": "Salesforce", "creationMethods": [{"name": "Salesforce", "parameters": - [{"name": "loginServer", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "classInfo", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - []}, {"type": "AdobeAnalytics", "creationMethods": [{"name": "AdobeAnalytics", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - []}, {"type": "AzureDataLakeStorage", "creationMethods": [{"name": "AzureDataLakeStorage", + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "PostgreSQL", "creationMethods": [{"name": "PostgreSql", "parameters": [{"name": + "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "database", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "AzureTables", "creationMethods": [{"name": "AzureTables", "parameters": [{"name": + "account", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "domain", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureBlobs", + "creationMethods": [{"name": "AzureBlobs", "parameters": [{"name": "account", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "domain", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Anonymous", "Key", "OAuth2", "SharedAccessSignature", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "GoogleAnalytics", "creationMethods": + [{"name": "GoogleAnalytics", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Salesforce", "creationMethods": [{"name": "Salesforce", + "parameters": [{"name": "loginServer", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "classInfo", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AdobeAnalytics", + "creationMethods": [{"name": "AdobeAnalytics", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AzureDataLakeStorage", "creationMethods": [{"name": "AzureDataLakeStorage", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "path", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "SharedAccessSignature", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - ["Key", "SharedAccessSignature", "ServicePrincipal", "WorkspaceIdentity"]}, - {"type": "Exchange", "creationMethods": [{"name": "Exchange", "parameters": - [{"name": "emailAddress", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - []}, {"type": "appFigures", "creationMethods": [{"name": "appFigures.Tables", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Exchange", + "creationMethods": [{"name": "Exchange", "parameters": [{"name": "emailAddress", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "appFigures", "creationMethods": [{"name": "appFigures.Tables", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "GoogleBigQuery", "creationMethods": [{"name": "GoogleBigQuery.Database", - "parameters": [{"name": "BillingProject", "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": - "ProjectId", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - 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": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "PowerBI", "creationMethods": [{"name": "PowerBI.Dataflows", "parameters": - []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Cds", "creationMethods": [{"name": "Cds.Entities", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "ReorderColumns", "dataType": "Boolean", "required": false, "allowedValues": - null}, {"name": "UseFormattedValue", "dataType": "Boolean", "required": false, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "DataLake", "creationMethods": [{"name": "DataLake.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "GoogleBigQuery", + "creationMethods": [{"name": "GoogleBigQuery.Database", "parameters": [{"name": + "BillingProject", "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": "ProjectId", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", + "Encrypted"], "supportsSkipTestConnection": false}, {"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": + false}, {"type": "PowerBI", "creationMethods": [{"name": "PowerBI.Dataflows", + "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Cds", "creationMethods": + [{"name": "Cds.Entities", "parameters": [{"name": "url", "dataType": "Text", + "required": true, "allowedValues": null}, {"name": "ReorderColumns", "dataType": + "Boolean", "required": false, "allowedValues": null}, {"name": "UseFormattedValue", + "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "DataLake", "creationMethods": [{"name": "DataLake.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "PageSize", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "DataWorld", "creationMethods": [{"name": "DataWorld.Dataset", "parameters": - [{"name": "owner", "dataType": "Text", "required": true, "allowedValues": + false}, {"type": "DataWorld", "creationMethods": [{"name": "DataWorld.Dataset", + "parameters": [{"name": "owner", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "id", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "query", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "DocumentDB", "creationMethods": [{"name": "DocumentDB.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "collection", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "DocumentDB", + "creationMethods": [{"name": "DocumentDB.Contents", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "database", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "collection", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Dynamics365BusinessCentral", "creationMethods": [{"name": - "Dynamics365BusinessCentral.ApiContentsWithOptions", "parameters": [{"name": - "environment", "dataType": "Text", "required": false, "allowedValues": null}, - {"name": "company", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "apiRoute", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "UseReadOnlyReplica", "dataType": "Boolean", "required": false, - "allowedValues": null}, {"name": "AcceptLanguage", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "Timeout", "dataType": "Duration", - "required": false, "allowedValues": null}, {"name": "ODataMaxPageSize", "dataType": - "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "Dynamics 365 Business Central (on-premises)", "creationMethods": [{"name": - "Dynamics365BusinessCentralOnPremises.Contents", "parameters": [{"name": "url", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "company", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "Dynamics NAV", "creationMethods": [{"name": "DynamicsNav.Contents", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "company", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "github", "creationMethods": [{"name": "Github.Tables", "parameters": - [{"name": "RepositoryOwner", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Repository", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics365BusinessCentral", + "creationMethods": [{"name": "Dynamics365BusinessCentral.ApiContentsWithOptions", + "parameters": [{"name": "environment", "dataType": "Text", "required": false, + "allowedValues": null}, {"name": "company", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "apiRoute", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "UseReadOnlyReplica", "dataType": + "Boolean", "required": false, "allowedValues": null}, {"name": "AcceptLanguage", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Timeout", + "dataType": "Duration", "required": false, "allowedValues": null}, {"name": + "ODataMaxPageSize", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureHive", "creationMethods": [{"name": "AzureHiveLLAP.Database", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics + 365 Business Central (on-premises)", "creationMethods": [{"name": "Dynamics365BusinessCentralOnPremises.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "company", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dynamics + NAV", "creationMethods": [{"name": "DynamicsNav.Contents", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "company", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "github", + "creationMethods": [{"name": "Github.Tables", "parameters": [{"name": "RepositoryOwner", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Repository", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"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": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"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": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "Impala", "creationMethods": [{"name": "Impala.Database", "parameters": [{"name": + "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "Implementation", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ConnectionTimeout", "dataType": "Duration", "required": false, "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureDataExplorer", "creationMethods": [{"name": "AzureDataExplorer.Contents", - "parameters": [{"name": "cluster", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "tableOrQuery", "dataType": "Text", "required": false, "allowedValues": + "Encrypted"], "supportsSkipTestConnection": false}, {"type": "AzureDataExplorer", + "creationMethods": [{"name": "AzureDataExplorer.Contents", "parameters": [{"name": + "cluster", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "database", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "tableOrQuery", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "MaxRows", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "MaxSize", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "NoTruncate", "dataType": "Boolean", "required": false, "allowedValues": @@ -251,492 +233,438 @@ interactions: "Number", "required": false, "allowedValues": null}, {"name": "NoTruncate", "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": "AdditionalSetStatements", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "LinkedIn", "creationMethods": [{"name": "LinkedIn.SalesNavigator", "parameters": - [{"name": "selectContracts", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "LinkedIn", + "creationMethods": [{"name": "LinkedIn.SalesNavigator", "parameters": [{"name": + "selectContracts", "dataType": "Text", "required": true, "allowedValues": ["All Contracts", "Selected Contracts"]}, {"name": "startAt", "dataType": "Date", "required": false, "allowedValues": null}, {"name": "endAt", "dataType": "Date", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "mixpanel", "creationMethods": [{"name": "Mixpanel.Tables", "parameters": - []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Netezza", "creationMethods": [{"name": "Netezza.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "ConnectionTimeout", "dataType": "Duration", "required": false, - "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Duration", - "required": false, "allowedValues": null}, {"name": "NormalizeDatabaseName", - "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": - "HierarchicalNavigation", "dataType": "Boolean", "required": false, "allowedValues": - null}, {"name": "CreateNavigationProperties", "dataType": "Boolean", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PlanviewEnterprise", "creationMethods": [{"name": "PlanviewEnterprise.Feed", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AmazonRedshift", "creationMethods": [{"name": "AmazonRedshift.Database", + false}, {"type": "mixpanel", "creationMethods": [{"name": "Mixpanel.Tables", + "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Netezza", + "creationMethods": [{"name": "Netezza.Database", "parameters": [{"name": "server", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ConnectionTimeout", + "dataType": "Duration", "required": false, "allowedValues": null}, {"name": + "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": + null}, {"name": "NormalizeDatabaseName", "dataType": "Boolean", "required": + false, "allowedValues": null}, {"name": "HierarchicalNavigation", "dataType": + "Boolean", "required": false, "allowedValues": null}, {"name": "CreateNavigationProperties", + "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], + "supportsSkipTestConnection": false}, {"type": "PlanviewEnterprise", "creationMethods": + [{"name": "PlanviewEnterprise.Feed", "parameters": [{"name": "url", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AmazonRedshift", "creationMethods": [{"name": "AmazonRedshift.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ProviderName", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "BatchSize", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Snowflake", "creationMethods": [{"name": "Snowflake.Databases", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "Snowflake", "creationMethods": [{"name": "Snowflake.Databases", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "warehouse", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Role", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "CreateNavigationProperties", "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": "ConnectionTimeout", "dataType": "Number", "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": - null}, {"type": "Spark", "creationMethods": [{"name": "AzureSpark.Tables", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "BatchSize", "dataType": "Number", "required": false, "allowedValues": - null}, {"name": "HierarchicalNavigation", "dataType": "Boolean", "required": - false, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", - "required": false, "allowedValues": null}]}, {"name": "ApacheSpark.Tables", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "protocol", "dataType": "Number", "required": true, "allowedValues": - ["0", "2"]}, {"name": "BatchSize", "dataType": "Number", "required": false, - "allowedValues": null}, {"name": "HierarchicalNavigation", "dataType": "Boolean", - "required": false, "allowedValues": null}, {"name": "Implementation", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SparkPost", "creationMethods": [{"name": "SparkPost.NavTable", "parameters": - [{"name": "DaysToAggregate", "dataType": "Number", "required": true, "allowedValues": + "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "Spark", "creationMethods": + [{"name": "AzureSpark.Tables", "parameters": [{"name": "server", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "BatchSize", "dataType": + "Number", "required": false, "allowedValues": null}, {"name": "HierarchicalNavigation", + "dataType": "Boolean", "required": false, "allowedValues": null}]}, {"name": + "ApacheSpark.Tables", "parameters": [{"name": "server", "dataType": "Text", + "required": true, "allowedValues": null}, {"name": "protocol", "dataType": + "Number", "required": true, "allowedValues": ["0", "2"]}, {"name": "BatchSize", + "dataType": "Number", "required": false, "allowedValues": null}, {"name": + "HierarchicalNavigation", "dataType": "Boolean", "required": false, "allowedValues": + null}, {"name": "Implementation", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SparkPost", + "creationMethods": [{"name": "SparkPost.NavTable", "parameters": [{"name": + "DaysToAggregate", "dataType": "Number", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SweetIQ", "creationMethods": [{"name": "SweetIQ.Tables", - "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Troux", "creationMethods": [{"name": "Troux.Feed", "parameters": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SweetIQ", + "creationMethods": [{"name": "SweetIQ.Tables", "parameters": []}], "supportedCredentialTypes": + ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Troux", "creationMethods": [{"name": "Troux.Feed", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "VSTS", "creationMethods": [{"name": "VSTS.AnalyticsViews", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "project", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Vertica", "creationMethods": [{"name": "Vertica.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Acterys", "creationMethods": [{"name": "Acterys.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ADPAnalytics", "creationMethods": [{"name": "ADPAnalytics.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "VSTS", "creationMethods": + [{"name": "VSTS.AnalyticsViews", "parameters": [{"name": "url", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "project", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "Vertica", "creationMethods": + [{"name": "Vertica.Database", "parameters": [{"name": "server", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Acterys", "creationMethods": [{"name": "Acterys.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Anaplan", "creationMethods": [{"name": "Anaplan.Contents", - "parameters": [{"name": "apiUrl", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "authUrl", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Asana", "creationMethods": [{"name": "Asana.Tables", "parameters": - [{"name": "link", "dataType": "Text", "required": true, "allowedValues": null}]}], + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ADPAnalytics", + "creationMethods": [{"name": "ADPAnalytics.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AssembleViews", "creationMethods": [{"name": "AssembleViews.Feed", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Anaplan", + "creationMethods": [{"name": "Anaplan.Contents", "parameters": [{"name": "apiUrl", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "authUrl", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "Asana", "creationMethods": + [{"name": "Asana.Tables", "parameters": [{"name": "link", "dataType": "Text", + "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AssembleViews", "creationMethods": [{"name": "AssembleViews.Feed", "parameters": [{"name": "resourceUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AutodeskConstructionCloud", "creationMethods": [{"name": - "AutodeskConstructionCloud.Feed", "parameters": [{"name": "region", "dataType": - "Text", "required": true, "allowedValues": ["Australia", "Canada", "Europe", - "Germany", "India", "Japan", "UK", "United States"]}]}], "supportedCredentialTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AutodeskConstructionCloud", + "creationMethods": [{"name": "AutodeskConstructionCloud.Feed", "parameters": + [{"name": "region", "dataType": "Text", "required": true, "allowedValues": + ["United States", "Europe", "Australia"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AutomationAnywhere", "creationMethods": [{"name": "AutomationAnywhere.Feed", + false}, {"type": "AutomationAnywhere", "creationMethods": [{"name": "AutomationAnywhere.Feed", "parameters": [{"name": "CRVersion", "dataType": "Text", "required": true, "allowedValues": ["10.x/11.x", "Automation 360", "11.3.5.1 Or Higher"]}, {"name": "CRHostName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AutomyDataAnalytics", "creationMethods": [{"name": "AutomyDataAnalytics.Contents", - "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "BI360", "creationMethods": [{"name": "BI360.Contents", "parameters": - [{"name": "Url", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "BitSightSecurityRatings", "creationMethods": [{"name": "BitSightSecurityRatings.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AutomyDataAnalytics", + "creationMethods": [{"name": "AutomyDataAnalytics.Contents", "parameters": + []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "BI360", + "creationMethods": [{"name": "BI360.Contents", "parameters": [{"name": "Url", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "BitSightSecurityRatings", "creationMethods": [{"name": "BitSightSecurityRatings.Contents", "parameters": [{"name": "company_guid", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "affects_rating_findings", "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "Bloomberg", "creationMethods": [{"name": "Bloomberg.Query", "parameters": - [{"name": "Bloomberg", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "BQECore", "creationMethods": [{"name": "BQECore.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "BuildingConnected", "creationMethods": [{"name": "BuildingConnected.Contents", + false}, {"type": "Bloomberg", "creationMethods": [{"name": "Bloomberg.Query", + "parameters": [{"name": "Bloomberg", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "BQECore", + "creationMethods": [{"name": "BQECore.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "BuildingConnected", "creationMethods": [{"name": "BuildingConnected.Contents", "parameters": [{"name": "rangeStart", "dataType": "DateTimeZone", "required": false, "allowedValues": null}, {"name": "rangeEnd", "dataType": "DateTimeZone", "required": false, "allowedValues": null}, {"name": "includeClosed", "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "CCHTagetik", "creationMethods": [{"name": "CCHTagetik.Contents2", "parameters": - [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "Database", "dataType": "Text", "required": true, "allowedValues": + false}, {"type": "CCHTagetik", "creationMethods": [{"name": "CCHTagetik.Contents", + "parameters": [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "Database", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "AW", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Dataset", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "StartDate", "dataType": "DateTime", "required": false, "allowedValues": - null}, {"name": "EndDate", "dataType": "DateTime", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CDataConnectCloud", "creationMethods": [{"name": "CDataConnectCloud.ContentsV2", - "parameters": [{"name": "Query", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CDataConnectCloud", + "creationMethods": [{"name": "CDataConnectCloud.ContentsV2", "parameters": + [{"name": "Query", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Celonis", "creationMethods": [{"name": "Celonis.Navigation", - "parameters": [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Cherwell", "creationMethods": [{"name": "Cherwell.SavedSearches", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Celonis", + "creationMethods": [{"name": "Celonis.Navigation", "parameters": [{"name": + "URL", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Cherwell", "creationMethods": [{"name": "Cherwell.SavedSearches", "parameters": [{"name": "API URL", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Client ID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Locale", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Saved Search URL", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CloudBluePSA", "creationMethods": [{"name": "CloudBluePSA.Feed", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "filter", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Cognite", "creationMethods": [{"name": "Cognite.Contents", - "parameters": [{"name": "project", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "environment", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CogniteDataSource", "creationMethods": [{"name": "CogniteDataSource.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CloudBluePSA", + "creationMethods": [{"name": "CloudBluePSA.Feed", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "filter", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Cognite", + "creationMethods": [{"name": "Cognite.Contents", "parameters": [{"name": "project", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "environment", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "CogniteDataSource", "creationMethods": [{"name": "CogniteDataSource.Contents", "parameters": [{"name": "project", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "organization", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Databricks", "creationMethods": [{"name": "Databricks.Catalogs", - "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "httpPath", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Catalog", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "Database", "dataType": "Text", "required": false, "allowedValues": - 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"]}]}], - "supportedCredentialTypes": ["OAuth2", "Key", "Basic", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "DatabricksMultiCloud", "creationMethods": [{"name": "DatabricksMultiCloud.Catalogs", - "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "httpPath", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Catalog", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Databricks", + "creationMethods": [{"name": "Databricks.Catalogs", "parameters": [{"name": + "host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "httpPath", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "Catalog", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Database", "dataType": "Text", "required": false, "allowedValues": - 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"]}]}], + false, "allowedValues": ["enabled", "disabled"]}]}], "supportedCredentialTypes": + ["OAuth2", "Key", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "DatabricksMultiCloud", "creationMethods": + [{"name": "DatabricksMultiCloud.Catalogs", "parameters": [{"name": "host", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "httpPath", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Catalog", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Database", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", + "dataType": "Text", "required": false, "allowedValues": ["enabled", "disabled"]}]}], "supportedCredentialTypes": ["OAuth2", "Key", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "DeltaSharing", "creationMethods": [{"name": "DeltaSharing.Contents", - "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "rowLimitHint", "dataType": "Number", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "DeltaSharing", + "creationMethods": [{"name": "DeltaSharing.Contents", "parameters": [{"name": + "host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "rowLimitHint", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Dremio", "creationMethods": [{"name": "Dremio.DatabasesV370", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "encryption", "dataType": "Text", "required": true, "allowedValues": - ["Enabled", "Disabled", "Enabled-PEM"]}, {"name": "engine", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "routingTag", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "routingQueue", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Dremio", + "creationMethods": [{"name": "Dremio.DatabasesV370", "parameters": [{"name": + "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "encryption", "dataType": "Text", "required": true, "allowedValues": ["Enabled", + "Disabled", "Enabled-PEM"]}, {"name": "engine", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "routingTag", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "routingQueue", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "DremioCloud", "creationMethods": [{"name": "DremioCloud.DatabasesByServerV370", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "projectId", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "engine", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "routingTag", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "routingQueue", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "encryption", "dataType": "Text", "required": false, "allowedValues": - ["Enabled-PEM"]}]}], "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "DynatraceGrail", "creationMethods": [{"name": "DynatraceGrail.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "QueryInput", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "ScanGBParameter", "dataType": "Number", "required": false, - "allowedValues": null}, {"name": "MaxResultParameter", "dataType": "Number", - "required": false, "allowedValues": null}, {"name": "MaxBytesParameter", "dataType": - "Number", "required": false, "allowedValues": null}, {"name": "SamplingParameter", - "dataType": "Number", "required": false, "allowedValues": ["10", "100", "1000", - "10000"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "EduFrame", "creationMethods": [{"name": "EduFrame.Contents", - "parameters": [{"name": "domainSlug", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Key"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "EmigoDataSourceConnector", "creationMethods": [{"name": "Emigo.Contents", - "parameters": [{"name": "DataRestrictionType", "dataType": "Text", "required": - false, "allowedValues": ["Not set", "Days", "Weeks", "Months", "Quarters", - "Years"]}, {"name": "DataRestrictionValue", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "DataRestrictionMode", "dataType": - "Text", "required": false, "allowedValues": ["Default", "Exact"]}, {"name": - "AuthorizationMode", "dataType": "Text", "required": false, "allowedValues": + "supportsSkipTestConnection": false}, {"type": "DremioCloud", "creationMethods": + [{"name": "DremioCloud.DatabasesByServerV370", "parameters": [{"name": "server", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "projectId", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "engine", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "routingTag", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "routingQueue", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "encryption", + "dataType": "Text", "required": false, "allowedValues": ["Enabled-PEM"]}]}], + "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "DynatraceGrail", + "creationMethods": [{"name": "DynatraceGrail.Contents", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "QueryInput", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "ScanGBParameter", "dataType": "Number", "required": false, "allowedValues": + null}, {"name": "MaxResultParameter", "dataType": "Number", "required": false, + "allowedValues": null}, {"name": "MaxBytesParameter", "dataType": "Number", + "required": false, "allowedValues": null}, {"name": "SamplingParameter", "dataType": + "Number", "required": false, "allowedValues": ["10", "100", "1000", "10000"]}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EduFrame", + "creationMethods": [{"name": "EduFrame.Contents", "parameters": [{"name": + "domainSlug", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EmigoDataSourceConnector", + "creationMethods": [{"name": "Emigo.Contents", "parameters": [{"name": "DataRestrictionType", + "dataType": "Text", "required": false, "allowedValues": ["Not set", "Days", + "Weeks", "Months", "Quarters", "Years"]}, {"name": "DataRestrictionValue", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "DataRestrictionMode", + "dataType": "Text", "required": false, "allowedValues": ["Default", "Exact"]}, + {"name": "AuthorizationMode", "dataType": "Text", "required": false, "allowedValues": ["Default", "EmigoObszary", "EmigoHierarchia", "CustomRestrictions"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "EntersoftBusinessSuite", "creationMethods": [{"name": "EntersoftBusinessSuite.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "EQuIS", "creationMethods": [{"name": "EQuIS.Contents", "parameters": - [{"name": "baseUri", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key", "Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "eWayCRM", "creationMethods": [{"name": "eWayCRM.Contents2", - "parameters": [{"name": "IncludeRelations", "dataType": "Boolean", "required": - false, "allowedValues": ["false", "true"]}, {"name": "Query", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "QueryAmount", - "dataType": "Boolean", "required": false, "allowedValues": ["false", "true"]}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FactSetAnalytics", "creationMethods": [{"name": "FactSetAnalytics.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EntersoftBusinessSuite", + "creationMethods": [{"name": "EntersoftBusinessSuite.Contents", "parameters": + []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "EQuIS", + "creationMethods": [{"name": "EQuIS.Contents", "parameters": [{"name": "baseUri", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Key", "Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "eWayCRM", "creationMethods": + [{"name": "eWayCRM.Contents", "parameters": [{"name": "IncludeRelations", + "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "FactSetAnalytics", "creationMethods": [{"name": "FactSetAnalytics.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FactSetRMS", "creationMethods": [{"name": "FactSetRMS.Functions", - "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Funnel", "creationMethods": [{"name": "Funnel.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "HexagonSmartApi", "creationMethods": [{"name": "HexagonSmartApi.Feed", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "headers", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "odataFeedVersion", "dataType": "Text", "required": false, - "allowedValues": ["2.0", "1.0"]}]}], "supportedCredentialTypes": ["OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "IndustrialAppStore", "creationMethods": [{"name": "IndustrialAppStore.NavigationTable", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "FactSetRMS", + "creationMethods": [{"name": "FactSetRMS.Functions", "parameters": []}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Funnel", "creationMethods": [{"name": "Funnel.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "InformationGrid", "creationMethods": [{"name": "InformationGrid.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "inwink", "creationMethods": [{"name": "inwink.ScopeContents", - "parameters": [{"name": "customerId", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "scope", "dataType": "Text", "required": - true, "allowedValues": ["Audience", "Event", "Community"]}, {"name": "scopeId", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "HexagonSmartApi", + "creationMethods": [{"name": "HexagonSmartApi.Feed", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "headers", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "odataFeedVersion", "dataType": "Text", "required": false, "allowedValues": + ["2.0", "1.0"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "IndustrialAppStore", + "creationMethods": [{"name": "IndustrialAppStore.NavigationTable", "parameters": + []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "InformationGrid", + "creationMethods": [{"name": "InformationGrid.Contents", "parameters": [{"name": + "server", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "inwink", + "creationMethods": [{"name": "inwink.ScopeContents", "parameters": [{"name": + "customerId", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "scope", "dataType": "Text", "required": true, "allowedValues": ["Audience", + "Event", "Community"]}, {"name": "scopeId", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "JamfPro", + "creationMethods": [{"name": "JamfPro.Contents", "parameters": [{"name": "jamfUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "Kognitwin", "creationMethods": + [{"name": "Kognitwin.Contents", "parameters": [{"name": "url", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "JamfPro", "creationMethods": [{"name": "JamfPro.Contents", "parameters": - [{"name": "jamfUrl", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Kognitwin", "creationMethods": [{"name": "Kognitwin.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "kxkdbinsightsenterprise", "creationMethods": [{"name": "kxkdbinsightsenterprise.Contents", + false}, {"type": "kxkdbinsightsenterprise", "creationMethods": [{"name": "kxkdbinsightsenterprise.Contents", "parameters": [{"name": "HostUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "LEAP", "creationMethods": [{"name": "LEAP.Contents", "parameters": - []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "LinkedInLearning", "creationMethods": [{"name": "LinkedInLearning.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "LEAP", "creationMethods": + [{"name": "LEAP.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "LinkedInLearning", "creationMethods": [{"name": "LinkedInLearning.Contents", "parameters": [{"name": "start_date", "dataType": "DateTime", "required": false, "allowedValues": null}, {"name": "end_date", "dataType": "DateTime", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MicroStrategyDataset", "creationMethods": [{"name": "MicroStrategyDataset.Contents", + false}, {"type": "MicroStrategyDataset", "creationMethods": [{"name": "MicroStrategyDataset.Contents", "parameters": [{"name": "libraryUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "authMode", "dataType": "Text", "required": false, "allowedValues": ["Standard", "LDAP"]}, {"name": "limit", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "timeout", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "OneStream", "creationMethods": [{"name": "OneStream.Navigation", - "parameters": [{"name": "OneStreamURL", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Paxata", "creationMethods": [{"name": "Paxata.Contents", + "supportsSkipTestConnection": false}, {"type": "OneStream", "creationMethods": + [{"name": "OneStream.Navigation", "parameters": [{"name": "OneStreamURL", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Paxata", "creationMethods": [{"name": "Paxata.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PlanviewOKR", "creationMethods": [{"name": "PlanviewOKR.Contents", - "parameters": [{"name": "ODataURL", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PlanviewProjectplace", "creationMethods": [{"name": "PlanviewProjectplace.Contents", - "parameters": [{"name": "ODataURL", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Profisee", "creationMethods": [{"name": "Profisee.Tables", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PlanviewOKR", + "creationMethods": [{"name": "PlanviewOKR.Contents", "parameters": [{"name": + "ODataURL", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PlanviewProjectplace", + "creationMethods": [{"name": "PlanviewProjectplace.Contents", "parameters": + [{"name": "ODataURL", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "QuickBase", "creationMethods": [{"name": "QuickBase.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Profisee", + "creationMethods": [{"name": "Profisee.Tables", "parameters": [{"name": "url", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "QuickBase", "creationMethods": [{"name": "QuickBase.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Roamler", "creationMethods": [{"name": "Roamler.Contents", - "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Samsara", "creationMethods": [{"name": "Samsara.Records", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Roamler", + "creationMethods": [{"name": "Roamler.Contents", "parameters": []}], "supportedCredentialTypes": + ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Samsara", "creationMethods": [{"name": "Samsara.Records", "parameters": [{"name": "Region", "dataType": "Text", "required": true, "allowedValues": ["US", "EU"]}, {"name": "RangeStart", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "RangeEnd", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SDMX", "creationMethods": [{"name": "SDMX.Contents", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "Option", "dataType": "Text", "required": true, "allowedValues": - ["Show codes and labels", "Show codes only", "Show labels only"]}, {"name": - "Language", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ShortcutsBI", "creationMethods": [{"name": "ShortcutsBI.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SDMX", "creationMethods": + [{"name": "SDMX.Contents", "parameters": [{"name": "url", "dataType": "Text", + "required": true, "allowedValues": null}, {"name": "Option", "dataType": "Text", + "required": true, "allowedValues": ["Show codes and labels", "Show codes only", + "Show labels only"]}, {"name": "Language", "dataType": "Text", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "ShortcutsBI", "creationMethods": [{"name": "ShortcutsBI.Contents", "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Siteimprove", "creationMethods": [{"name": "Siteimprove.Contents", - "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SmartsheetGlobal", "creationMethods": [{"name": "SmartsheetGlobal.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Siteimprove", + "creationMethods": [{"name": "Siteimprove.Contents", "parameters": []}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "SmartsheetGlobal", "creationMethods": [{"name": "SmartsheetGlobal.Contents", "parameters": [{"name": "region", "dataType": "Text", "required": true, "allowedValues": ["US", "EU"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SoftOneBI", "creationMethods": [{"name": "SoftOneBI.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SolarWindsServiceDesk", "creationMethods": [{"name": "SolarWindsServiceDesk.ContentsV113", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SoftOneBI", + "creationMethods": [{"name": "SoftOneBI.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "SolarWindsServiceDesk", "creationMethods": [{"name": "SolarWindsServiceDesk.ContentsV113", "parameters": [{"name": "RangeStart", "dataType": "DateTime", "required": false, "allowedValues": null}, {"name": "RangeEnd", "dataType": "DateTime", "required": false, "allowedValues": null}, {"name": "CustomFieldsStr", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "Spigit", "creationMethods": [{"name": "Spigit.Contents", "parameters": [{"name": - "ODataURL", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SumTotal", "creationMethods": [{"name": "SumTotal.ODataFeed", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Supermetrics", "creationMethods": [{"name": "Supermetrics.Render", + false}, {"type": "Spigit", "creationMethods": [{"name": "Spigit.Contents", + "parameters": [{"name": "ODataURL", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SumTotal", + "creationMethods": [{"name": "SumTotal.ODataFeed", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Supermetrics", "creationMethods": [{"name": "Supermetrics.Render", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SurveyMonkey", "creationMethods": [{"name": "SurveyMonkey.Contents", - "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "TeamDesk", "creationMethods": [{"name": "TeamDesk.Database", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Tenforce", "creationMethods": [{"name": "Tenforce.Contents", - "parameters": [{"name": "ApplicationUrl", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "ListId", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "DataType", "dataType": "Text", "required": - true, "allowedValues": ["Do not include", "Include"]}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "Usercube", "creationMethods": [{"name": "Usercube.Universes", "parameters": - [{"name": "serverUrl", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["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"]}]}], + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SurveyMonkey", + "creationMethods": [{"name": "SurveyMonkey.Contents", "parameters": []}], + "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "TeamDesk", + "creationMethods": [{"name": "TeamDesk.Database", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "Tenforce", "creationMethods": + [{"name": "Tenforce.Contents", "parameters": [{"name": "ApplicationUrl", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "ListId", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "DataType", "dataType": + "Text", "required": true, "allowedValues": ["Do not include", "Include"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "VesselInsight", "creationMethods": [{"name": "VesselInsight.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "WebtrendsAnalytics", "creationMethods": [{"name": "WebtrendsAnalytics.Tables", - "parameters": [{"name": "ProfileId", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "Period", "dataType": "Text", "required": - true, "allowedValues": ["Custom Date", "Report Period"]}, {"name": "reportType", - "dataType": "Text", "required": true, "allowedValues": ["Summary", "Trend", - "Individual"]}, {"name": "startDate", "dataType": "Date", "required": false, - "allowedValues": null}, {"name": "endDate", "dataType": "Date", "required": - false, "allowedValues": null}, {"name": "startPeriod", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "endPeriod", "dataType": - "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "Windsor", "creationMethods": [{"name": "Windsor.Main", "parameters": []}], + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Usercube", + "creationMethods": [{"name": "Usercube.Universes", "parameters": [{"name": + "serverUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Vena", "creationMethods": + [{"name": "Vena.Contents", "parameters": [{"name": "source", "dataType": "Text", + "required": true, "allowedValues": ["https://ca3.vena.io", "https://us3.vena.io", + "https://us2.vena.io", "https://us1.vena.io", "https://eu1.vena.io"]}, {"name": + "modelQuery", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "apiVersion", "dataType": "Text", "required": false, "allowedValues": + ["v1", "v2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "VesselInsight", + "creationMethods": [{"name": "VesselInsight.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Witivio", "creationMethods": [{"name": "Witivio.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "WebtrendsAnalytics", + "creationMethods": [{"name": "WebtrendsAnalytics.Tables", "parameters": [{"name": + "ProfileId", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "Period", "dataType": "Text", "required": true, "allowedValues": + ["Custom Date", "Report Period"]}, {"name": "reportType", "dataType": "Text", + "required": true, "allowedValues": ["Summary", "Trend", "Individual"]}, {"name": + "startDate", "dataType": "Date", "required": false, "allowedValues": null}, + {"name": "endDate", "dataType": "Date", "required": false, "allowedValues": + null}, {"name": "startPeriod", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "endPeriod", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Windsor", + "creationMethods": [{"name": "Windsor.Main", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Witivio", "creationMethods": [{"name": "Witivio.Contents", "parameters": [{"name": "botId", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Wrike", "creationMethods": [{"name": "Wrike.Contents", "parameters": - []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ZendeskData", "creationMethods": [{"name": "ZendeskData.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Wrike", + "creationMethods": [{"name": "Wrike.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "ZendeskData", "creationMethods": [{"name": "ZendeskData.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ZohoCreator", "creationMethods": [{"name": "ZohoCreator.Contents", - "parameters": [{"name": "creatordomain", "dataType": "Text", "required": true, - "allowedValues": ["zoho.com", "zoho.eu", "zoho.com.cn", "zoho.in", "zoho.com.au"]}, - {"name": "scopname", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "applinkname", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "reportlinkname", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Zucchetti", "creationMethods": [{"name": "Zucchetti.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ZohoCreator", + "creationMethods": [{"name": "ZohoCreator.Contents", "parameters": [{"name": + "creatordomain", "dataType": "Text", "required": true, "allowedValues": ["zoho.com", + "zoho.eu", "zoho.com.cn", "zoho.in", "zoho.com.au"]}, {"name": "scopname", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "applinkname", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "reportlinkname", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Zucchetti", "creationMethods": [{"name": "Zucchetti.Contents", "parameters": [{"name": "Url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Environment", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AtScale", "creationMethods": [{"name": "AtScale.Cubes", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "ConnectionTimeout", "dataType": "Duration", "required": false, - "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Duration", - "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AzureCosmosDBForMongoDBvCore", "creationMethods": [{"name": "AzureCosmosDBForMongoDBvCore.Contents", - "parameters": [{"name": "baseURL", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AtScale", + "creationMethods": [{"name": "AtScale.Cubes", "parameters": [{"name": "server", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ConnectionTimeout", + "dataType": "Duration", "required": false, "allowedValues": null}, {"name": + "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureCosmosDBForMongoDBvCore", + "creationMethods": [{"name": "AzureCosmosDBForMongoDBvCore.Contents", "parameters": + [{"name": "baseURL", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "collection", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureCostManagement", "creationMethods": [{"name": "AzureCostManagement.Tables", - "parameters": [{"name": "scope", "dataType": "Text", "required": true, "allowedValues": - ["Billing Profile Id", "Enrollment Number", "Manually Input Scope"]}, {"name": - "scopeValue", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "numberOfMonths", "dataType": "Number", "required": true, "allowedValues": - null}, {"name": "startDate", "dataType": "Date", "required": false, "allowedValues": - null}, {"name": "endDate", "dataType": "Date", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureDeviceRegistry", "creationMethods": [{"name": "AzureDeviceRegistry.Query", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureCostManagement", + "creationMethods": [{"name": "AzureCostManagement.Tables", "parameters": [{"name": + "scope", "dataType": "Text", "required": true, "allowedValues": ["Billing + Profile Id", "Enrollment Number", "Manually Input Scope"]}, {"name": "scopeValue", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "numberOfMonths", + "dataType": "Number", "required": true, "allowedValues": null}, {"name": "startDate", + "dataType": "Date", "required": false, "allowedValues": null}, {"name": "endDate", + "dataType": "Date", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AzureDeviceRegistry", "creationMethods": [{"name": "AzureDeviceRegistry.Query", "parameters": [{"name": "scope", "dataType": "Text", "required": true, "allowedValues": ["Tenant", "Subscription"]}, {"name": "subscriptions", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "namespaces", "dataType": @@ -746,84 +674,77 @@ interactions: {"name": "pagesize", "dataType": "Number", "required": false, "allowedValues": ["5", "10", "25", "50", "100", "200", "300", "400", "500", "600", "700", "800", "900", "1000"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureResourceGraph", "creationMethods": [{"name": "AzureResourceGraph.Query", - "parameters": [{"name": "query", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "scope", "dataType": "Text", "required": false, "allowedValues": - ["Tenant", "Subscription", "Management group"]}, {"name": "subscription", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "managementGroup", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureResourceGraph", + "creationMethods": [{"name": "AzureResourceGraph.Query", "parameters": [{"name": + "query", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "scope", "dataType": "Text", "required": false, "allowedValues": ["Tenant", + "Subscription", "Management group"]}, {"name": "subscription", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "managementGroup", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "resultTruncated", "dataType": "Boolean", "required": false, "allowedValues": ["true", "false"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CommonDataService", "creationMethods": [{"name": "CommonDataService.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "CreateNavigationProperties", "dataType": "Boolean", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", - "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CosmosDB", "creationMethods": [{"name": "CosmosDB.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CommonDataService", + "creationMethods": [{"name": "CommonDataService.Database", "parameters": [{"name": + "server", "dataType": "Text", "required": false, "allowedValues": null}, {"name": + "CreateNavigationProperties", "dataType": "Boolean", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": + false}, {"type": "CosmosDB", "creationMethods": [{"name": "CosmosDB.Contents", "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "NUMBER_OF_RETRIES", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ENABLE_AVERAGE_FUNCTION_PASSDOWN", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ENABLE_SORT_PASSDOWN_FOR_MULTIPLE_COLUMNS", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CustomerInsights", "creationMethods": [{"name": "CustomerInsights.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FabricSql", "creationMethods": [{"name": "FabricSql.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "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": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "IntuneV2", "creationMethods": [{"name": "IntuneV2.Contents", - "parameters": [{"name": "dataWarehouseAsuUri", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "maxHistoryDays", "dataType": "Number", - "required": false, "allowedValues": ["1", "2", "3", "4", "5", "6", "7", "14", - "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": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PowerBIDatamarts", "creationMethods": [{"name": "PowerBI.Datamarts", - "parameters": [{"name": "server", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CustomerInsights", + "creationMethods": [{"name": "CustomerInsights.Contents", "parameters": []}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "FabricSql", + "creationMethods": [{"name": "FabricSql.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"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}, {"type": "GoogleSheets", "creationMethods": + [{"name": "GoogleSheets.Contents", "parameters": [{"name": "url", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Intune", "creationMethods": [{"name": "Intune.Contents", + "parameters": [{"name": "maxHistoryDays", "dataType": "Number", "required": + true, "allowedValues": ["1", "2", "3", "4", "5", "6", "7", "14", "30", "60"]}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Lakehouse", + "creationMethods": [{"name": "Lakehouse.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"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": "PowerPlatformDataflows", "creationMethods": [{"name": "PowerPlatform.Dataflows", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ProductInsights", "creationMethods": [{"name": "ProductInsights.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Synapse", "creationMethods": [{"name": "Synapse.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Warehouse", "creationMethods": [{"name": "Fabric.Warehouse", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PowerBIDatamarts", + "creationMethods": [{"name": "PowerBI.Datamarts", "parameters": [{"name": + "server", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PowerPlatformDataflows", + "creationMethods": [{"name": "PowerPlatform.Dataflows", "parameters": []}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ProductInsights", + "creationMethods": [{"name": "ProductInsights.Contents", "parameters": []}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Synapse", + "creationMethods": [{"name": "Synapse.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Warehouse", "creationMethods": [{"name": "Fabric.Warehouse", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "VivaInsights", "creationMethods": [{"name": "VivaInsights.Data", "parameters": - [{"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": + false}, {"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": @@ -831,323 +752,284 @@ interactions: false, "allowedValues": ["Aggregated data", "Row-level data"]}, {"name": "TableName", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AdlsGen2CosmosStructuredStream", "creationMethods": [{"name": "AdlsGen2CosmosStructuredStream.Contents", + false}, {"type": "AdlsGen2CosmosStructuredStream", "creationMethods": [{"name": + "AdlsGen2CosmosStructuredStream.Contents", "parameters": [{"name": "url", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "AmazonRdsForOracle", "creationMethods": + [{"name": "AmazonRdsForOracle.Database", "parameters": [{"name": "server", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], + "supportsSkipTestConnection": false}, {"type": "AmazonRdsForSqlServer", "creationMethods": + [{"name": "AmazonRdsForSqlServer.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}, {"type": "AmazonS3", "creationMethods": + [{"name": "AmazonS3.Storage", "parameters": [{"name": "url", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "roleArn", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic", "OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AmazonS3Compatible", + "creationMethods": [{"name": "AmazonS3Compatible.Storage", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AvevaConnect", "creationMethods": [{"name": "AvevaConnect.Contents", + "parameters": [{"name": "AccountId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "url", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AzureAISearch", "creationMethods": [{"name": "AzureAISearch.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AmazonRdsForOracle", "creationMethods": [{"name": "AmazonRdsForOracle.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AmazonRdsForSqlServer", "creationMethods": [{"name": "AmazonRdsForSqlServer.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": "AmazonS3", "creationMethods": [{"name": "AmazonS3.Storage", - "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "roleArn", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SAPDatasphereAmazonS3", "creationMethods": [{"name": "SAPDatasphereAmazonS3.Actions", - "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "roleArn", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AmazonS3Compatible", "creationMethods": [{"name": "AmazonS3Compatible.Storage", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AvevaConnect", "creationMethods": [{"name": "AvevaConnect.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "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}, {"type": "AzureCosmosDBForMongoDB", "creationMethods": [{"name": "AzureCosmosDBForMongoDB.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "serverVersion", "dataType": "Text", "required": true, "allowedValues": - ["Above 3.2", "3.2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureDatabaseForMySQL", "creationMethods": [{"name": "AzureDatabaseForMySQL.Database", + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureArtifactFeed", + "creationMethods": [{"name": "AzureArtifactFeed.Contents", "parameters": [{"name": + "feedUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"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}, {"type": "AzureCosmosDBForMongoDB", + "creationMethods": [{"name": "AzureCosmosDBForMongoDB.Database", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "serverVersion", "dataType": "Text", "required": true, "allowedValues": + ["Above 3.2", "3.2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "AzureDatabaseForMySQL", "creationMethods": [{"name": "AzureDatabaseForMySQL.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": "AzureDatabricksWorkspace", "creationMethods": [{"name": "AzureDatabricksWorkspace.Actions", + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"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", + false}, {"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": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - 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": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureFunction", "creationMethods": [{"name": "AzureFunction.Contents", - "parameters": [{"name": "functionAppUrl", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "Anonymous"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AzureHDInsightCluster", "creationMethods": [{"name": "AzureHDInsightCluster.Actions", - "parameters": [{"name": "hdiUrl", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureDataLakeStoreCosmosStructuredStream", + "creationMethods": [{"name": "AzureDataLakeStoreCosmosStructuredStream.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"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}, {"type": "AzureFunction", + "creationMethods": [{"name": "AzureFunction.Contents", "parameters": [{"name": + "functionAppUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key", "Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "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": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureHDInsightOnDemandCluster", "creationMethods": [{"name": - "AzureHDInsightOnDemandCluster.Actions", "parameters": [{"name": "subscriptionId", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroupName", - "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureKeyVault", "creationMethods": [{"name": "AzureKeyVault.Actions", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureHDInsightOnDemandCluster", + "creationMethods": [{"name": "AzureHDInsightOnDemandCluster.Actions", "parameters": + [{"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "resourceGroupName", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AzureKeyVault", "creationMethods": [{"name": "AzureKeyVault.Actions", "parameters": [{"name": "accountName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AzureMachineLearning", "creationMethods": [{"name": "AzureMachineLearning.Contents", + false}, {"type": "AzureMachineLearning", "creationMethods": [{"name": "AzureMachineLearning.Contents", "parameters": [{"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroupName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "workspaceName", "dataType": "Text", "required": true, "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": - null}, {"name": "CommandTimeout", "dataType": "Duration", "required": false, - "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzurePostgreSQL", + "creationMethods": [{"name": "AzurePostgreSQL.Database", "parameters": [{"name": + "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "database", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": "AzureServiceBus", "creationMethods": [{"name": "AzureServiceBus.Contents", "parameters": [{"name": "hostName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureSqlMI", "creationMethods": [{"name": "AzureSqlMI.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Query", "dataType": "Text", "required": false, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureSqlMI", + "creationMethods": [{"name": "AzureSqlMI.Database", "parameters": [{"name": + "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "database", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "Query", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AzureSynapseWorkspace", "creationMethods": [{"name": "AzureSynapseWorkspace.Actions", + false}, {"type": "AzureSynapseWorkspace", "creationMethods": [{"name": "AzureSynapseWorkspace.Actions", "parameters": [{"name": "workspaceName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Cassandra", "creationMethods": [{"name": "Cassandra.Contents", - "parameters": [{"name": "Host", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Port", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ConfluentCloud", "creationMethods": [{"name": "ConfluentCloud.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ConfluentSchemaRegistry", "creationMethods": [{"name": "ConfluentSchemaRegistry.Contents", + "supportsSkipTestConnection": false}, {"type": "Cassandra", "creationMethods": + [{"name": "Cassandra.Contents", "parameters": [{"name": "Host", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "Port", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "ConfluentCloud", "creationMethods": + [{"name": "ConfluentCloud.Contents", "parameters": [{"name": "server", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "ConfluentSchemaRegistry", "creationMethods": [{"name": "ConfluentSchemaRegistry.Contents", "parameters": [{"name": "schemaRegistryUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CopyJob", "creationMethods": [{"name": "CopyJob.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CopyJob", + "creationMethods": [{"name": "CopyJob.Actions", "parameters": []}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"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": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"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": - "CustomStreamSource", "creationMethods": [{"name": "CustomStreamSource.Contents", + false}, {"type": "DynamicsAX", "creationMethods": [{"name": "DynamicsAX.Contents", "parameters": [{"name": "url", "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"], + null}]}], "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": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Dynamics365", "creationMethods": [{"name": "Dynamics365.Contents", + false}, {"type": "DynamicsCrm", "creationMethods": [{"name": "DynamicsCrm.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "DynamicsAX", "creationMethods": [{"name": "DynamicsAX.Contents", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "DynamicsCrm", "creationMethods": [{"name": "DynamicsCrm.Contents", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + false}, {"type": "EventHub", "creationMethods": [{"name": "EventHub.Contents", + "parameters": [{"name": "endpoint", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "entityPath", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "EventHub", "creationMethods": [{"name": "EventHub.Contents", "parameters": - [{"name": "endpoint", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "entityPath", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FabricDataPipelines", "creationMethods": [{"name": "FabricDataPipelines.Actions", + false}, {"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"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FTP", "creationMethods": [{"name": "FTP.Contents", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "GoogleCloudStorage", "creationMethods": [{"name": "GoogleCloudStorage.Storage", + "supportsSkipTestConnection": false}, {"type": "FTP", "creationMethods": [{"name": + "FTP.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "GoogleCloudStorage", "creationMethods": [{"name": "GoogleCloudStorage.Storage", "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SAPDatasphereGoogleCloudStorage", "creationMethods": [{"name": - "SAPDatasphereGoogleCloudStorage.Actions", "parameters": [{"name": "url", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "GooglePubSub", "creationMethods": [{"name": "GooglePubSub.Contents", "parameters": - [{"name": "projectId", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "GreenplumForPipeline", "creationMethods": [{"name": "GreenplumForPipeline.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "GooglePubSub", + "creationMethods": [{"name": "GooglePubSub.Contents", "parameters": [{"name": + "projectId", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "GreenplumForPipeline", + "creationMethods": [{"name": "GreenplumForPipeline.Database", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "connectionTimeout", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "commandTimeout", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "HdfsForPipeline", "creationMethods": [{"name": "HdfsForPipeline.Contents", + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "HdfsForPipeline", "creationMethods": [{"name": "HdfsForPipeline.Contents", "parameters": [{"name": "clusterURL", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "HttpServer", "creationMethods": [{"name": "HttpServer.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "InformixForPipeline", "creationMethods": [{"name": "InformixForPipeline.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "host", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "service", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "protocol", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "IoTHub", "creationMethods": [{"name": "IoTHub.Contents", - "parameters": [{"name": "entityPath", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Kinesis", "creationMethods": [{"name": "Kinesis.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "HttpServer", + "creationMethods": [{"name": "HttpServer.Contents", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "Basic", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "InformixForPipeline", "creationMethods": + [{"name": "InformixForPipeline.Contents", "parameters": [{"name": "server", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "host", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "service", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "protocol", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", + "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "IoTHub", "creationMethods": + [{"name": "IoTHub.Contents", "parameters": [{"name": "entityPath", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Kinesis", "creationMethods": [{"name": "Kinesis.Contents", "parameters": [{"name": "streamName", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MariaDBForPipeline", "creationMethods": [{"name": "MariaDBForPipeline.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MariaDBForPipeline", + "creationMethods": [{"name": "MariaDBForPipeline.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": "MicrosoftAccess", "creationMethods": [{"name": "MicrosoftAccess.Contents", + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false}, {"type": + "MicrosoftAccess", "creationMethods": [{"name": "MicrosoftAccess.Contents", "parameters": [{"name": "filePath", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MicrosoftOutlook", "creationMethods": [{"name": "MicrosoftOutlook.Actions", + false}, {"type": "MicrosoftOutlook", "creationMethods": [{"name": "MicrosoftOutlook.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", "parameters": - []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", + false}, {"type": "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "cluster", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "randomString", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MongoDBForPipeline", "creationMethods": [{"name": "MongoDBForPipeline.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MQTT", "creationMethods": [{"name": "MQTT.Contents", "parameters": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MongoDBForPipeline", + "creationMethods": [{"name": "MongoDBForPipeline.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Notebook", "creationMethods": [{"name": "Notebook.Actions", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MQTT", "creationMethods": + [{"name": "MQTT.Contents", "parameters": [{"name": "server", "dataType": "Text", + "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Notebook", "creationMethods": [{"name": "Notebook.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", + false}, {"type": "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", "parameters": [{"name": "APIEndpoint", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PowerBIDatasets", "creationMethods": [{"name": "PowerBIDatasets.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", - "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Presto", "creationMethods": [{"name": "Presto.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "PowerBIDatasets", + "creationMethods": [{"name": "PowerBIDatasets.Actions", "parameters": []}], + "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "Presto", "creationMethods": [{"name": "Presto.Contents", "parameters": [{"name": "Server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Catalog", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Timezone", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ServerCertificateValidation", "dataType": "Text", "required": false, "allowedValues": ["Enable", "Disable"]}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", - "Encrypted"], "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": - null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "ServicePrincipal"], + "Encrypted"], "supportsSkipTestConnection": false}, {"type": "RestService", + "creationMethods": [{"name": "RestService.Contents", "parameters": [{"name": + "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "audience", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SalesforceServiceCloud", "creationMethods": [{"name": "SalesforceServiceCloud.Contents", + false}, {"type": "SalesforceServiceCloud", "creationMethods": [{"name": "SalesforceServiceCloud.Contents", "parameters": [{"name": "environmentURL", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "apiVersion", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SAPAzureDataLakeStorageGen2", "creationMethods": [{"name": - "SAPAzureDataLakeStorageGen2.Actions", "parameters": [{"name": "url", "dataType": - "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "Key", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SAPBWOpenHubApplicationServer", "creationMethods": [{"name": - "SAPBWOpenHubApplicationServer.Contents", "parameters": [{"name": "appServerName", + true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SAPBWOpenHubApplicationServer", + "creationMethods": [{"name": "SAPBWOpenHubApplicationServer.Contents", "parameters": + [{"name": "appServerName", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "systemNumber", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "languageCode", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SAPBWOpenHubMessageServer", + "creationMethods": [{"name": "SAPBWOpenHubMessageServer.Contents", "parameters": + [{"name": "messageServer", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "messageServerService", "dataType": "Text", "required": false, + "allowedValues": null}, {"name": "systemID", "dataType": "Text", "required": + false, "allowedValues": null}, {"name": "logonGroup", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "languageCode", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "SAPTableApplicationServer", "creationMethods": [{"name": + "SAPTableApplicationServer.Contents", "parameters": [{"name": "appServerName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "systemNumber", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "languageCode", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SAPBWOpenHubMessageServer", "creationMethods": [{"name": "SAPBWOpenHubMessageServer.Contents", + false}, {"type": "SAPTableMessageServer", "creationMethods": [{"name": "SAPTableMessageServer.Contents", "parameters": [{"name": "messageServer", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "messageServerService", "dataType": @@ -1156,90 +1038,60 @@ interactions: "dataType": "Text", "required": false, "allowedValues": null}, {"name": "languageCode", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SAPTableApplicationServer", "creationMethods": [{"name": "SAPTableApplicationServer.Contents", - "parameters": [{"name": "appServerName", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "systemNumber", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "languageCode", "dataType": "Text", - "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SAPTableMessageServer", "creationMethods": [{"name": "SAPTableMessageServer.Contents", - "parameters": [{"name": "messageServer", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "clientID", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "messageServerService", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "systemID", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "logonGroup", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "languageCode", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + false}, {"type": "ServiceNow", "creationMethods": [{"name": "ServiceNow.Data", + "parameters": [{"name": "instance", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SFTP", "creationMethods": + [{"name": "SFTP.Contents", "parameters": [{"name": "server", "dataType": "Text", + "required": true, "allowedValues": null}, {"name": "fingerprint", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "ServiceNow", "creationMethods": [{"name": "ServiceNow.Data", "parameters": - [{"name": "instance", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SFTP", "creationMethods": [{"name": "SFTP.Contents", "parameters": - [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "fingerprint", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Shopify", "creationMethods": [{"name": "Shopify.Database", - "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ShortcutsExtensibilityTest", "creationMethods": [{"name": + false}, {"type": "ShortcutsExtensibilityTest", "creationMethods": [{"name": "ShortcutsExtensibilityTest.Contents", "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "audience", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SolacePubsub", "creationMethods": [{"name": "SolacePubsub.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SparkJobDefinition", "creationMethods": [{"name": "SparkJobDefinition.Actions", + "supportsSkipTestConnection": false}, {"type": "SolacePubsub", "creationMethods": + [{"name": "SolacePubsub.Contents", "parameters": [{"name": "server", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "SparkJobDefinition", "creationMethods": [{"name": "SparkJobDefinition.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", + false}, {"type": "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "UserDataFunctions", "creationMethods": [{"name": "UserDataFunctions.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "UserDataFunctions", + "creationMethods": [{"name": "UserDataFunctions.Actions", "parameters": []}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "WebForPipeline", + "creationMethods": [{"name": "WebForPipeline.Contents", "parameters": [{"name": + "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "audience", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "WebForPipeline", "creationMethods": [{"name": "WebForPipeline.Contents", - "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "audience", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Basic", "Anonymous", "Key", - "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureDevOpsSourceControl", "creationMethods": [{"name": "AzureDevOpsSourceControl.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "GitHubSourceControl", "creationMethods": [{"name": "GitHubSourceControl.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "GoogleAds", "creationMethods": [{"name": "GoogleAds.Contents", + false}, {"type": "AzureDevOpsSourceControl", "creationMethods": [{"name": + "AzureDevOpsSourceControl.Contents", "parameters": [{"name": "url", "dataType": + "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "GitHubSourceControl", "creationMethods": + [{"name": "GitHubSourceControl.Contents", "parameters": [{"name": "url", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "GoogleAds", "creationMethods": [{"name": "GoogleAds.Contents", "parameters": [{"name": "googleAdsApiVersion", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "clientCustomerID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "loginCustomerID", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Microsoft365", "creationMethods": [{"name": "Microsoft365.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportsSkipTestConnection": false}, {"type": "Microsoft365", "creationMethods": + [{"name": "Microsoft365.Contents", "parameters": []}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false}, {"type": "QuickBooksForPipeline", "creationMethods": + [{"name": "QuickBooksForPipeline.Contents", "parameters": [{"name": "endpoint", + "dataType": "Text", "required": true, "allowedValues": ["https://sandbox-quickbooks.api.intuit.com", + "https://quickbooks.api.intuit.com"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "QuickBooksForPipeline", "creationMethods": [{"name": "QuickBooksForPipeline.Contents", - "parameters": [{"name": "endpoint", "dataType": "Text", "required": true, - "allowedValues": ["https://sandbox-quickbooks.api.intuit.com", "https://quickbooks.api.intuit.com"]}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AriaConnector", "creationMethods": [{"name": "AriaDataConnector.GetCubes", + false}, {"type": "AriaConnector", "creationMethods": [{"name": "AriaDataConnector.GetCubes", "parameters": [{"name": "Project ID", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "interval", "dataType": "Text", "required": false, "allowedValues": ["Last hour", "Last 2 hours", "Last 4 hours", "Last @@ -1249,118 +1101,111 @@ interactions: "dataType": "Text", "required": false, "allowedValues": ["Five seconds", "Ten seconds", "Five minutes", "One hour", "One day", "One week", "One month"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureEnterprise", "creationMethods": [{"name": "AzureEnterprise.Tables", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CloudScope", "creationMethods": [{"name": "CloudScope.Contents", - "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CloudScopeInstagram", "creationMethods": [{"name": "CloudScopeInstagram.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AzureEnterprise", + "creationMethods": [{"name": "AzureEnterprise.Tables", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": + ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "CloudScope", "creationMethods": [{"name": "CloudScope.Contents", "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "comScore", "creationMethods": [{"name": "comScore.NavTable", - "parameters": [{"name": "datacenter", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "client", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "startDate", "dataType": "Date", "required": - false, "allowedValues": null}, {"name": "endDate", "dataType": "Date", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "InfinityConnector", "creationMethods": [{"name": "InfinityConnector.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "JDIConnector", "creationMethods": [{"name": "JDIConnector.Contents", - "parameters": [{"name": "DataUrl", "dataType": "Text", "required": true, "allowedValues": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CloudScopeInstagram", + "creationMethods": [{"name": "CloudScopeInstagram.Contents", "parameters": + []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "comScore", + "creationMethods": [{"name": "comScore.NavTable", "parameters": [{"name": + "datacenter", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "client", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "startDate", "dataType": "Date", "required": false, "allowedValues": + null}, {"name": "endDate", "dataType": "Date", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "KaizalaAttendanceReports", "creationMethods": [{"name": "KaizalaAttendanceReports.Feed", - "parameters": [{"name": "ContentPackName", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "KaizalaReports", "creationMethods": [{"name": "KaizalaReports.Feed", - "parameters": [{"name": "MethodName", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "KaizalaSurveyReports", "creationMethods": [{"name": "KaizalaSurveyReports.Feed", - "parameters": [{"name": "ContentPackName", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AdMaD", "creationMethods": [{"name": "AdMaD.Feed", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": ["https://columnstoremt.azurewebsites.net/", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "InfinityConnector", + "creationMethods": [{"name": "InfinityConnector.Contents", "parameters": []}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "JDIConnector", + "creationMethods": [{"name": "JDIConnector.Contents", "parameters": [{"name": + "DataUrl", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "KaizalaAttendanceReports", + "creationMethods": [{"name": "KaizalaAttendanceReports.Feed", "parameters": + [{"name": "ContentPackName", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "KaizalaReports", + "creationMethods": [{"name": "KaizalaReports.Feed", "parameters": [{"name": + "MethodName", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "KaizalaSurveyReports", + "creationMethods": [{"name": "KaizalaSurveyReports.Feed", "parameters": [{"name": + "ContentPackName", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "AdMaD", + "creationMethods": [{"name": "AdMaD.Feed", "parameters": [{"name": "url", + "dataType": "Text", "required": true, "allowedValues": ["https://columnstoremt.azurewebsites.net/", "https://admadmt.azurewebsites.net/", "https://firebirdapi.azure-api.net/", "https://firebirdapptest.azurewebsites.net/"]}, {"name": "sourceName", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "request", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "myob_ar", "creationMethods": [{"name": "myob_ar.GetCompanyFiles", "parameters": - [{"name": "company", "dataType": "Text", "required": true, "allowedValues": + false}, {"type": "myob_ar", "creationMethods": [{"name": "myob_ar.GetCompanyFiles", + "parameters": [{"name": "company", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Office365Mon2", "creationMethods": [{"name": "Office365Mon.Outages.Feed", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Plantronics", "creationMethods": [{"name": "Plantronics.Feed", - "parameters": [{"name": "URL", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "Tenant", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "URL1", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "URL2", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "Parameters", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "ElementsPerPage", "dataType": "Number", "required": false, - "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ProductioneerMExt", "creationMethods": [{"name": "ProductioneerMExt.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Office365Mon2", + "creationMethods": [{"name": "Office365Mon.Outages.Feed", "parameters": []}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Plantronics", + "creationMethods": [{"name": "Plantronics.Feed", "parameters": [{"name": "URL", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Tenant", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "URL1", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "URL2", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "Parameters", + "dataType": "Text", "required": false, "allowedValues": null}, {"name": "ElementsPerPage", + "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "ProductioneerMExt", "creationMethods": [{"name": "ProductioneerMExt.Contents", "parameters": [{"name": "CompanyName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "endpoint", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "StartDate", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ProjectIntelligence", "creationMethods": [{"name": "ProjectIntelligence.Service", - "parameters": [{"name": "ShareAdvanceWebAddress", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "Dimension", "dataType": "Text", "required": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ProjectIntelligence", + "creationMethods": [{"name": "ProjectIntelligence.Service", "parameters": + [{"name": "ShareAdvanceWebAddress", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "Dimension", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "DataType", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "QuestionPro", "creationMethods": [{"name": "QuestionPro.Contents", - "parameters": [{"name": "access_id", "dataType": "Text", "required": true, - "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ScopevisioPowerBICon", "creationMethods": [{"name": "ScopevisioPowerBICon.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SentryOne", "creationMethods": [{"name": "SentryOne.Tables", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "SpotlightCloudReports", "creationMethods": [{"name": "SpotlightCloudReports.Contents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "QuestionPro", + "creationMethods": [{"name": "QuestionPro.Contents", "parameters": [{"name": + "access_id", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ScopevisioPowerBICon", + "creationMethods": [{"name": "ScopevisioPowerBICon.Contents", "parameters": + []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "SentryOne", + "creationMethods": [{"name": "SentryOne.Tables", "parameters": []}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "SpotlightCloudReports", "creationMethods": [{"name": "SpotlightCloudReports.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Timelog", "creationMethods": [{"name": "Timelog.Tables", - "parameters": [{"name": "SiteCode", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "ApiID", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "ApiPassword", "dataType": "Text", - "required": true, "allowedValues": null}, {"name": "URLAccountName", "dataType": - "Text", "required": true, "allowedValues": null}, {"name": "DefaultNumberAccount", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Timelog", + "creationMethods": [{"name": "Timelog.Tables", "parameters": [{"name": "SiteCode", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ApiID", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "ApiPassword", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "URLAccountName", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "DefaultNumberAccount", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "CurrentMonthOnly", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "UserVoice", "creationMethods": [{"name": "UserVoice.Tables", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "WtsParadigm", "creationMethods": [{"name": "WtsParadigm.GetDefaultData", - "parameters": []}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Xero", "creationMethods": [{"name": "Xero.Contents", "parameters": - [{"name": "urlInput", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "countInput", "dataType": "Number", "required": false, "allowedValues": - null}, {"name": "company", "dataType": "Text", "required": false, "allowedValues": - null}, {"name": "tenantId", "dataType": "Text", "required": false, "allowedValues": + false}, {"type": "UserVoice", "creationMethods": [{"name": "UserVoice.Tables", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AdminInsights", "creationMethods": [{"name": "AdminInsights.GetAzureBlobContents", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "WtsParadigm", + "creationMethods": [{"name": "WtsParadigm.GetDefaultData", "parameters": []}], + "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Xero", "creationMethods": + [{"name": "Xero.Contents", "parameters": [{"name": "urlInput", "dataType": + "Text", "required": true, "allowedValues": null}, {"name": "countInput", "dataType": + "Number", "required": false, "allowedValues": null}, {"name": "company", "dataType": + "Text", "required": false, "allowedValues": null}, {"name": "tenantId", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false}, {"type": "AdminInsights", "creationMethods": [{"name": "AdminInsights.GetAzureBlobContents", "parameters": [{"name": "_workload", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "_fileType", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "_version", "dataType": "Text", "required": @@ -1369,91 +1214,87 @@ interactions: "Text", "required": true, "allowedValues": null}, {"name": "_desktopHostContainerUrl", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AutoPremium", "creationMethods": [{"name": "AutoPremium.GetMetricsData", + false}, {"type": "AutoPremium", "creationMethods": [{"name": "AutoPremium.GetMetricsData", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "isPbiAdmin", "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "CapacityMetricsCES", "creationMethods": [{"name": "CapacityMetricsCES.GetMetricsData", - "parameters": [{"name": "_queryName", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "_capacityId", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "_tenantId", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "_ago", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "_cluster", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "_database", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "_utcOffset", "dataType": "Number", - "required": false, "allowedValues": null}, {"name": "_releaseType", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "_localTimepoint", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_byPassAdminCheckForTenantAdmin", + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "CapacityMetricsCES", + "creationMethods": [{"name": "CapacityMetricsCES.GetMetricsData", "parameters": + [{"name": "_queryName", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "_capacityId", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "_tenantId", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "_ago", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "_cluster", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "_database", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "_utcOffset", "dataType": "Number", "required": false, "allowedValues": + null}, {"name": "_releaseType", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_localTimepoint", "dataType": "Text", "required": false, + "allowedValues": null}, {"name": "_byPassAdminCheckForTenantAdmin", "dataType": + "Boolean", "required": false, "allowedValues": null}, {"name": "_shouldMaskUser", "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": - "_shouldMaskUser", "dataType": "Boolean", "required": false, "allowedValues": - null}, {"name": "_targetCesRegion", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "_startDate", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "_endDate", "dataType": "Text", "required": - false, "allowedValues": null}, {"name": "_uniqueKey", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "_artifactId", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "_workspaceId", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_operationName", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_operationId", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_user", - "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_status", - "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", + "_targetCesRegion", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_startDate", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_endDate", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_uniqueKey", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_artifactId", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_workspaceId", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_operationName", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_operationId", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_user", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_status", "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}, {"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": + false}, {"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}, {"type": "MetricsDataConnector", + "creationMethods": [{"name": "MetricsDataConnector.GetMetricsData", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "isPbiAdmin", "dataType": "Boolean", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "MicrosoftCallQuality", + "creationMethods": [{"name": "MicrosoftCallQuality.GenerateTable", "parameters": + [{"name": "tenantId", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "filters", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "UsageMetricsDataConnector", + "creationMethods": [{"name": "UsageMetricsDataConnector.GetMetricsData", "parameters": + [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "UsageMetricsCES", + "creationMethods": [{"name": "UsageMetricsCES.Contents", "parameters": [{"name": + "_tenantId", "dataType": "Text", "required": true, "allowedValues": null}, + {"name": "_workspaceId", "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": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MicrosoftCallQuality", "creationMethods": [{"name": "MicrosoftCallQuality.GenerateTable", - "parameters": [{"name": "tenantId", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "filters", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "ElasticSearch", + "creationMethods": [{"name": "ElasticSearch.Database", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "keyColumnName", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false}, {"type": "Looker", + "creationMethods": [{"name": "Looker.DataSource", "parameters": [{"name": + "Host", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "ShowHidden", "dataType": "Boolean", "required": false, "allowedValues": ["true", + "false"]}, {"name": "EnableLogging", "dataType": "Boolean", "required": false, + "allowedValues": ["true", "false"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "UsageMetricsDataConnector", "creationMethods": [{"name": "UsageMetricsDataConnector.GetMetricsData", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "UsageMetricsCES", "creationMethods": [{"name": "UsageMetricsCES.Contents", - "parameters": [{"name": "_tenantId", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "_workspaceId", "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": "ElasticSearch", "creationMethods": [{"name": "ElasticSearch.Database", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "keyColumnName", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic", "Anonymous"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Looker", "creationMethods": [{"name": "Looker.DataSource", - "parameters": [{"name": "Host", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "ShowHidden", "dataType": "Boolean", "required": false, "allowedValues": - ["true", "false"]}, {"name": "EnableLogging", "dataType": "Boolean", "required": - false, "allowedValues": ["true", "false"]}]}], "supportedCredentialTypes": - ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}]}' + false}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1462,15 +1303,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '8572' + - '8070' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:53 GMT + - Wed, 03 Sep 2025 09:21:57 GMT Pragma: - no-cache RequestId: - - c79ee99a-925f-41d4-989c-884385190e21 + - c2db021f-2b64-4230-bb5e-4ec7da674514 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1478,7 +1319,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + - https://wabi-west-europe-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1496,51 +1337,562 @@ interactions: Connection: - keep-alive Content-Length: - - '587' + - '570' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.0.0 method: POST uri: https://api.fabric.microsoft.com/v1/connections response: body: - string: '{"requestId": "f962df9a-f595-40a1-a341-469b5ff34190", "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"}' + string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '270' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:57 GMT + Location: + - https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + Pragma: + - no-cache + RequestId: + - ecc5c891-7427-4c08-bdc6-e418d77b090e + 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: 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.0.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/connections + response: + body: + string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:54 GMT + - Wed, 03 Sep 2025 09:21:58 GMT Pragma: - no-cache RequestId: - - f962df9a-f595-40a1-a341-469b5ff34190 + - 6ba2d55f-6df0-4198-9244-6ca6c1249896 Strict-Transport-Security: - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - deny home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + - https://wabi-west-europe-redirect.analysis.windows.net/ request-redirected: - 'true' - x-ms-public-api-error-code: - - DM_GWPipeline_Gateway_DataSourceAccessError status: - code: 400 - message: Bad Request -version: 1 + code: 200 + message: 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + response: + body: + string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '270' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:58 GMT + Pragma: + - no-cache + RequestId: + - 20e40011-1e7b-4d72-abaa-8af83491c026 + 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": "fabcli000002", "connectivityType": "ShareableCloud"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '344' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.0.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + response: + body: + string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '270' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:59 GMT + Pragma: + - no-cache + RequestId: + - 47726f1b-7ec3-4631-8dbe-a751ed765ed8 + 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/connections + response: + body: + string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '280' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:59 GMT + Pragma: + - no-cache + RequestId: + - 368886b2-629e-4b0d-a3c8-4f672faa4060 + 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + response: + body: + string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '270' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:58 GMT + Pragma: + - no-cache + RequestId: + - db2aadd9-68b7-4521-bd31-ea736306477c + 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/connections + response: + body: + string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '280' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:59 GMT + Pragma: + - no-cache + RequestId: + - d226952c-3611-4404-a22f-f08a38ff60a2 + 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + response: + body: + string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '270' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:59 GMT + Pragma: + - no-cache + RequestId: + - a5735250-e07d-4ebd-926e-c9174aa14058 + 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", "connectivityType": "ShareableCloud"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '71' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.0.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + response: + body: + string: '{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '270' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:59 GMT + Pragma: + - no-cache + RequestId: + - cf71f143-6988-4be9-8483-75f4a2788e70 + 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/connections + response: + body: + string: '{"value": [{"allowConnectionUsageInGateway": false, "id": "fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee", + "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: + - '280' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 03 Sep 2025 09:21:59 GMT + Pragma: + - no-cache + RequestId: + - 5c5771c1-1cbe-44c0-a769-fd12758b1566 + 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/connections/fd1d4969-1ba6-47f0-b0a3-5099e0e1ddee + 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 09:22:00 GMT + Pragma: + - no-cache + RequestId: + - 3098980a-9340-4bc0-8227-ddae139af3f7 + 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 +version: 1 \ No newline at end of file