diff --git a/.changes/unreleased/new-items-20260923-104648.yaml b/.changes/unreleased/new-items-20260923-104648.yaml new file mode 100644 index 000000000..731ddaf66 --- /dev/null +++ b/.changes/unreleased/new-items-20260923-104648.yaml @@ -0,0 +1,6 @@ +kind: new-items +body: Add support for Ontology item +time: 2026-09-23T10:46:48.536498559Z +custom: + Author: ohadedry + AuthorLink: https://github.com/ohadedry diff --git a/.changes/unreleased/new-items-20260923-104743.yaml b/.changes/unreleased/new-items-20260923-104743.yaml new file mode 100644 index 000000000..a304c8753 --- /dev/null +++ b/.changes/unreleased/new-items-20260923-104743.yaml @@ -0,0 +1,6 @@ +kind: new-items +body: Add support for GraphModel item +time: 2026-09-23T10:47:43.968565678Z +custom: + Author: ohadedry + AuthorLink: https://github.com/ohadedry diff --git a/docs/commands/fs/bulk_export.md b/docs/commands/fs/bulk_export.md index 3b1134e8a..40d1717ef 100644 --- a/docs/commands/fs/bulk_export.md +++ b/docs/commands/fs/bulk_export.md @@ -24,9 +24,13 @@ The `bulk-export` command exports all supported items from a workspace or folder - `.Workspace` — exports all supported items in the workspace - `.Folder` — exports all supported items in the folder and its sub-folders +## Limitations + +- Folder-level bulk export is not supported when the folder contains an `Ontology` item. + **Supported Item Types:** -`CopyJob`, `CosmosDBDatabase`, `Dataflow`, `DataPipeline`, `DigitalTwinBuilder`, `DigitalTwinBuilderFlow`, `Environment`, `Eventhouse`, `Eventstream`, `GraphQLApi`, `GraphQuerySet`, `KQLDashboard`, `KQLDatabase`, `KQLQueryset`, `Lakehouse`, `Map`, `MirroredDatabase`, `MLExperiment`, `MLModel`, `MountedDataFactory`, `Notebook`, `Reflex`, `Report`, `SemanticModel`, `SparkJobDefinition`, `SQLDatabase`, `UserDataFunction`, `VariableLibrary` +`CopyJob`, `CosmosDBDatabase`, `Dataflow`, `DataPipeline`, `DigitalTwinBuilder`, `DigitalTwinBuilderFlow`, `Environment`, `Eventhouse`, `Eventstream`, `GraphQLApi`, `GraphQuerySet`, `KQLDashboard`, `KQLDatabase`, `KQLQueryset`, `Lakehouse`, `Map`, `MirroredDatabase`, `MLExperiment`, `MLModel`, `MountedDataFactory`, `Notebook`, `Reflex`, `Report`, `SemanticModel`, `SparkJobDefinition`, `SQLDatabase`, `UserDataFunction`, `VariableLibrary`, `Ontology`, `GraphModel` Unsupported item types are automatically skipped and reported in the output summary. diff --git a/docs/essentials/resource_types.md b/docs/essentials/resource_types.md index 12665bcb8..dfc42868b 100644 --- a/docs/essentials/resource_types.md +++ b/docs/essentials/resource_types.md @@ -45,6 +45,9 @@ Item types are the primary content resources within Fabric workspaces. Each type | `.DigitalTwinBuilderFlow` | Digital Twin Builder flows | | `.GraphQuerySet` | Graph query collections | | `.UserDataFunction` | User data functions | +| `.GraphModel` | Graph models | +| `.Ontology` | Ontologies | + --- diff --git a/docs/examples/item_examples.md b/docs/examples/item_examples.md index f6b5869f6..5f5b290be 100644 --- a/docs/examples/item_examples.md +++ b/docs/examples/item_examples.md @@ -326,6 +326,7 @@ fab export ws1.Workspace/nb1.Notebook -o /tmp - `.KQLDatabase`, `.KQLDashboard`, `.KQLQueryset` - `.Eventhouse`, `.Eventstream`, `.MirroredDatabase` - `.Reflex`, `.DigitalTwinBuilder`, `.DigitalTwinBuilderFlow`, `.Map`, `.MountedDataFactory`, `.CopyJob`, `.VariableLibrary` +- `.GraphModel`, `.Ontology` #### Export to Lakehouse diff --git a/docs/examples/job_examples.md b/docs/examples/job_examples.md index 9a734edd4..8ac00f9c6 100644 --- a/docs/examples/job_examples.md +++ b/docs/examples/job_examples.md @@ -362,3 +362,21 @@ Execute only vacuum operation to clean up old files. ``` fab job run ws1.Workspace/lh1.Lakehouse -i '{"tableName": "orders", "vacuumSettings": {"retentionPeriod": "7.01:00:00"}}' ``` + +### Graph Model Jobs + +#### Refresh a Graph Model + +Refresh a graph model and wait for the job to complete. + +``` +fab job run ws1.Workspace/gm1.GraphModel +``` + +#### Refresh a Graph Model Asynchronously + +Start a graph model refresh without waiting for the job to complete. + +``` +fab job start ws1.Workspace/gm1.GraphModel +``` diff --git a/src/fabric_cli/core/fab_config/command_support.yaml b/src/fabric_cli/core/fab_config/command_support.yaml index 9b8027f8e..454f23b80 100644 --- a/src/fabric_cli/core/fab_config/command_support.yaml +++ b/src/fabric_cli/core/fab_config/command_support.yaml @@ -45,6 +45,7 @@ commands: - notebook - data_pipeline - lakehouse + - graph_model subcommands: run: run_cancel: @@ -175,6 +176,8 @@ commands: - user_data_function - map - environment + # - graph_model + # - ontology cp: supported_elements: - workspace @@ -207,6 +210,8 @@ commands: - user_data_function - map - environment + # - graph_model + # - ontology ln: supported_elements: - onelake @@ -266,6 +271,8 @@ commands: - map - lakehouse - environment + - graph_model + - ontology import: supported_items: - report @@ -294,6 +301,8 @@ commands: - map - lakehouse - environment + - graph_model + - ontology unsupported_items: - graph_query_set get: @@ -391,6 +400,8 @@ commands: - graph_query_set - map - lakehouse + - ontology + - graph_model mkdir: supported_elements: - workspace diff --git a/src/fabric_cli/core/fab_types.py b/src/fabric_cli/core/fab_types.py index 51989e30c..ceba9685e 100644 --- a/src/fabric_cli/core/fab_types.py +++ b/src/fabric_cli/core/fab_types.py @@ -264,6 +264,7 @@ class ItemType(_BaseItemType): ENVIRONMENT = "Environment" EVENTHOUSE = "Eventhouse" EVENTSTREAM = "Eventstream" + GRAPH_MODEL = "GraphModel" KQL_DASHBOARD = "KQLDashboard" KQL_DATABASE = "KQLDatabase" KQL_QUERYSET = "KQLQueryset" @@ -274,6 +275,7 @@ class ItemType(_BaseItemType): ML_EXPERIMENT = "MLExperiment" ML_MODEL = "MLModel" NOTEBOOK = "Notebook" + ONTOLOGY = "Ontology" PAGINATED_REPORT = "PaginatedReport" REFLEX = "Reflex" REPORT = "Report" @@ -328,6 +330,7 @@ class FabricJobType(Enum): RUN_NOTEBOOK = "RunNotebook" PIPELINE = "Pipeline" TABLE_MAINTENANCE = "TableMaintenance" + REFRESH_GRAPH = "refreshGraph" ITJobMap: dict[ItemType, FabricJobType] = { @@ -339,6 +342,7 @@ class FabricJobType(Enum): ItemType.DATA_PIPELINE: FabricJobType.PIPELINE, # {"tableName": "orders", "optimizeSettings": {"vOrder": true, "zOrderBy": ["account_id"]}, "vacuumSettings": {"retentionPeriod": "7.01:00:00"}} ItemType.LAKEHOUSE: FabricJobType.TABLE_MAINTENANCE, + ItemType.GRAPH_MODEL: FabricJobType.REFRESH_GRAPH, } ################################### @@ -505,6 +509,7 @@ class MirroredDatabaseFolders(Enum): ItemType.ENVIRONMENT: "environments", ItemType.EVENTHOUSE: "eventhouses", ItemType.EVENTSTREAM: "eventstreams", + ItemType.GRAPH_MODEL: "graphModels", ItemType.KQL_DASHBOARD: "kqlDashboards", ItemType.KQL_DATABASE: "kqlDatabases", ItemType.KQL_QUERYSET: "kqlQuerysets", @@ -515,6 +520,7 @@ class MirroredDatabaseFolders(Enum): ItemType.MIRRORED_WAREHOUSE: "mirroredWarehouses", ItemType.MIRRORED_DATABASE: "mirroredDatabases", ItemType.NOTEBOOK: "notebooks", + ItemType.ONTOLOGY: "ontologies", ItemType.PAGINATED_REPORT: "paginatedReports", ItemType.REFLEX: "reflexes", ItemType.REPORT: "reports", @@ -554,6 +560,7 @@ class MirroredDatabaseFolders(Enum): ItemType.ENVIRONMENT: "sparkenvironments", ItemType.EVENTHOUSE: "eventhouses", ItemType.EVENTSTREAM: "eventstreams", + ItemType.GRAPH_MODEL: "graph", ItemType.KQL_DASHBOARD: "kustodashboards", ItemType.KQL_DATABASE: "databases", ItemType.KQL_QUERYSET: "queryworkbenches", @@ -563,6 +570,7 @@ class MirroredDatabaseFolders(Enum): ItemType.ML_EXPERIMENT: "mlexperiments", ItemType.ML_MODEL: "mlmodels", ItemType.NOTEBOOK: "synapsenotebooks", + ItemType.ONTOLOGY: "ontologies", ItemType.PAGINATED_REPORT: "rdlreports", ItemType.REFLEX: "reflexes", ItemType.REPORT: "reports", @@ -606,4 +614,6 @@ class MirroredDatabaseFolders(Enum): ItemType.VARIABLE_LIBRARY: {"default": ""}, ItemType.MAP: {"default": ""}, ItemType.ENVIRONMENT: {"default": ""}, + ItemType.GRAPH_MODEL: {"default": ""}, + ItemType.ONTOLOGY: {"default": ""}, } diff --git a/tests/test_commands/conftest.py b/tests/test_commands/conftest.py index 497bfbca6..c5002871c 100644 --- a/tests/test_commands/conftest.py +++ b/tests/test_commands/conftest.py @@ -69,6 +69,8 @@ ItemType.DIGITAL_TWIN_BUILDER_FLOW, ItemType.GRAPH_QUERY_SET, ItemType.MAP, + ItemType.GRAPH_MODEL, + ItemType.ONTOLOGY, ] item_type_paramerter = pytest.mark.parametrize("item_type", ALL_ITEM_TYPES) @@ -93,6 +95,8 @@ ItemType.DIGITAL_TWIN_BUILDER_FLOW, ItemType.GRAPH_QUERY_SET, ItemType.MAP, + ItemType.GRAPH_MODEL, + ItemType.ONTOLOGY, ], ) @@ -113,6 +117,8 @@ ItemType.DIGITAL_TWIN_BUILDER, ItemType.DIGITAL_TWIN_BUILDER_FLOW, ItemType.LAKEHOUSE, + ItemType.GRAPH_MODEL, + ItemType.ONTOLOGY, ], ) @@ -137,6 +143,8 @@ ItemType.DIGITAL_TWIN_BUILDER_FLOW, ItemType.LAKEHOUSE, ItemType.ENVIRONMENT, + ItemType.GRAPH_MODEL, + ItemType.ONTOLOGY, ], ) @@ -214,6 +222,8 @@ ItemType.USER_DATA_FUNCTION, ItemType.MAP, ItemType.ENVIRONMENT, + # ItemType.GRAPH_MODEL, + # ItemType.ONTOLOGY, ], ) @@ -249,6 +259,8 @@ ItemType.USER_DATA_FUNCTION, ItemType.MAP, ItemType.ENVIRONMENT, + # ItemType.GRAPH_MODEL, + # ItemType.ONTOLOGY, ], ) @@ -328,6 +340,8 @@ ItemType.MAP, ItemType.DIGITAL_TWIN_BUILDER, ItemType.DIGITAL_TWIN_BUILDER_FLOW, + ItemType.GRAPH_MODEL, + ItemType.ONTOLOGY, ], ) @@ -395,6 +409,8 @@ (ItemType.DIGITAL_TWIN_BUILDER_FLOW, ".json"), (ItemType.MAP, ".json"), (ItemType.LAKEHOUSE, ".json"), + (ItemType.GRAPH_MODEL, ".json"), + (ItemType.ONTOLOGY, ".json"), ], ) @@ -416,6 +432,8 @@ ItemType.MAP, ItemType.LAKEHOUSE, ItemType.ENVIRONMENT, + ItemType.GRAPH_MODEL, + ItemType.ONTOLOGY, ], ) @@ -448,6 +466,8 @@ (ItemType.DIGITAL_TWIN_BUILDER_FLOW, 2), (ItemType.LAKEHOUSE, 4), (ItemType.ENVIRONMENT, 2), + (ItemType.GRAPH_MODEL, 6), + (ItemType.ONTOLOGY, 2), ], ) @@ -464,6 +484,8 @@ (ItemType.GRAPH_QUERY_SET, ".txt"), (ItemType.DIGITAL_TWIN_BUILDER, ".txt"), (ItemType.LAKEHOUSE, ".txt"), + (ItemType.GRAPH_MODEL, ".txt"), + (ItemType.ONTOLOGY, ".txt"), ], ) @@ -492,6 +514,8 @@ ItemType.ENVIRONMENT, # ItemType.DIGITAL_TWIN_BUILDER, # ItemType.DIGITAL_TWIN_BUILDER_FLOW, + # ItemType.GRAPH_MODEL, + # ItemType.ONTOLOGY, ], ) @@ -508,6 +532,8 @@ ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.ENVIRONMENT, + # ItemType.GRAPH_MODEL, + # ItemType.ONTOLOGY, ], ) @@ -558,6 +584,8 @@ ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.GRAPH_QUERY_SET, + # ItemType.GRAPH_MODEL, + # ItemType.ONTOLOGY, ], ) diff --git a/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml index 130daad1d..505a97cab 100644 --- a/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 05:44:31 GMT + - Thu, 03 Sep 2026 08:36:46 GMT Pragma: - no-cache RequestId: - - 5c980ab7-9989-4044-8a3b-ea01d74e9cbc + - 8f5f8f78-2ba8-4b0e-a026-2b3e631ad28e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 05:44:31 GMT + - Thu, 03 Sep 2026 08:36:47 GMT Pragma: - no-cache RequestId: - - 4083cefc-1eb6-440d-ad4f-42750c243855 + - 34a92408-8306-4628-9747-ad86e542d682 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,21 +119,21 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '426' + - '466' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 05:44:36 GMT + - Thu, 03 Sep 2026 08:36:52 GMT Pragma: - no-cache RequestId: - - 789c1191-be3c-4ce1-8e87-d95675e194e6 + - f79a4ee0-8470-424f-a628-3b74dbaa9c76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "7185132e-fd46-4492-9fe6-c9b77d445a96", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '176' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 05:44:43 GMT + - Thu, 03 Sep 2026 08:37:00 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7185132e-fd46-4492-9fe6-c9b77d445a96 + - https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0 Pragma: - no-cache RequestId: - - fdfd2489-7417-420b-94bb-da74ba3fd6b0 + - fbaaf7e8-6719-4a39-aa32-8bbe0c2f7164 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (cd; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "7185132e-fd46-4492-9fe6-c9b77d445a96", + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2527' + - '3384' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 05:45:51 GMT + - Thu, 03 Sep 2026 08:38:17 GMT Pragma: - no-cache RequestId: - - 8855580c-ace3-44cf-ad25-45ea968ee08a + - cb4ae38f-4fee-4802-bcc2-752f942a6b6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,41 +266,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (cd; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7185132e-fd46-4492-9fe6-c9b77d445a96/items + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items response: body: - string: '{"value": [{"id": "9652273e-d3a3-4f78-bb85-e218f666faf2", "type": "SQLEndpoint", - "displayName": "fabcli000001_autodtdm", "description": "", "workspaceId": - "7185132e-fd46-4492-9fe6-c9b77d445a96"}, {"id": "2f5c6176-7ce2-43d0-88f7-749c18254524", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "7185132e-fd46-4492-9fe6-c9b77d445a96"}, {"id": "d851d970-868b-40c3-88de-3938426ce0f4", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "7185132e-fd46-4492-9fe6-c9b77d445a96"}, {"id": "40692767-d545-4836-bd64-fe30b12e86b9", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "7185132e-fd46-4492-9fe6-c9b77d445a96"}, {"id": "59db8039-4290-4efa-aa40-bcfb868cb144", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "7185132e-fd46-4492-9fe6-c9b77d445a96"}, - {"id": "c0613792-bcbb-4b1f-8486-a018336f8062", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "7185132e-fd46-4492-9fe6-c9b77d445a96"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '372' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 05:45:53 GMT + - Thu, 03 Sep 2026 08:38:17 GMT Pragma: - no-cache RequestId: - - e0a8361a-5e60-49ac-a448-2908ffb1c0e6 + - 2d5d3580-100a-474f-a445-d63e83c1d4c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -326,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (cd; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/7185132e-fd46-4492-9fe6-c9b77d445a96 + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -344,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 05:45:53 GMT + - Thu, 03 Sep 2026 08:38:19 GMT Pragma: - no-cache RequestId: - - 9c24306b-edcf-45fd-ac5e-4967873680d9 + - 78622128-c0f7-4c7e-bcd6-d69dd867cb30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[GraphModel].yaml new file mode 100644 index 000000000..857eb1042 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[GraphModel].yaml @@ -0,0 +1,555 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:00 GMT + Pragma: + - no-cache + RequestId: + - e71ea8e8-3fc3-41c5-b84a-e1aa5a8910aa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:01 GMT + Pragma: + - no-cache + RequestId: + - 6d628963-30b8-4b89-82ba-4857773746d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:01 GMT + Pragma: + - no-cache + RequestId: + - 859b5c7e-d1d9-4df3-9831-3d2bdc15f5e6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:04 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a76cf871-a0d2-49bc-aa90-1aa7946bcbd5 + Pragma: + - no-cache + RequestId: + - 686a3e51-4f11-4cf8-8082-5a72d971955e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - a76cf871-a0d2-49bc-aa90-1aa7946bcbd5 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a76cf871-a0d2-49bc-aa90-1aa7946bcbd5 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T08:37:03.279295", + "lastUpdatedTimeUtc": "2026-09-03T08:37:18.5557381", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:24 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a76cf871-a0d2-49bc-aa90-1aa7946bcbd5/result + Pragma: + - no-cache + RequestId: + - 0b5e30ee-aca6-4513-92bc-2e8231b7bc8a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - a76cf871-a0d2-49bc-aa90-1aa7946bcbd5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a76cf871-a0d2-49bc-aa90-1aa7946bcbd5/result + response: + body: + string: '{"id": "38287f46-a2ee-4ef1-8659-83019c6792b4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 08:37:25 GMT + Pragma: + - no-cache + RequestId: + - fa758c04-98d2-46f0-a70d-ec4092afac22 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:25 GMT + Pragma: + - no-cache + RequestId: + - 3c09633a-b188-4593-b70a-86a211c869b6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": [{"id": "38287f46-a2ee-4ef1-8659-83019c6792b4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:26 GMT + Pragma: + - no-cache + RequestId: + - ac8341f2-ecdf-42f3-86b1-965e31a34a77 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:27 GMT + Pragma: + - no-cache + RequestId: + - 953ad264-502a-482e-b768-3d7018759ef2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": [{"id": "38287f46-a2ee-4ef1-8659-83019c6792b4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:27 GMT + Pragma: + - no-cache + RequestId: + - b10e67bf-24ab-4560-90c9-d975ea2e3bca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items/38287f46-a2ee-4ef1-8659-83019c6792b4 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 08:37:27 GMT + Pragma: + - no-cache + RequestId: + - b6e7c3b2-0a51-4993-8557-cfdd4c9b0c15 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[Ontology].yaml new file mode 100644 index 000000000..6afa79636 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[Ontology].yaml @@ -0,0 +1,623 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:27 GMT + Pragma: + - no-cache + RequestId: + - 18707ef6-d31e-41f4-bf4a-f0bea2c65aa8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:28 GMT + Pragma: + - no-cache + RequestId: + - 5fdba5fc-1037-4a90-aed6-69117eed2277 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:29 GMT + Pragma: + - no-cache + RequestId: + - feb4cb73-02b3-412d-80b8-50ce4d9cdae8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:32 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7698c6e6-e0fa-4022-8698-40bbe34997c1 + Pragma: + - no-cache + RequestId: + - 65b85be0-3557-4211-bccc-1170240f755c + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 7698c6e6-e0fa-4022-8698-40bbe34997c1 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7698c6e6-e0fa-4022-8698-40bbe34997c1 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T08:37:30.2931396", + "lastUpdatedTimeUtc": "2026-09-03T08:37:30.2931396", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '145' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:37:53 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7698c6e6-e0fa-4022-8698-40bbe34997c1 + Pragma: + - no-cache + RequestId: + - 8e8da035-45f4-4315-af52-987f34fc155e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 7698c6e6-e0fa-4022-8698-40bbe34997c1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7698c6e6-e0fa-4022-8698-40bbe34997c1 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T08:37:30.2931396", + "lastUpdatedTimeUtc": "2026-09-03T08:38:11.9696576", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:13 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7698c6e6-e0fa-4022-8698-40bbe34997c1/result + Pragma: + - no-cache + RequestId: + - 2f23b37e-39c8-41dc-9f70-9cfd9861721e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 7698c6e6-e0fa-4022-8698-40bbe34997c1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7698c6e6-e0fa-4022-8698-40bbe34997c1/result + response: + body: + string: '{"id": "503ac295-831a-4a6e-870b-3d3dfe53e878", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 08:38:14 GMT + Pragma: + - no-cache + RequestId: + - 8b32b934-b351-4ffd-a426-073d277b0d03 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:14 GMT + Pragma: + - no-cache + RequestId: + - 4a8f61fb-0b18-4576-904f-36764a34cd12 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": [{"id": "541b8953-22eb-4f49-b4d3-49f109651dd1", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_503ac295831a4a6e870b3d3dfe53e878", "description": + "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}, {"id": "503ac295-831a-4a6e-870b-3d3dfe53e878", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}, {"id": "3d15c715-6039-4c0a-8454-ae2048105f7d", + "type": "Lakehouse", "displayName": "fabcli000001_lh_503ac295831a4a6e870b3d3dfe53e878", + "description": "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}, + {"id": "3e3f1fb1-8fcf-4c01-b8dc-a409663281e1", "type": "GraphModel", "displayName": + "fabcli000001_graph_503ac295831a4a6e870b3d3dfe53e878", "description": "", + "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:15 GMT + Pragma: + - no-cache + RequestId: + - 05b3a8bf-83d8-4c7a-aa01-899d39d40372 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:15 GMT + Pragma: + - no-cache + RequestId: + - f591c380-1e2a-4f5b-b401-50ef0e2efa19 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items + response: + body: + string: '{"value": [{"id": "541b8953-22eb-4f49-b4d3-49f109651dd1", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_503ac295831a4a6e870b3d3dfe53e878", "description": + "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}, {"id": "503ac295-831a-4a6e-870b-3d3dfe53e878", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}, {"id": "3d15c715-6039-4c0a-8454-ae2048105f7d", + "type": "Lakehouse", "displayName": "fabcli000001_lh_503ac295831a4a6e870b3d3dfe53e878", + "description": "", "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}, + {"id": "3e3f1fb1-8fcf-4c01-b8dc-a409663281e1", "type": "GraphModel", "displayName": + "fabcli000001_graph_503ac295831a4a6e870b3d3dfe53e878", "description": "", + "workspaceId": "efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:16 GMT + Pragma: + - no-cache + RequestId: + - 9f1a4b36-ee74-48ed-a0b0-be9d71a44d8d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/efcf8bcb-fe8e-43e8-8e8c-0fb7fa531bf0/items/503ac295-831a-4a6e-870b-3d3dfe53e878 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 08:38:17 GMT + Pragma: + - no-cache + RequestId: + - befc9be1-9aee-46e2-bc3d-d52f3a39c768 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml index bb4aa4642..3b8e378e5 100644 --- a/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:32:49 GMT + - Thu, 03 Sep 2026 08:38:19 GMT Pragma: - no-cache RequestId: - - c6dbe35e-70f0-4ad1-a797-7dce77723d7a + - 44397448-7378-4f8d-b5d0-0a0e7a0a0a51 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:32:50 GMT + - Thu, 03 Sep 2026 08:38:19 GMT Pragma: - no-cache RequestId: - - 0e29ac94-e931-408d-aa48-ded61cd0fbc3 + - c784f34f-21d9-4484-9004-20fbdf34c5d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,21 +119,21 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '426' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:32:55 GMT + - Thu, 03 Sep 2026 08:38:24 GMT Pragma: - no-cache RequestId: - - 0c2a0ce1-5c2c-45e4-b894-4713d7f881d3 + - 27954df8-929a-4e20-bdd9-eb972dbe9790 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (cd; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "7a28203e-aedf-4f91-8bc3-d5f746a91c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "327a36cc-0974-4c51-86d5-3fd826299512", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '177' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:33:02 GMT + - Thu, 03 Sep 2026 08:38:32 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7a28203e-aedf-4f91-8bc3-d5f746a91c81 + - https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512 Pragma: - no-cache RequestId: - - 3e68219d-d541-4b38-8d99-657388c1bd05 + - 1fa46c4d-89fc-4191-a6e9-5eddd1b7b89b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (exists; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (exists; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "7a28203e-aedf-4f91-8bc3-d5f746a91c81", + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2528' + - '3379' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:35:12 GMT + - Thu, 03 Sep 2026 08:41:28 GMT Pragma: - no-cache RequestId: - - db1ed2e6-49be-4588-9920-c77c1a27d550 + - b8d643a8-344b-4d9e-9a70-d13c94d163ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,54 +266,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (exists; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (exists; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7a28203e-aedf-4f91-8bc3-d5f746a91c81/items + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items response: body: - string: '{"value": [{"id": "c29432e2-b32a-4b5e-87e4-2bafcec99b01", "type": "SQLEndpoint", - "displayName": "fabcli000001_autodtdm", "description": "", "workspaceId": - "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "456741c2-3f58-45d0-a38e-6ebaee110d1f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "60896bec-52ce-453e-9e12-1b9f23382589", - "type": "SQLEndpoint", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "7cae0cf0-e908-4f7e-9497-a20aac531672", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "18f0bbae-eba3-4ee8-9e5e-8f60857637f3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "170bc88d-b6f9-4a03-bdf0-8c1f1126f2b7", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "33332f38-a881-4f1a-91e1-2751ae21c213", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, - {"id": "a78e3eaf-006d-4ee1-8934-7bc4add2b56c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, - {"id": "18efd646-ab1f-4330-bd24-63051671b3b5", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, - {"id": "6d12398a-7d43-4b70-bc5f-0d76000dc571", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, - {"id": "74504116-fd12-4404-82c6-b1939cb4ea4f", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}, {"id": "688ebf21-5d93-445c-8911-4f4fc98b567f", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "7a28203e-aedf-4f91-8bc3-d5f746a91c81"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '555' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:35:13 GMT + - Thu, 03 Sep 2026 08:41:28 GMT Pragma: - no-cache RequestId: - - e629de06-d360-45f6-aedd-c98800784cd4 + - 6af1889b-930e-45f8-b65d-85b411ddbe71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -339,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (exists; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (exists; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/7a28203e-aedf-4f91-8bc3-d5f746a91c81 + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -357,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 06:35:14 GMT + - Thu, 03 Sep 2026 08:41:28 GMT Pragma: - no-cache RequestId: - - e5ff7802-e458-4544-adf8-82addd48284c + - 6100be8b-cb53-4325-a28b-0f6343c073e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[GraphModel].yaml new file mode 100644 index 000000000..73c783cca --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[GraphModel].yaml @@ -0,0 +1,656 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:33 GMT + Pragma: + - no-cache + RequestId: + - 253b61d7-ee6e-40cd-9957-e45eef610ed8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:33 GMT + Pragma: + - no-cache + RequestId: + - d30df5ca-1fb3-420e-a947-1e7dfbe55122 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:33 GMT + Pragma: + - no-cache + RequestId: + - 26e2e436-80fe-46a5-873d-debf88a677a0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:36 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4986414-6c6d-497d-b134-6cfac26cf0fc + Pragma: + - no-cache + RequestId: + - 47f5c899-9bed-4f67-8735-d2710dd3cf98 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - a4986414-6c6d-497d-b134-6cfac26cf0fc + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4986414-6c6d-497d-b134-6cfac26cf0fc + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T08:38:35.3939873", + "lastUpdatedTimeUtc": "2026-09-03T08:38:35.3939873", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:38:57 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4986414-6c6d-497d-b134-6cfac26cf0fc + Pragma: + - no-cache + RequestId: + - 99ea8af0-c5fd-4e08-8a8d-ac043c918abb + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - a4986414-6c6d-497d-b134-6cfac26cf0fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4986414-6c6d-497d-b134-6cfac26cf0fc + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T08:38:35.3939873", + "lastUpdatedTimeUtc": "2026-09-03T08:39:08.4390318", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:16 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4986414-6c6d-497d-b134-6cfac26cf0fc/result + Pragma: + - no-cache + RequestId: + - 6e3bfb97-9158-41fe-b6f0-125facf2ac1c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - a4986414-6c6d-497d-b134-6cfac26cf0fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4986414-6c6d-497d-b134-6cfac26cf0fc/result + response: + body: + string: '{"id": "1f2147ed-1a3f-4ac0-b2c4-891fe557988e", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 08:39:17 GMT + Pragma: + - no-cache + RequestId: + - d780f86a-35e9-496c-bc99-99a761bd5f72 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:18 GMT + Pragma: + - no-cache + RequestId: + - b2040662-28d5-4057-bd62-24665c3a9b51 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "1f2147ed-1a3f-4ac0-b2c4-891fe557988e", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:19 GMT + Pragma: + - no-cache + RequestId: + - 71df4cd5-0c62-445f-b574-1aa01f0da50c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "1f2147ed-1a3f-4ac0-b2c4-891fe557988e", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:19 GMT + Pragma: + - no-cache + RequestId: + - ce0e7f15-7ebc-4257-8325-474463e25278 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:20 GMT + Pragma: + - no-cache + RequestId: + - 2fa2d10b-c352-4cfa-853e-5d9832e88b12 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "1f2147ed-1a3f-4ac0-b2c4-891fe557988e", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:20 GMT + Pragma: + - no-cache + RequestId: + - fe2d0b9f-bb34-40fd-850c-baf0442f9460 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items/1f2147ed-1a3f-4ac0-b2c4-891fe557988e + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 08:39:20 GMT + Pragma: + - no-cache + RequestId: + - e9a09492-2b87-4e52-9a65-12beb6cd0a69 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[Ontology].yaml new file mode 100644 index 000000000..d7cf0cc4f --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[Ontology].yaml @@ -0,0 +1,680 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:21 GMT + Pragma: + - no-cache + RequestId: + - e6a5f2a6-9d43-4cb0-8142-41208e83818e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:22 GMT + Pragma: + - no-cache + RequestId: + - b5553702-7aff-4664-a37f-e03c7f7178dd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:22 GMT + Pragma: + - no-cache + RequestId: + - 0a0b0e59-517f-49d3-9dec-b11c61b8c5da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:25 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1759f72-2953-4670-b7b6-8aede2f4978e + Pragma: + - no-cache + RequestId: + - 2a4d2e30-b573-42c2-be85-5af1cb7a6a31 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - a1759f72-2953-4670-b7b6-8aede2f4978e + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1759f72-2953-4670-b7b6-8aede2f4978e + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T08:39:23.6122145", + "lastUpdatedTimeUtc": "2026-09-03T08:39:23.6122145", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:39:45 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1759f72-2953-4670-b7b6-8aede2f4978e + Pragma: + - no-cache + RequestId: + - 6c06d176-2cce-48a5-848a-f50e8e28606b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - a1759f72-2953-4670-b7b6-8aede2f4978e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1759f72-2953-4670-b7b6-8aede2f4978e + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T08:39:23.6122145", + "lastUpdatedTimeUtc": "2026-09-03T08:40:02.1215601", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:06 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1759f72-2953-4670-b7b6-8aede2f4978e/result + Pragma: + - no-cache + RequestId: + - 63528395-0312-4b0f-b7b8-6639fe0adf72 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - a1759f72-2953-4670-b7b6-8aede2f4978e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1759f72-2953-4670-b7b6-8aede2f4978e/result + response: + body: + string: '{"id": "2f9f4bbd-f763-4c96-b7bd-8fb8bf4792c9", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 08:40:07 GMT + Pragma: + - no-cache + RequestId: + - c6550d44-96ed-4ad2-b125-ba39a5f93cf7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:07 GMT + Pragma: + - no-cache + RequestId: + - b5dd890b-7a5a-4340-9bb7-1fa4c35db79c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "6048ec39-16a2-48c7-8211-5d23b0bfc40a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_2f9f4bbdf7634c96b7bd8fb8bf4792c9", "description": + "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "2f9f4bbd-f763-4c96-b7bd-8fb8bf4792c9", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "cdb8aee6-710c-45a3-8784-ffff7265b122", + "type": "Lakehouse", "displayName": "fabcli000001_lh_2f9f4bbdf7634c96b7bd8fb8bf4792c9", + "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, + {"id": "16c5c2a9-6564-49da-bff7-41f18920ec01", "type": "GraphModel", "displayName": + "fabcli000001_graph_2f9f4bbdf7634c96b7bd8fb8bf4792c9", "description": "", + "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:07 GMT + Pragma: + - no-cache + RequestId: + - 113a6b61-7de5-4042-a1a5-2d3addd55986 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "6048ec39-16a2-48c7-8211-5d23b0bfc40a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_2f9f4bbdf7634c96b7bd8fb8bf4792c9", "description": + "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "2f9f4bbd-f763-4c96-b7bd-8fb8bf4792c9", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "cdb8aee6-710c-45a3-8784-ffff7265b122", + "type": "Lakehouse", "displayName": "fabcli000001_lh_2f9f4bbdf7634c96b7bd8fb8bf4792c9", + "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, + {"id": "16c5c2a9-6564-49da-bff7-41f18920ec01", "type": "GraphModel", "displayName": + "fabcli000001_graph_2f9f4bbdf7634c96b7bd8fb8bf4792c9", "description": "", + "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:07 GMT + Pragma: + - no-cache + RequestId: + - 7db7e361-6285-416b-a812-1e67ab0d7b99 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:08 GMT + Pragma: + - no-cache + RequestId: + - 73bea210-923a-4e5f-929b-93e75ce36aa8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "6048ec39-16a2-48c7-8211-5d23b0bfc40a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_2f9f4bbdf7634c96b7bd8fb8bf4792c9", "description": + "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "2f9f4bbd-f763-4c96-b7bd-8fb8bf4792c9", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "cdb8aee6-710c-45a3-8784-ffff7265b122", + "type": "Lakehouse", "displayName": "fabcli000001_lh_2f9f4bbdf7634c96b7bd8fb8bf4792c9", + "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, + {"id": "16c5c2a9-6564-49da-bff7-41f18920ec01", "type": "GraphModel", "displayName": + "fabcli000001_graph_2f9f4bbdf7634c96b7bd8fb8bf4792c9", "description": "", + "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:08 GMT + Pragma: + - no-cache + RequestId: + - 4705b39e-94bd-4094-9738-d39c93bf0715 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items/2f9f4bbd-f763-4c96-b7bd-8fb8bf4792c9 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 08:40:10 GMT + Pragma: + - no-cache + RequestId: + - 1ef8ca67-eb73-477a-94fd-3ae26d7ac931 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[GraphModel].yaml new file mode 100644 index 000000000..e5764b544 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[GraphModel].yaml @@ -0,0 +1,555 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:10 GMT + Pragma: + - no-cache + RequestId: + - d8371b2e-031b-4416-bfa7-1a86230d9b12 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:10 GMT + Pragma: + - no-cache + RequestId: + - 2fcac56f-7417-4fa6-ac88-6b0eb9bd4b5b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:11 GMT + Pragma: + - no-cache + RequestId: + - 1909ded9-7526-48f7-963b-d2b7403c2d01 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:11 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28f08a94-332e-436e-8279-71c00af31d24 + Pragma: + - no-cache + RequestId: + - 90377c4b-1147-41b8-963d-076e79956b11 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 28f08a94-332e-436e-8279-71c00af31d24 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28f08a94-332e-436e-8279-71c00af31d24 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T08:40:12.0439125", + "lastUpdatedTimeUtc": "2026-09-03T08:40:23.7278619", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:32 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28f08a94-332e-436e-8279-71c00af31d24/result + Pragma: + - no-cache + RequestId: + - c5661177-c2be-49a3-b868-b9965d21588d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 28f08a94-332e-436e-8279-71c00af31d24 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28f08a94-332e-436e-8279-71c00af31d24/result + response: + body: + string: '{"id": "791a3def-c3e8-487b-9069-464ae5170e95", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 08:40:32 GMT + Pragma: + - no-cache + RequestId: + - 898abd30-8bdb-4d64-a3b9-8a39ddbf1db9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:33 GMT + Pragma: + - no-cache + RequestId: + - 07445f15-e2d4-45b6-b044-2c482ef5338d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "791a3def-c3e8-487b-9069-464ae5170e95", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:33 GMT + Pragma: + - no-cache + RequestId: + - 0714c138-5682-4c84-b52b-5f11d47505d0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:34 GMT + Pragma: + - no-cache + RequestId: + - 66c7380f-94d9-4eb0-a348-ae5d37e02cc7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "791a3def-c3e8-487b-9069-464ae5170e95", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:34 GMT + Pragma: + - no-cache + RequestId: + - 649db0f3-ce0d-4998-a5bf-34c3e29961da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items/791a3def-c3e8-487b-9069-464ae5170e95 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 08:40:35 GMT + Pragma: + - no-cache + RequestId: + - 77324b68-6100-4961-bfa3-f85d30a8ec1a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[Ontology].yaml new file mode 100644 index 000000000..f9fa0fccf --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[Ontology].yaml @@ -0,0 +1,623 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:36 GMT + Pragma: + - no-cache + RequestId: + - 04692166-a095-40b1-ae5e-0537eac5a96d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:36 GMT + Pragma: + - no-cache + RequestId: + - d0faf0e0-669a-45af-8f81-b87c148242d4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:36 GMT + Pragma: + - no-cache + RequestId: + - 9919d61d-3a38-4041-a662-c6447aab32ac + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:40:42 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/021447bd-3eee-42e6-9f25-63f76dd86182 + Pragma: + - no-cache + RequestId: + - 8873071c-181b-4337-932b-101e5cfad2d5 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 021447bd-3eee-42e6-9f25-63f76dd86182 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/021447bd-3eee-42e6-9f25-63f76dd86182 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T08:40:37.7600323", + "lastUpdatedTimeUtc": "2026-09-03T08:40:37.7600323", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '145' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:41:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/021447bd-3eee-42e6-9f25-63f76dd86182 + Pragma: + - no-cache + RequestId: + - 8acda0a7-22f7-4cf5-87f5-485c3da18b99 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 021447bd-3eee-42e6-9f25-63f76dd86182 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/021447bd-3eee-42e6-9f25-63f76dd86182 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T08:40:37.7600323", + "lastUpdatedTimeUtc": "2026-09-03T08:41:19.9934648", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:41:24 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/021447bd-3eee-42e6-9f25-63f76dd86182/result + Pragma: + - no-cache + RequestId: + - 954be1ef-9300-4b1f-b79b-01ccf7223f13 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 021447bd-3eee-42e6-9f25-63f76dd86182 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/021447bd-3eee-42e6-9f25-63f76dd86182/result + response: + body: + string: '{"id": "9972cafc-dd96-48fa-ae90-0db876080a0b", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 08:41:24 GMT + Pragma: + - no-cache + RequestId: + - 96d096d9-515d-4fcd-8e5c-5f3ad123fa7e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:41:25 GMT + Pragma: + - no-cache + RequestId: + - 706171af-956a-49d2-a5a7-f0f5d4abc85d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "59a1e419-da91-48ec-bc2a-af466608f685", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_9972cafcdd9648faae900db876080a0b", "description": + "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "9972cafc-dd96-48fa-ae90-0db876080a0b", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "3ecad836-a192-4dc7-8a70-8eb6109370cc", + "type": "Lakehouse", "displayName": "fabcli000001_lh_9972cafcdd9648faae900db876080a0b", + "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, + {"id": "c3c23450-a8a6-4e3f-b403-4f25dd933185", "type": "GraphModel", "displayName": + "fabcli000001_graph_9972cafcdd9648faae900db876080a0b", "description": "", + "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:41:26 GMT + Pragma: + - no-cache + RequestId: + - e4364c5a-af5b-4083-a9ff-76d2ee12fbe7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "327a36cc-0974-4c51-86d5-3fd826299512", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3379' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:41:26 GMT + Pragma: + - no-cache + RequestId: + - 9c06f7c6-ad9d-4b8c-b115-79e9728a9407 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items + response: + body: + string: '{"value": [{"id": "59a1e419-da91-48ec-bc2a-af466608f685", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_9972cafcdd9648faae900db876080a0b", "description": + "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "9972cafc-dd96-48fa-ae90-0db876080a0b", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "327a36cc-0974-4c51-86d5-3fd826299512"}, {"id": "3ecad836-a192-4dc7-8a70-8eb6109370cc", + "type": "Lakehouse", "displayName": "fabcli000001_lh_9972cafcdd9648faae900db876080a0b", + "description": "", "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}, + {"id": "c3c23450-a8a6-4e3f-b403-4f25dd933185", "type": "GraphModel", "displayName": + "fabcli000001_graph_9972cafcdd9648faae900db876080a0b", "description": "", + "workspaceId": "327a36cc-0974-4c51-86d5-3fd826299512"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 08:41:27 GMT + Pragma: + - no-cache + RequestId: + - 490fb0d8-e734-4c1e-910a-fd97369c8771 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/327a36cc-0974-4c51-86d5-3fd826299512/items/9972cafc-dd96-48fa-ae90-0db876080a0b + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 08:41:27 GMT + Pragma: + - no-cache + RequestId: + - 386d41e8-e1f0-4faa-8b9a-88f498b06ee2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml index f581f8a73..6f2fb42e2 100644 --- a/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2925' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 10:31:22 GMT + - Wed, 09 Sep 2026 08:44:32 GMT Pragma: - no-cache RequestId: - - 0a045caa-a47d-48ee-9322-365ed1091643 + - 0095b15f-7d97-4fa8-ac22-f320fe214666 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2925' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 10:31:23 GMT + - Wed, 09 Sep 2026 08:44:32 GMT Pragma: - no-cache RequestId: - - 8c275987-bb01-46c4-a0c5-03b95b13f4ce + - 6d08b554-0921-452e-a600-6af0a8107cd3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,7 +119,7 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 10:31:27 GMT + - Wed, 09 Sep 2026 08:44:37 GMT Pragma: - no-cache RequestId: - - c8a7bfba-b95b-4f5f-b660-51346d651273 + - aac3d752-8015-4071-ba7f-17a8e7197ba7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '177' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 10:31:34 GMT + - Wed, 09 Sep 2026 08:44:45 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7 + - https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903 Pragma: - no-cache RequestId: - - a26e7a0f-fc98-44d7-b65c-68656f58f2f1 + - b8591063-173c-4123-8c7e-9d8677160bae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (export; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2963' + - '3457' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 10:32:08 GMT + - Wed, 09 Sep 2026 08:55:50 GMT Pragma: - no-cache RequestId: - - 414c1bb1-1644-4cd9-8e8a-35933d7def17 + - cb305bda-7086-42f3-b0d3-0f2dae05692f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,15 +266,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (export; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items response: body: string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -282,11 +284,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 10:32:09 GMT + - Wed, 09 Sep 2026 08:55:50 GMT Pragma: - no-cache RequestId: - - b115aaf5-aac0-45de-901b-5d3dad844d94 + - 955b3f63-5508-4370-8916-245b17abde60 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (export; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7 + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -332,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 02 Jun 2026 10:32:09 GMT + - Wed, 09 Sep 2026 08:55:50 GMT Pragma: - no-cache RequestId: - - b42e1e61-7b54-443d-b168-64b9ee05ac19 + - e56676bb-3acb-44b7-acb7-b9be5981ee49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[GraphModel-6].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[GraphModel-6].yaml new file mode 100644 index 000000000..b6c9d0e5b --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[GraphModel-6].yaml @@ -0,0 +1,765 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:44:46 GMT + Pragma: + - no-cache + RequestId: + - 0cb0735e-acf7-4a5d-b199-9f3f48d8413a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:44:46 GMT + Pragma: + - no-cache + RequestId: + - c2a56eed-21d7-46d5-92db-987bab7567f9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:44:46 GMT + Pragma: + - no-cache + RequestId: + - 33a6e529-7edb-4127-808d-2b5f7925ba01 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:44:51 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dc6928-bdad-4b8f-b524-5fc1d2272a83 + Pragma: + - no-cache + RequestId: + - 40fab8ea-1e88-41c2-a196-fc913d0a7c2a + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 37dc6928-bdad-4b8f-b524-5fc1d2272a83 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dc6928-bdad-4b8f-b524-5fc1d2272a83 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:44:48.3968748", + "lastUpdatedTimeUtc": "2026-09-09T08:45:04.6537417", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:11 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dc6928-bdad-4b8f-b524-5fc1d2272a83/result + Pragma: + - no-cache + RequestId: + - 55a09da6-e5b1-45d8-81ec-e2e1bfd15571 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 37dc6928-bdad-4b8f-b524-5fc1d2272a83 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dc6928-bdad-4b8f-b524-5fc1d2272a83/result + response: + body: + string: '{"id": "5c4261e3-f81c-4c8e-af7d-5c5786620be4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:45:12 GMT + Pragma: + - no-cache + RequestId: + - ba030d1f-b693-4fcd-8807-894c055c0a93 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:13 GMT + Pragma: + - no-cache + RequestId: + - af025c63-9029-46a5-a13d-12a1cb26660d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "5c4261e3-f81c-4c8e-af7d-5c5786620be4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:13 GMT + Pragma: + - no-cache + RequestId: + - 92575743-d79b-4eeb-8dd7-5229cd3afeee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/5c4261e3-f81c-4c8e-af7d-5c5786620be4 + response: + body: + string: '{"id": "5c4261e3-f81c-4c8e-af7d-5c5786620be4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:13 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 84d30c18-ab47-40c4-8ecf-505644a1f348 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/5c4261e3-f81c-4c8e-af7d-5c5786620be4/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:14 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f234419a-4ed0-4872-b9fa-83f4b6dded5d + Pragma: + - no-cache + RequestId: + - d4e441ee-f76b-4f9c-89e3-688adc50294e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - f234419a-4ed0-4872-b9fa-83f4b6dded5d + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f234419a-4ed0-4872-b9fa-83f4b6dded5d + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:45:15.0766927", + "lastUpdatedTimeUtc": "2026-09-09T08:45:16.0504996", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:35 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f234419a-4ed0-4872-b9fa-83f4b6dded5d/result + Pragma: + - no-cache + RequestId: + - b66bd30f-6501-45be-bdc3-cd1c823e6b77 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - f234419a-4ed0-4872-b9fa-83f4b6dded5d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f234419a-4ed0-4872-b9fa-83f4b6dded5d/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:45:36 GMT + Pragma: + - no-cache + RequestId: + - 26629ed8-21c9-45d6-8d08-ba21921f8d31 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:36 GMT + Pragma: + - no-cache + RequestId: + - 047481ac-99d4-450e-bfb5-7ab2a8e1a897 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "5c4261e3-f81c-4c8e-af7d-5c5786620be4", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:36 GMT + Pragma: + - no-cache + RequestId: + - 329c9af2-d8c4-4f44-923f-98a50b962b38 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/5c4261e3-f81c-4c8e-af7d-5c5786620be4 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:45:37 GMT + Pragma: + - no-cache + RequestId: + - b4ab6b8f-0822-4fe2-b05d-e830836dadd8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[Ontology-2].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[Ontology-2].yaml new file mode 100644 index 000000000..8da27bbcf --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[Ontology-2].yaml @@ -0,0 +1,830 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:38 GMT + Pragma: + - no-cache + RequestId: + - d20a3df5-94a6-46f7-844c-b416ba5a1672 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:37 GMT + Pragma: + - no-cache + RequestId: + - 194d1742-d0a1-4709-a943-5a3ca9077da2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:38 GMT + Pragma: + - no-cache + RequestId: + - 0a664853-6b76-41c5-ab0b-349d9cca69e3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:45:41 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + Pragma: + - no-cache + RequestId: + - c21eafd3-d845-48f4-bbd7-2df6711343ac + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - b880d178-48b2-434e-8e1e-de2e96510a04 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:45:39.3882629", + "lastUpdatedTimeUtc": "2026-09-09T08:45:39.3882629", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:46:01 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + Pragma: + - no-cache + RequestId: + - 7dcd9223-16c9-4dd0-9628-03df1a250531 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b880d178-48b2-434e-8e1e-de2e96510a04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:45:39.3882629", + "lastUpdatedTimeUtc": "2026-09-09T08:45:39.3882629", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:46:22 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + Pragma: + - no-cache + RequestId: + - 7d25a70b-a693-4a86-961f-2de04b14c93c + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b880d178-48b2-434e-8e1e-de2e96510a04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:45:39.3882629", + "lastUpdatedTimeUtc": "2026-09-09T08:45:39.3882629", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:46:43 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + Pragma: + - no-cache + RequestId: + - e3337966-3ff7-42c5-9759-b846aced934e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b880d178-48b2-434e-8e1e-de2e96510a04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:45:39.3882629", + "lastUpdatedTimeUtc": "2026-09-09T08:46:50.0229633", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04/result + Pragma: + - no-cache + RequestId: + - 873b9b4e-aa93-4a9c-9847-6585e6e3b547 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b880d178-48b2-434e-8e1e-de2e96510a04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b880d178-48b2-434e-8e1e-de2e96510a04/result + response: + body: + string: '{"id": "e732f426-137d-4769-81c8-cb1b1b0c5f98", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:47:04 GMT + Pragma: + - no-cache + RequestId: + - a786d7a4-1b2a-4d71-b9c3-95fcf3b5c0a6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:04 GMT + Pragma: + - no-cache + RequestId: + - c363fa26-2d1b-45b9-a6e1-3749a28c0cad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "28927c89-3410-4109-9fc2-c2c135e4db6d", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_e732f426137d476981c8cb1b1b0c5f98", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "e732f426-137d-4769-81c8-cb1b1b0c5f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "f2a9cdd4-bc2f-42b1-9a27-6ff7001bbfed", + "type": "Lakehouse", "displayName": "fabcli000001_lh_e732f426137d476981c8cb1b1b0c5f98", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "23c8761e-245e-44c4-a351-1d8ec48942b7", "type": "GraphModel", "displayName": + "fabcli000001_graph_e732f426137d476981c8cb1b1b0c5f98", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:05 GMT + Pragma: + - no-cache + RequestId: + - 83f56568-295a-439e-b647-c914763b90a7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/e732f426-137d-4769-81c8-cb1b1b0c5f98 + response: + body: + string: '{"id": "e732f426-137d-4769-81c8-cb1b1b0c5f98", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:05 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - edec8ec2-1c94-4977-bec9-d88afba2c563 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/e732f426-137d-4769-81c8-cb1b1b0c5f98/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '386' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:07 GMT + Pragma: + - no-cache + RequestId: + - af18ff4a-f83b-48d0-aa88-94b00a2f6e32 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:07 GMT + Pragma: + - no-cache + RequestId: + - 19baee21-5cb4-4700-a800-7122eae0f53d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "28927c89-3410-4109-9fc2-c2c135e4db6d", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_e732f426137d476981c8cb1b1b0c5f98", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "e732f426-137d-4769-81c8-cb1b1b0c5f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "f2a9cdd4-bc2f-42b1-9a27-6ff7001bbfed", + "type": "Lakehouse", "displayName": "fabcli000001_lh_e732f426137d476981c8cb1b1b0c5f98", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "23c8761e-245e-44c4-a351-1d8ec48942b7", "type": "GraphModel", "displayName": + "fabcli000001_graph_e732f426137d476981c8cb1b1b0c5f98", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:08 GMT + Pragma: + - no-cache + RequestId: + - 8985d071-b166-4d13-bf45-2319f34dc9e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/e732f426-137d-4769-81c8-cb1b1b0c5f98 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:47:08 GMT + Pragma: + - no-cache + RequestId: + - 24018b1a-a933-4dbf-9cb1-8a7885168fa3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[GraphModel-.json].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[GraphModel-.json].yaml new file mode 100644 index 000000000..239eebcbe --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[GraphModel-.json].yaml @@ -0,0 +1,921 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:09 GMT + Pragma: + - no-cache + RequestId: + - 5170145f-68c6-4e30-969e-8f641afe8486 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:09 GMT + Pragma: + - no-cache + RequestId: + - 1448ef84-6e1e-4cb1-a9f1-30dc0eabd80e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:10 GMT + Pragma: + - no-cache + RequestId: + - c98ac90b-51b9-427d-8169-5c483063c071 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:12 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/01b5ffff-294f-49b7-a416-26b1c8bf6c8a + Pragma: + - no-cache + RequestId: + - 4b001311-bd0c-423a-9736-ae0db5deaec5 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 01b5ffff-294f-49b7-a416-26b1c8bf6c8a + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/01b5ffff-294f-49b7-a416-26b1c8bf6c8a + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:47:11.3134504", + "lastUpdatedTimeUtc": "2026-09-09T08:47:11.3134504", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:32 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/01b5ffff-294f-49b7-a416-26b1c8bf6c8a + Pragma: + - no-cache + RequestId: + - c40c0ed4-e846-43d4-b4dc-9fdc93ef9e1d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 01b5ffff-294f-49b7-a416-26b1c8bf6c8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/01b5ffff-294f-49b7-a416-26b1c8bf6c8a + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:47:11.3134504", + "lastUpdatedTimeUtc": "2026-09-09T08:47:44.7726013", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:52 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/01b5ffff-294f-49b7-a416-26b1c8bf6c8a/result + Pragma: + - no-cache + RequestId: + - f8ca58b8-c28e-4f9e-ad2d-e622682be57f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 01b5ffff-294f-49b7-a416-26b1c8bf6c8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/01b5ffff-294f-49b7-a416-26b1c8bf6c8a/result + response: + body: + string: '{"id": "6f11b2ab-d61e-40ee-9f3e-99c9b746ed29", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:47:53 GMT + Pragma: + - no-cache + RequestId: + - 1c0116ac-ada8-431e-b935-56d84fb93caa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:53 GMT + Pragma: + - no-cache + RequestId: + - c6478eaf-44cf-4939-a9ea-d19e7c06b665 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "6f11b2ab-d61e-40ee-9f3e-99c9b746ed29", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:54 GMT + Pragma: + - no-cache + RequestId: + - 82ef184c-6380-44ce-8f1c-bd9d8cf17aa8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/6f11b2ab-d61e-40ee-9f3e-99c9b746ed29 + response: + body: + string: '{"id": "6f11b2ab-d61e-40ee-9f3e-99c9b746ed29", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:54 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - a0bc0150-2a25-4571-adfd-c7862917d904 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/6f11b2ab-d61e-40ee-9f3e-99c9b746ed29/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:47:55 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dcee3172-eb91-437f-b900-28fd0e9b5f10 + Pragma: + - no-cache + RequestId: + - 61ea4b4d-44ab-42d8-9b6b-d2a8e1236e38 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - dcee3172-eb91-437f-b900-28fd0e9b5f10 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dcee3172-eb91-437f-b900-28fd0e9b5f10 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:47:56.2784451", + "lastUpdatedTimeUtc": "2026-09-09T08:47:57.2666715", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:16 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dcee3172-eb91-437f-b900-28fd0e9b5f10/result + Pragma: + - no-cache + RequestId: + - dea44bd8-a8a6-45d5-9d43-e6a99472d9e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - dcee3172-eb91-437f-b900-28fd0e9b5f10 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dcee3172-eb91-437f-b900-28fd0e9b5f10/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:48:17 GMT + Pragma: + - no-cache + RequestId: + - b1226dd5-b3dc-4e1d-acf2-9b0e9888e82e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:17 GMT + Pragma: + - no-cache + RequestId: + - 15f87812-c900-4873-b765-3a9b0f43ad11 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:18 GMT + Pragma: + - no-cache + RequestId: + - 2f2ac940-c540-44f8-baa3-e3d07513da02 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:18 GMT + Pragma: + - no-cache + RequestId: + - 889f6654-a4d2-4a9d-89bc-28a8a13103e5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "6f11b2ab-d61e-40ee-9f3e-99c9b746ed29", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:18 GMT + Pragma: + - no-cache + RequestId: + - 4128f8bc-1b4b-45d3-af3d-c1cc13c6f471 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/6f11b2ab-d61e-40ee-9f3e-99c9b746ed29 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:48:19 GMT + Pragma: + - no-cache + RequestId: + - 4955eea8-b3ff-4543-bd52-c6db8c610d69 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[Ontology-.json].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[Ontology-.json].yaml new file mode 100644 index 000000000..3f8b405f6 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[Ontology-.json].yaml @@ -0,0 +1,830 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:20 GMT + Pragma: + - no-cache + RequestId: + - 39602e3a-d720-414f-ac6a-08435ddedae2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:20 GMT + Pragma: + - no-cache + RequestId: + - 2221f40e-c654-4376-9393-488e3bce7996 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:20 GMT + Pragma: + - no-cache + RequestId: + - fc07162e-73f2-48b8-9e1c-f923b639f21b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:23 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/31b49af8-ed54-4df5-b1b7-705bfed40a17 + Pragma: + - no-cache + RequestId: + - e2ac8fa5-8236-4d32-bc8c-eb8d90b1d63c + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 31b49af8-ed54-4df5-b1b7-705bfed40a17 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/31b49af8-ed54-4df5-b1b7-705bfed40a17 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:48:22.158651", + "lastUpdatedTimeUtc": "2026-09-09T08:48:22.158651", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:48:44 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/31b49af8-ed54-4df5-b1b7-705bfed40a17 + Pragma: + - no-cache + RequestId: + - 40498476-0018-4e9d-ac21-91545fe191ce + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 31b49af8-ed54-4df5-b1b7-705bfed40a17 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/31b49af8-ed54-4df5-b1b7-705bfed40a17 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:48:22.158651", + "lastUpdatedTimeUtc": "2026-09-09T08:49:02.2055881", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:05 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/31b49af8-ed54-4df5-b1b7-705bfed40a17/result + Pragma: + - no-cache + RequestId: + - be692a29-18bd-49d2-a589-b00c9cede245 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 31b49af8-ed54-4df5-b1b7-705bfed40a17 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/31b49af8-ed54-4df5-b1b7-705bfed40a17/result + response: + body: + string: '{"id": "fbce9845-9233-471e-806d-0a9937ca13c0", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:49:05 GMT + Pragma: + - no-cache + RequestId: + - cf09c615-6d22-47b2-a2f9-00a7aaf1390b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:05 GMT + Pragma: + - no-cache + RequestId: + - 529e40b9-01b4-427f-88c1-f074dcf45c0e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "b3774fce-d98d-4dab-84d6-450afd87ad44", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_fbce98459233471e806d0a9937ca13c0", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "fbce9845-9233-471e-806d-0a9937ca13c0", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "8a15b8ab-ef90-44b2-ac89-aad48fc8f74d", + "type": "Lakehouse", "displayName": "fabcli000001_lh_fbce98459233471e806d0a9937ca13c0", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "0e9aaa05-f510-4d8d-ae90-572903ab3ab7", "type": "GraphModel", "displayName": + "fabcli000001_graph_fbce98459233471e806d0a9937ca13c0", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:06 GMT + Pragma: + - no-cache + RequestId: + - e7ac9018-6931-46df-84e8-14a8bde7377a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/fbce9845-9233-471e-806d-0a9937ca13c0 + response: + body: + string: '{"id": "fbce9845-9233-471e-806d-0a9937ca13c0", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:06 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - a4bd8bbd-5870-41e5-abf7-48bbaf8a6a8b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/fbce9845-9233-471e-806d-0a9937ca13c0/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '386' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:07 GMT + Pragma: + - no-cache + RequestId: + - 415a131c-19f7-465b-9887-bdc168af85be + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:08 GMT + Pragma: + - no-cache + RequestId: + - 8f886a6e-d995-464e-ba52-734b094204da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:09 GMT + Pragma: + - no-cache + RequestId: + - 86498579-c983-4376-9c7c-dac14c266ad9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:09 GMT + Pragma: + - no-cache + RequestId: + - 66ebf07f-5e7e-4288-a416-6771231a4c6e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "b3774fce-d98d-4dab-84d6-450afd87ad44", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_fbce98459233471e806d0a9937ca13c0", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "fbce9845-9233-471e-806d-0a9937ca13c0", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "8a15b8ab-ef90-44b2-ac89-aad48fc8f74d", + "type": "Lakehouse", "displayName": "fabcli000001_lh_fbce98459233471e806d0a9937ca13c0", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "0e9aaa05-f510-4d8d-ae90-572903ab3ab7", "type": "GraphModel", "displayName": + "fabcli000001_graph_fbce98459233471e806d0a9937ca13c0", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:09 GMT + Pragma: + - no-cache + RequestId: + - cd95bc84-8bc9-4b77-9fe3-5568f31acd5f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/fbce9845-9233-471e-806d-0a9937ca13c0 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:49:10 GMT + Pragma: + - no-cache + RequestId: + - 8f70a61a-00d6-40ca-b3d5-630746e92217 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[GraphModel-.txt].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[GraphModel-.txt].yaml new file mode 100644 index 000000000..438bfd2d3 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[GraphModel-.txt].yaml @@ -0,0 +1,607 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:10 GMT + Pragma: + - no-cache + RequestId: + - 109c1319-0228-45d5-ac4d-9db900346a3e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:10 GMT + Pragma: + - no-cache + RequestId: + - 899eb8bf-f9af-4fdd-8aeb-67edb0b9cc9c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:11 GMT + Pragma: + - no-cache + RequestId: + - 5349ea29-4f67-4f8c-aaf2-5af6cfd2d8da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:12 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bea0066e-25a3-465c-8164-e6b86977eace + Pragma: + - no-cache + RequestId: + - bc75ab47-d8f0-4d9e-a4af-8cd60e797be8 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - bea0066e-25a3-465c-8164-e6b86977eace + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bea0066e-25a3-465c-8164-e6b86977eace + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:49:12.5906676", + "lastUpdatedTimeUtc": "2026-09-09T08:49:12.5906676", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:32 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bea0066e-25a3-465c-8164-e6b86977eace + Pragma: + - no-cache + RequestId: + - cde45023-8a29-4348-aacd-177cd3a70adb + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - bea0066e-25a3-465c-8164-e6b86977eace + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bea0066e-25a3-465c-8164-e6b86977eace + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:49:12.5906676", + "lastUpdatedTimeUtc": "2026-09-09T08:49:45.4203832", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:53 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bea0066e-25a3-465c-8164-e6b86977eace/result + Pragma: + - no-cache + RequestId: + - ebc2311a-3979-47af-813d-19b21ea1a7fd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - bea0066e-25a3-465c-8164-e6b86977eace + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bea0066e-25a3-465c-8164-e6b86977eace/result + response: + body: + string: '{"id": "61afdf8c-b1f0-447b-85d5-7a6f4a8df60b", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:49:54 GMT + Pragma: + - no-cache + RequestId: + - c49842dd-b0ed-405e-b59c-c85748b34ac7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:54 GMT + Pragma: + - no-cache + RequestId: + - b0d273a4-8bc7-42c1-a6e6-139ac26934e6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "61afdf8c-b1f0-447b-85d5-7a6f4a8df60b", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:55 GMT + Pragma: + - no-cache + RequestId: + - a1149c52-b0c1-44bf-a6da-3a68f4f66e7c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:55 GMT + Pragma: + - no-cache + RequestId: + - 574c1710-f67f-4eee-a057-90e113fffcab + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "61afdf8c-b1f0-447b-85d5-7a6f4a8df60b", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:56 GMT + Pragma: + - no-cache + RequestId: + - 2a0a16ae-7647-4df9-9a33-be88b0b52375 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/61afdf8c-b1f0-447b-85d5-7a6f4a8df60b + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:49:56 GMT + Pragma: + - no-cache + RequestId: + - e9c81ef5-6d79-4bf4-8055-7c5bff087345 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[Ontology-.txt].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[Ontology-.txt].yaml new file mode 100644 index 000000000..d1e5e5733 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[Ontology-.txt].yaml @@ -0,0 +1,727 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:57 GMT + Pragma: + - no-cache + RequestId: + - 79d580bf-7a59-4214-8b6c-df2a638cf2eb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:57 GMT + Pragma: + - no-cache + RequestId: + - e3debaf8-1675-4d74-b247-a6aa97137411 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:49:58 GMT + Pragma: + - no-cache + RequestId: + - dde8c397-2dd2-4c43-85fc-7630834d6148 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:50:01 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + Pragma: + - no-cache + RequestId: + - e1fb6b38-69eb-4343-83b5-c259913adcb6 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 4ea462c5-4a55-4cc9-a982-b0599dc6da58 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:49:59.5735643", + "lastUpdatedTimeUtc": "2026-09-09T08:49:59.5735643", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:50:21 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + Pragma: + - no-cache + RequestId: + - 8884b0f3-f668-4389-a553-1f1b0f79e8d9 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 4ea462c5-4a55-4cc9-a982-b0599dc6da58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:49:59.5735643", + "lastUpdatedTimeUtc": "2026-09-09T08:49:59.5735643", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:50:42 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + Pragma: + - no-cache + RequestId: + - 154fc577-c597-4a0d-b23a-b0ca311b7975 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 4ea462c5-4a55-4cc9-a982-b0599dc6da58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:49:59.5735643", + "lastUpdatedTimeUtc": "2026-09-09T08:49:59.5735643", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:02 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + Pragma: + - no-cache + RequestId: + - 733280a7-6653-4356-8582-3bb025a336db + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 4ea462c5-4a55-4cc9-a982-b0599dc6da58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:49:59.5735643", + "lastUpdatedTimeUtc": "2026-09-09T08:51:08.5444897", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:22 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58/result + Pragma: + - no-cache + RequestId: + - 726f49da-6eab-4899-a29d-616e363b1d7d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 4ea462c5-4a55-4cc9-a982-b0599dc6da58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ea462c5-4a55-4cc9-a982-b0599dc6da58/result + response: + body: + string: '{"id": "56177df3-83c1-420b-9d30-bea87453f8f8", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:51:24 GMT + Pragma: + - no-cache + RequestId: + - 7895c224-0d2e-44f5-bfce-e4184b384c04 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:24 GMT + Pragma: + - no-cache + RequestId: + - 1f8c0958-33d8-48a8-9465-d1f4570ad45b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "fd31502f-4926-472e-92bf-c620ad867c97", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_56177df383c1420b9d30bea87453f8f8", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "56177df3-83c1-420b-9d30-bea87453f8f8", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "b8f610b7-7275-4ec1-99ea-46d5216ad183", + "type": "Lakehouse", "displayName": "fabcli000001_lh_56177df383c1420b9d30bea87453f8f8", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "c000e117-50ec-4a2f-a933-0c43fcd28899", "type": "GraphModel", "displayName": + "fabcli000001_graph_56177df383c1420b9d30bea87453f8f8", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:25 GMT + Pragma: + - no-cache + RequestId: + - 1212b9bb-a534-42da-84ae-c6bcc5d7d489 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:25 GMT + Pragma: + - no-cache + RequestId: + - 53a27ede-3985-4b7c-88c7-1cb95931fc3e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "fd31502f-4926-472e-92bf-c620ad867c97", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_56177df383c1420b9d30bea87453f8f8", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "56177df3-83c1-420b-9d30-bea87453f8f8", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "b8f610b7-7275-4ec1-99ea-46d5216ad183", + "type": "Lakehouse", "displayName": "fabcli000001_lh_56177df383c1420b9d30bea87453f8f8", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "c000e117-50ec-4a2f-a933-0c43fcd28899", "type": "GraphModel", "displayName": + "fabcli000001_graph_56177df383c1420b9d30bea87453f8f8", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:26 GMT + Pragma: + - no-cache + RequestId: + - b31ab704-b427-4939-b8bd-21b5fa462ed1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/56177df3-83c1-420b-9d30-bea87453f8f8 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:51:26 GMT + Pragma: + - no-cache + RequestId: + - 23702b33-cf82-4b5e-8390-8a177983df86 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[GraphModel].yaml new file mode 100644 index 000000000..1c5052574 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[GraphModel].yaml @@ -0,0 +1,765 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:27 GMT + Pragma: + - no-cache + RequestId: + - 4c444e62-dcb3-4ac9-b09a-1b0d38de92c2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:27 GMT + Pragma: + - no-cache + RequestId: + - 43856402-be0c-48d9-8f3a-0be17ea1cd6b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:28 GMT + Pragma: + - no-cache + RequestId: + - 0e329a59-7b47-4aa1-b9d3-c518912b74e1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:29 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5e0ee925-2b9e-4734-be9b-2141c745ed7f + Pragma: + - no-cache + RequestId: + - 9acf7a6d-d0e4-47e1-b300-a3200fdc7cf1 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 5e0ee925-2b9e-4734-be9b-2141c745ed7f + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5e0ee925-2b9e-4734-be9b-2141c745ed7f + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:51:29.2474963", + "lastUpdatedTimeUtc": "2026-09-09T08:51:42.3366275", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5e0ee925-2b9e-4734-be9b-2141c745ed7f/result + Pragma: + - no-cache + RequestId: + - b28f9e33-94d3-4da8-88ea-3d4814194e14 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 5e0ee925-2b9e-4734-be9b-2141c745ed7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5e0ee925-2b9e-4734-be9b-2141c745ed7f/result + response: + body: + string: '{"id": "13ebd1fc-fdc9-4595-ab86-9c68477dcaa9", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:51:50 GMT + Pragma: + - no-cache + RequestId: + - 3e931343-8550-4045-89ee-1de7c5d4da5f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:50 GMT + Pragma: + - no-cache + RequestId: + - f446b460-7a00-43bd-8b5c-8001e434a910 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "13ebd1fc-fdc9-4595-ab86-9c68477dcaa9", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:52 GMT + Pragma: + - no-cache + RequestId: + - 1ae1e482-9cc4-4dc3-80c7-92b6bef84cad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/13ebd1fc-fdc9-4595-ab86-9c68477dcaa9 + response: + body: + string: '{"id": "13ebd1fc-fdc9-4595-ab86-9c68477dcaa9", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:52 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 9d796a66-46da-4494-a737-650876034522 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/13ebd1fc-fdc9-4595-ab86-9c68477dcaa9/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:51:52 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/888f33ec-6963-4260-8d9d-cf4367a022ff + Pragma: + - no-cache + RequestId: + - 24c444fb-94b2-4e0b-8f00-d4e292647e78 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 888f33ec-6963-4260-8d9d-cf4367a022ff + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/888f33ec-6963-4260-8d9d-cf4367a022ff + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:51:53.3965158", + "lastUpdatedTimeUtc": "2026-09-09T08:51:54.3513899", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:13 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/888f33ec-6963-4260-8d9d-cf4367a022ff/result + Pragma: + - no-cache + RequestId: + - fbaacb36-39f4-4c3c-93ff-2624f2725324 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 888f33ec-6963-4260-8d9d-cf4367a022ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/888f33ec-6963-4260-8d9d-cf4367a022ff/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:52:14 GMT + Pragma: + - no-cache + RequestId: + - 05d8dc4d-ca88-41b8-98ac-1e2bceb3d884 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:14 GMT + Pragma: + - no-cache + RequestId: + - e96d556c-a331-43ae-bdc3-17eaab8362d0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "13ebd1fc-fdc9-4595-ab86-9c68477dcaa9", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:15 GMT + Pragma: + - no-cache + RequestId: + - da3b2cab-dd7d-44e8-a116-3264ae718702 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/13ebd1fc-fdc9-4595-ab86-9c68477dcaa9 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:52:15 GMT + Pragma: + - no-cache + RequestId: + - d4c3d551-3ceb-4e5e-9332-69eb452559a1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[Ontology].yaml new file mode 100644 index 000000000..c736ef8da --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[Ontology].yaml @@ -0,0 +1,830 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:16 GMT + Pragma: + - no-cache + RequestId: + - 0ed52595-8fb2-4aaa-bfc4-25465e279eb7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:16 GMT + Pragma: + - no-cache + RequestId: + - fd939106-2699-41d2-bd4b-7bd2f69409ad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:17 GMT + Pragma: + - no-cache + RequestId: + - 5ec3b201-2ebb-443b-b805-1dc1156f1f8a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:20 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + Pragma: + - no-cache + RequestId: + - bc5a7a87-2f27-4151-8057-50de42a187ce + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:52:18.1722228", + "lastUpdatedTimeUtc": "2026-09-09T08:52:18.1722228", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:52:40 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + Pragma: + - no-cache + RequestId: + - 9aced886-6a0f-4eb0-9e8d-55bc4c40537a + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:52:18.1722228", + "lastUpdatedTimeUtc": "2026-09-09T08:52:18.1722228", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:00 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + Pragma: + - no-cache + RequestId: + - 38e0d534-9bb4-4c67-a531-f3cc441e4ad3 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:52:18.1722228", + "lastUpdatedTimeUtc": "2026-09-09T08:52:18.1722228", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:22 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + Pragma: + - no-cache + RequestId: + - 0a546444-7ba4-42ea-82d5-c69e8a608850 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:52:18.1722228", + "lastUpdatedTimeUtc": "2026-09-09T08:53:28.0276926", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:42 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630/result + Pragma: + - no-cache + RequestId: + - 0db84675-3c66-4d7d-92af-ce921b353c97 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ab2b9aee-b9e0-48b9-b61b-f4ec74764630 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ab2b9aee-b9e0-48b9-b61b-f4ec74764630/result + response: + body: + string: '{"id": "33dae8e6-d9be-4625-ba64-546230a22923", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:53:43 GMT + Pragma: + - no-cache + RequestId: + - 55b515cb-a571-4e2f-b12c-31a73ebbd623 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:43 GMT + Pragma: + - no-cache + RequestId: + - aef23bda-17b1-429d-8d62-1e04a3a5d5e7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "636a9292-19fe-4797-81a2-78e06fc42588", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_33dae8e6d9be4625ba64546230a22923", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "33dae8e6-d9be-4625-ba64-546230a22923", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "d5675588-2eac-41f2-85ed-f4b6692a7c77", + "type": "Lakehouse", "displayName": "fabcli000001_lh_33dae8e6d9be4625ba64546230a22923", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "20464f26-cff9-4f6c-9ec2-1796e386a2c2", "type": "GraphModel", "displayName": + "fabcli000001_graph_33dae8e6d9be4625ba64546230a22923", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '305' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:43 GMT + Pragma: + - no-cache + RequestId: + - d39eeff6-8836-47d7-abca-155ea354cfcf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/33dae8e6-d9be-4625-ba64-546230a22923 + response: + body: + string: '{"id": "33dae8e6-d9be-4625-ba64-546230a22923", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:44 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 20e2eac9-6282-4266-ab0f-d4a84f967837 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/33dae8e6-d9be-4625-ba64-546230a22923/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '385' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:46 GMT + Pragma: + - no-cache + RequestId: + - 10eef054-9c0e-45ec-b880-641871a922fe + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:46 GMT + Pragma: + - no-cache + RequestId: + - 97ece1af-90d5-40b5-bdf7-fca40cbc03c1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "636a9292-19fe-4797-81a2-78e06fc42588", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_33dae8e6d9be4625ba64546230a22923", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "33dae8e6-d9be-4625-ba64-546230a22923", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "d5675588-2eac-41f2-85ed-f4b6692a7c77", + "type": "Lakehouse", "displayName": "fabcli000001_lh_33dae8e6d9be4625ba64546230a22923", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "20464f26-cff9-4f6c-9ec2-1796e386a2c2", "type": "GraphModel", "displayName": + "fabcli000001_graph_33dae8e6d9be4625ba64546230a22923", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '305' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:46 GMT + Pragma: + - no-cache + RequestId: + - a17673c5-cbfc-4eed-99b9-e6bf07177c12 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/33dae8e6-d9be-4625-ba64-546230a22923 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:53:47 GMT + Pragma: + - no-cache + RequestId: + - 12a96d3f-878e-439e-982d-34ae45007681 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[GraphModel-.json].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[GraphModel-.json].yaml new file mode 100644 index 000000000..a6edc3aa1 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[GraphModel-.json].yaml @@ -0,0 +1,817 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:48 GMT + Pragma: + - no-cache + RequestId: + - d6f58937-15c6-4765-85b5-7760d92e2bb4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:48 GMT + Pragma: + - no-cache + RequestId: + - f6ca7a4e-8220-4daf-bf7d-8c8539b25475 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:49 GMT + Pragma: + - no-cache + RequestId: + - ec10eb30-9546-42d6-9bd8-ae2b4e739fea + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:53:50 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbd29f99-4f84-4e62-9742-88f8d84d8b5b + Pragma: + - no-cache + RequestId: + - ea71d1d1-295f-4c49-be40-7f1797bc7199 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - bbd29f99-4f84-4e62-9742-88f8d84d8b5b + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbd29f99-4f84-4e62-9742-88f8d84d8b5b + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:53:50.1156575", + "lastUpdatedTimeUtc": "2026-09-09T08:53:50.1156575", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:10 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbd29f99-4f84-4e62-9742-88f8d84d8b5b + Pragma: + - no-cache + RequestId: + - 399272f5-a25b-4e82-ae0d-b02ede54d420 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - bbd29f99-4f84-4e62-9742-88f8d84d8b5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbd29f99-4f84-4e62-9742-88f8d84d8b5b + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:53:50.1156575", + "lastUpdatedTimeUtc": "2026-09-09T08:54:12.4822573", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:31 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbd29f99-4f84-4e62-9742-88f8d84d8b5b/result + Pragma: + - no-cache + RequestId: + - eb864b9e-06ce-4078-92df-9a649dd1459c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - bbd29f99-4f84-4e62-9742-88f8d84d8b5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbd29f99-4f84-4e62-9742-88f8d84d8b5b/result + response: + body: + string: '{"id": "324a0ca5-59b0-4747-a1b3-e1c579a2c8c3", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:54:32 GMT + Pragma: + - no-cache + RequestId: + - 12a398de-ef46-40ed-a521-67d6eb12bdb8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:32 GMT + Pragma: + - no-cache + RequestId: + - 0b602946-5265-4ffd-97a9-6ce361f714e3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "324a0ca5-59b0-4747-a1b3-e1c579a2c8c3", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:32 GMT + Pragma: + - no-cache + RequestId: + - ac1db060-bdae-408a-aa4c-a3fb126c48bd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/324a0ca5-59b0-4747-a1b3-e1c579a2c8c3 + response: + body: + string: '{"id": "324a0ca5-59b0-4747-a1b3-e1c579a2c8c3", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:33 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 43c097c7-6438-43c2-9447-51377008f1d9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/324a0ca5-59b0-4747-a1b3-e1c579a2c8c3/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:34 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c3a3210-7b3b-4729-8fe2-f93b34250afe + Pragma: + - no-cache + RequestId: + - 9bf5128d-e346-4cd2-8b59-4f521fe929dd + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 4c3a3210-7b3b-4729-8fe2-f93b34250afe + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c3a3210-7b3b-4729-8fe2-f93b34250afe + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:54:34.4594762", + "lastUpdatedTimeUtc": "2026-09-09T08:54:36.9711907", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:54 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c3a3210-7b3b-4729-8fe2-f93b34250afe/result + Pragma: + - no-cache + RequestId: + - aafb6394-4210-4345-8ceb-33c7ebda2de5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 4c3a3210-7b3b-4729-8fe2-f93b34250afe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c3a3210-7b3b-4729-8fe2-f93b34250afe/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:54:54 GMT + Pragma: + - no-cache + RequestId: + - 8884bd8f-363b-4618-a5b9-6fd0f0abbde6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:55 GMT + Pragma: + - no-cache + RequestId: + - 79fb31df-0984-4487-bce3-718162e6c372 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "324a0ca5-59b0-4747-a1b3-e1c579a2c8c3", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:56 GMT + Pragma: + - no-cache + RequestId: + - 49a96be4-1ef9-4761-9afe-f5e5ec98028e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/324a0ca5-59b0-4747-a1b3-e1c579a2c8c3 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:54:56 GMT + Pragma: + - no-cache + RequestId: + - 5e43ebca-7e60-423b-8493-c44d87c45adc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[Ontology-.json].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[Ontology-.json].yaml new file mode 100644 index 000000000..964d56ae7 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[Ontology-.json].yaml @@ -0,0 +1,726 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:56 GMT + Pragma: + - no-cache + RequestId: + - ca65fdc3-0c1b-4aee-bc82-478b11c6e40b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:58 GMT + Pragma: + - no-cache + RequestId: + - 908e23dc-2172-42f6-bc00-33663d8d5d06 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:54:57 GMT + Pragma: + - no-cache + RequestId: + - 612497ab-f941-4850-a577-7734561e2a39 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:03 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ad1526ab-4f22-4861-ae6a-b777273615fd + Pragma: + - no-cache + RequestId: + - f6a71fbf-a3e4-49b6-9aaa-90edf95b514c + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - ad1526ab-4f22-4861-ae6a-b777273615fd + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ad1526ab-4f22-4861-ae6a-b777273615fd + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T08:54:59.2495677", + "lastUpdatedTimeUtc": "2026-09-09T08:54:59.2495677", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:23 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ad1526ab-4f22-4861-ae6a-b777273615fd + Pragma: + - no-cache + RequestId: + - 4b913b8a-5d35-418f-a6f9-f7e947c8a56b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ad1526ab-4f22-4861-ae6a-b777273615fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ad1526ab-4f22-4861-ae6a-b777273615fd + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T08:54:59.2495677", + "lastUpdatedTimeUtc": "2026-09-09T08:55:41.2388601", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:44 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ad1526ab-4f22-4861-ae6a-b777273615fd/result + Pragma: + - no-cache + RequestId: + - d0635624-52d7-4247-a3f0-cfec8208e39b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ad1526ab-4f22-4861-ae6a-b777273615fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ad1526ab-4f22-4861-ae6a-b777273615fd/result + response: + body: + string: '{"id": "9d652b5a-5061-4963-ad9c-5d2128f477d2", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 08:55:44 GMT + Pragma: + - no-cache + RequestId: + - ec6f59be-5e0c-4dff-a179-a107bacccb4d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:45 GMT + Pragma: + - no-cache + RequestId: + - ef987798-0986-4e8a-8b46-78e06283b976 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "30d1d9b3-191b-433d-9aa7-ab7fb693bf3b", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_9d652b5a50614963ad9c5d2128f477d2", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "9d652b5a-5061-4963-ad9c-5d2128f477d2", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "97ebec47-8974-4e0e-a9ea-ba33414df99a", + "type": "Lakehouse", "displayName": "fabcli000001_lh_9d652b5a50614963ad9c5d2128f477d2", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "b85cee78-984f-4939-a6b5-aacf653b71ba", "type": "GraphModel", "displayName": + "fabcli000001_graph_9d652b5a50614963ad9c5d2128f477d2", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:45 GMT + Pragma: + - no-cache + RequestId: + - 5ab151ae-7e21-4215-bab2-43c6e7971a64 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/9d652b5a-5061-4963-ad9c-5d2128f477d2 + response: + body: + string: '{"id": "9d652b5a-5061-4963-ad9c-5d2128f477d2", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:46 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - fe53921f-b5a5-4a78-bd20-f2226e8b1646 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/9d652b5a-5061-4963-ad9c-5d2128f477d2/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:47 GMT + Pragma: + - no-cache + RequestId: + - f66c72f6-b5ed-4e47-92cd-3f682c940948 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "d14374c2-50ff-4f6f-8e42-4b502ea00903", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3457' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:48 GMT + Pragma: + - no-cache + RequestId: + - bb17bc66-4e1e-4273-9745-96466f3efc8d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items + response: + body: + string: '{"value": [{"id": "30d1d9b3-191b-433d-9aa7-ab7fb693bf3b", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_9d652b5a50614963ad9c5d2128f477d2", "description": + "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "9d652b5a-5061-4963-ad9c-5d2128f477d2", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, {"id": "97ebec47-8974-4e0e-a9ea-ba33414df99a", + "type": "Lakehouse", "displayName": "fabcli000001_lh_9d652b5a50614963ad9c5d2128f477d2", + "description": "", "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}, + {"id": "b85cee78-984f-4939-a6b5-aacf653b71ba", "type": "GraphModel", "displayName": + "fabcli000001_graph_9d652b5a50614963ad9c5d2128f477d2", "description": "", + "workspaceId": "d14374c2-50ff-4f6f-8e42-4b502ea00903"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 08:55:49 GMT + Pragma: + - no-cache + RequestId: + - 3d490671-4ebf-4dba-9f84-9159f5407c7d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/d14374c2-50ff-4f6f-8e42-4b502ea00903/items/9d652b5a-5061-4963-ad9c-5d2128f477d2 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 08:55:49 GMT + Pragma: + - no-cache + RequestId: + - 1a21413e-7f04-49fa-87ed-98076fa7cb88 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml index edb2742e1..59e9cb5b5 100644 --- a/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2925' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 07:58:45 GMT + - Thu, 03 Sep 2026 12:55:00 GMT Pragma: - no-cache RequestId: - - e88e384e-0c10-4d63-85bf-dc5aade8ffda + - 664ec29a-56cc-4a4b-976c-49436aa499d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2925' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 07:58:46 GMT + - Thu, 03 Sep 2026 12:55:01 GMT Pragma: - no-cache RequestId: - - d0737ee9-7fa2-4fda-a0d0-b07e1f5fd3f9 + - 41b96413-8015-48b3-8e0a-e415d6a00bae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,21 +119,21 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '462' + - '466' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 07:58:51 GMT + - Thu, 03 Sep 2026 12:55:06 GMT Pragma: - no-cache RequestId: - - 536a3dbf-ff3a-4df8-905f-ee435f34013f + - 58693c11-42c5-4b58-a9ae-ae2831b85cc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "33976cdf-a1f7-4573-b650-5c8e3c685802", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '177' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 07:58:58 GMT + - Thu, 03 Sep 2026 12:55:15 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802 + - https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76 Pragma: - no-cache RequestId: - - 4d0acb65-a4a3-4ae7-ae8a-9ff7676c0dd7 + - c566f450-848e-47c4-ad1d-98b22edf546d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (get; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "33976cdf-a1f7-4573-b650-5c8e3c685802", + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2964' + - '3383' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 07:59:37 GMT + - Thu, 03 Sep 2026 12:56:56 GMT Pragma: - no-cache RequestId: - - 193150e5-e5a0-40e2-8078-03d37cfee89e + - cb63e074-0d7b-42fb-9fe2-9c4fa4db23f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,15 +266,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (get; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items response: body: string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -282,11 +284,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 02 Jun 2026 07:59:39 GMT + - Thu, 03 Sep 2026 12:56:56 GMT Pragma: - no-cache RequestId: - - 0de0f2a9-cd21-4074-bb1c-e73723c895d8 + - 4136cd20-8ae1-4322-b25d-d1f9bbf5c5c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (get; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802 + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -332,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 02 Jun 2026 07:59:39 GMT + - Thu, 03 Sep 2026 12:56:56 GMT Pragma: - no-cache RequestId: - - 689ad220-fd25-4824-8c7d-f211c3f363c8 + - 3ec2e36c-38dc-46e7-82cb-b98e544bfea3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[GraphModel].yaml new file mode 100644 index 000000000..cc92362f5 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[GraphModel].yaml @@ -0,0 +1,861 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:16 GMT + Pragma: + - no-cache + RequestId: + - c015031e-4d98-44eb-9021-9b0e4a8f955e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:16 GMT + Pragma: + - no-cache + RequestId: + - 24b49444-4dc1-4797-ad64-73b4424af074 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:17 GMT + Pragma: + - no-cache + RequestId: + - f17bac55-9b10-492d-880a-3743caf2e7f6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:17 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/da8619cd-ac26-4c8a-92d0-8261953249af + Pragma: + - no-cache + RequestId: + - 2f62bfee-d005-49b8-a2f3-e5913ad9888a + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - da8619cd-ac26-4c8a-92d0-8261953249af + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/da8619cd-ac26-4c8a-92d0-8261953249af + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:55:18.1514537", + "lastUpdatedTimeUtc": "2026-09-03T12:55:30.3155271", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:38 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/da8619cd-ac26-4c8a-92d0-8261953249af/result + Pragma: + - no-cache + RequestId: + - 36887b8e-3453-4c74-afb0-c61320b83d15 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - da8619cd-ac26-4c8a-92d0-8261953249af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/da8619cd-ac26-4c8a-92d0-8261953249af/result + response: + body: + string: '{"id": "2b9a7831-05f5-4c38-9d7a-b53e367b6046", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:55:39 GMT + Pragma: + - no-cache + RequestId: + - 87dc3c1f-473f-48d6-b2cd-927f89cf9f3d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:40 GMT + Pragma: + - no-cache + RequestId: + - 6785823f-263f-413d-a2e2-5453282dd0af + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": [{"id": "2b9a7831-05f5-4c38-9d7a-b53e367b6046", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:40 GMT + Pragma: + - no-cache + RequestId: + - 9c6c2842-95f8-4909-8d4b-6c95011e49ee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/graphModels/2b9a7831-05f5-4c38-9d7a-b53e367b6046 + response: + body: + string: '{"id": "2b9a7831-05f5-4c38-9d7a-b53e367b6046", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:41 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 7d42d463-fbda-4f0d-9bc8-8b88c68b0f77 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/2b9a7831-05f5-4c38-9d7a-b53e367b6046/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:55:41 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaf2e76b-722d-415b-840f-779994fad79b + Pragma: + - no-cache + RequestId: + - ea9845f7-8c36-4922-a565-2e07990d817f + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - eaf2e76b-722d-415b-840f-779994fad79b + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaf2e76b-722d-415b-840f-779994fad79b + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:55:42.140184", + "lastUpdatedTimeUtc": "2026-09-03T12:55:45.4401615", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:02 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaf2e76b-722d-415b-840f-779994fad79b/result + Pragma: + - no-cache + RequestId: + - 13a62b5a-2164-4aa9-afa6-e93cbb011545 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - eaf2e76b-722d-415b-840f-779994fad79b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaf2e76b-722d-415b-840f-779994fad79b/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:56:02 GMT + Pragma: + - no-cache + RequestId: + - 5a00c56f-09e8-4379-9751-910d0d22a2d9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/2b9a7831-05f5-4c38-9d7a-b53e367b6046/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:03 GMT + Pragma: + - no-cache + RequestId: + - 0beabd33-7f7d-4523-ab27-a3253e19a1b5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/2b9a7831-05f5-4c38-9d7a-b53e367b6046/jobs/refreshGraph/schedules + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:03 GMT + Pragma: + - no-cache + RequestId: + - 3fb29b1f-6147-4ea4-a2f5-850341bdf5f1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:04 GMT + Pragma: + - no-cache + RequestId: + - 220c5cf0-950d-4b05-96bd-cf92019f04e7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": [{"id": "2b9a7831-05f5-4c38-9d7a-b53e367b6046", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:05 GMT + Pragma: + - no-cache + RequestId: + - 9b0bff85-6523-4fff-bab5-4b3448b675d1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/2b9a7831-05f5-4c38-9d7a-b53e367b6046 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:56:05 GMT + Pragma: + - no-cache + RequestId: + - 3dfd900d-2379-4ffd-b31d-f72a3dbf85e9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[Ontology].yaml new file mode 100644 index 000000000..af096e028 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[Ontology].yaml @@ -0,0 +1,774 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:06 GMT + Pragma: + - no-cache + RequestId: + - 85ad2c09-f111-420e-a95b-6183a7a39d0f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:06 GMT + Pragma: + - no-cache + RequestId: + - 63639dd2-621c-4b02-9be5-430e15d12ad6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:07 GMT + Pragma: + - no-cache + RequestId: + - 925b8c38-3d9d-49a5-9066-b0e21933a160 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:09 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a706039-6b02-4b7b-9c71-030e6344e1ef + Pragma: + - no-cache + RequestId: + - d30b4f91-639b-482d-8339-5129662ad9b5 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 8a706039-6b02-4b7b-9c71-030e6344e1ef + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a706039-6b02-4b7b-9c71-030e6344e1ef + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:56:07.6846864", + "lastUpdatedTimeUtc": "2026-09-03T12:56:07.6846864", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:30 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a706039-6b02-4b7b-9c71-030e6344e1ef + Pragma: + - no-cache + RequestId: + - 0c99cff0-c75b-4216-9322-a18baec42798 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 8a706039-6b02-4b7b-9c71-030e6344e1ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a706039-6b02-4b7b-9c71-030e6344e1ef + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:56:07.6846864", + "lastUpdatedTimeUtc": "2026-09-03T12:56:33.4642824", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a706039-6b02-4b7b-9c71-030e6344e1ef/result + Pragma: + - no-cache + RequestId: + - 228d8b64-b992-4831-9700-8fb2bd570cd4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 8a706039-6b02-4b7b-9c71-030e6344e1ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a706039-6b02-4b7b-9c71-030e6344e1ef/result + response: + body: + string: '{"id": "bd54f760-325f-41ca-b413-02a43613b1b0", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:56:50 GMT + Pragma: + - no-cache + RequestId: + - 9f7c5a0d-590f-40ae-8464-05bb4885a1eb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:51 GMT + Pragma: + - no-cache + RequestId: + - 9d2011a8-6b63-4deb-8ced-b719da5b7c17 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": [{"id": "d2543f13-d821-4990-a2ef-aa40af5e7674", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_bd54f760325f41cab41302a43613b1b0", "description": + "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}, {"id": "bd54f760-325f-41ca-b413-02a43613b1b0", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5de7f1a9-f85c-450e-9239-1c69317e4b76"}, {"id": "a1f19309-2a97-4f80-8ded-d723f673cdfd", + "type": "Lakehouse", "displayName": "fabcli000001_lh_bd54f760325f41cab41302a43613b1b0", + "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}, + {"id": "bb4419e0-8627-495d-a00a-7539f975094f", "type": "GraphModel", "displayName": + "fabcli000001_graph_bd54f760325f41cab41302a43613b1b0", "description": "", + "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:52 GMT + Pragma: + - no-cache + RequestId: + - dfc6b38c-891d-427b-8f9e-2752470e4a30 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/ontologies/bd54f760-325f-41ca-b413-02a43613b1b0 + response: + body: + string: '{"id": "bd54f760-325f-41ca-b413-02a43613b1b0", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:52 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - f7a0c683-997b-4069-ae8e-4008dd6a19dd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/bd54f760-325f-41ca-b413-02a43613b1b0/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '386' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:53 GMT + Pragma: + - no-cache + RequestId: + - 8adf107f-4037-4405-939b-465743593af6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/bd54f760-325f-41ca-b413-02a43613b1b0/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:54 GMT + Pragma: + - no-cache + RequestId: + - 7a777152-335e-4fdd-9a6b-67684ebfe9db + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5de7f1a9-f85c-450e-9239-1c69317e4b76", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:54 GMT + Pragma: + - no-cache + RequestId: + - b16033db-0b90-49aa-83d2-c2871b2114e9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items + response: + body: + string: '{"value": [{"id": "d2543f13-d821-4990-a2ef-aa40af5e7674", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_bd54f760325f41cab41302a43613b1b0", "description": + "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}, {"id": "bd54f760-325f-41ca-b413-02a43613b1b0", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5de7f1a9-f85c-450e-9239-1c69317e4b76"}, {"id": "a1f19309-2a97-4f80-8ded-d723f673cdfd", + "type": "Lakehouse", "displayName": "fabcli000001_lh_bd54f760325f41cab41302a43613b1b0", + "description": "", "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}, + {"id": "bb4419e0-8627-495d-a00a-7539f975094f", "type": "GraphModel", "displayName": + "fabcli000001_graph_bd54f760325f41cab41302a43613b1b0", "description": "", + "workspaceId": "5de7f1a9-f85c-450e-9239-1c69317e4b76"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:56:55 GMT + Pragma: + - no-cache + RequestId: + - 171af731-c0c4-4827-aa07-6858ede8dec0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5de7f1a9-f85c-450e-9239-1c69317e4b76/items/bd54f760-325f-41ca-b413-02a43613b1b0 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:56:55 GMT + Pragma: + - no-cache + RequestId: + - 5e76da4c-44e0-4d78-8f8a-cbe366887c78 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml index 788736344..e4886c07e 100644 --- a/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3179' + - '3449' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 12:16:53 GMT + - Wed, 09 Sep 2026 12:42:42 GMT Pragma: - no-cache RequestId: - - b2453c36-5697-4a6a-a1a7-cc6949da8841 + - 8cc592b4-b0b8-4914-9fa2-01db7337fc2c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3179' + - '3449' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 12:16:54 GMT + - Wed, 09 Sep 2026 12:42:43 GMT Pragma: - no-cache RequestId: - - 4c2b69c0-1560-4621-a5ad-e784c3385ae4 + - 26ed2edf-449f-4ee2-bc48-1bd231083acf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,7 +119,7 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 12:16:58 GMT + - Wed, 09 Sep 2026 12:42:46 GMT Pragma: - no-cache RequestId: - - 7f7b4306-fd82-4614-aedc-dce795279555 + - a708d5be-455f-4a97-823a-0748c6ba0881 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "1e5de308-4b41-48bb-b177-ff527c5bd22e", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '176' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 12:17:06 GMT + - Wed, 09 Sep 2026 12:42:52 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/1e5de308-4b41-48bb-b177-ff527c5bd22e + - https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc Pragma: - no-cache RequestId: - - ab60d34b-13eb-49d2-bfad-93328fdce901 + - 8a2febf6-bc6a-415a-8274-4a813fe490cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (import; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (import; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "1e5de308-4b41-48bb-b177-ff527c5bd22e", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3214' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 12:18:28 GMT + - Wed, 09 Sep 2026 13:06:52 GMT Pragma: - no-cache RequestId: - - d3deb28f-9d27-49ed-93af-346c70dc0e47 + - 7ae66eb9-69ec-49f8-8de4-f062584a54a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,29 +266,104 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (import; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (import; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/1e5de308-4b41-48bb-b177-ff527c5bd22e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '32' + - '1616' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 12:18:29 GMT + - Wed, 09 Sep 2026 13:06:53 GMT Pragma: - no-cache RequestId: - - 14258265-fd0c-4e28-93ff-2e1cf945ab44 + - f1d17915-beda-47f1-a49b-36149d868af0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,15 +391,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (import; Linux/6.12.76-linuxkit; Python/3.12.11) + - ms-fabric-cli/1.7.0 (import; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/1e5de308-4b41-48bb-b177-ff527c5bd22e + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -332,11 +409,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 12:18:30 GMT + - Wed, 09 Sep 2026 13:06:53 GMT Pragma: - no-cache RequestId: - - 65cfc71c-a6bf-4f58-98a3-b80d795fd19d + - f28f44a3-98af-45f1-9f21-638af574fa72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml index bdfcd78a7..42f6f98c6 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:56 GMT + - Wed, 09 Sep 2026 12:53:38 GMT Pragma: - no-cache RequestId: - - 515028b4-2a1f-45df-9d76-eebb6358ab48 + - 202adcdc-3b91-4447-9f68-88192da8545a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,75 +63,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1065' + - '841' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:56 GMT + - Wed, 09 Sep 2026 12:53:38 GMT Pragma: - no-cache RequestId: - - 0597c149-be58-45e3-b4bd-dce0c3190df2 + - e8db37c0-8c1c-48dc-b949-66d09c65920f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,75 +144,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1065' + - '841' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:57 GMT + - Wed, 09 Sep 2026 12:53:39 GMT Pragma: - no-cache RequestId: - - d40d473a-f75f-4ea7-9d4d-99c36be3aa2a + - 0cf6a71b-b6f5-4131-a527-04564202ae15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,15 +228,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/cosmosDbDatabases response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -271,15 +246,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:59 GMT + - Wed, 09 Sep 2026 12:53:40 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/775aa062-a50b-4bfc-b5d6-65d3824e0a5d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/98badfb6-ebf1-4cc2-9b33-f3869818ada3 Pragma: - no-cache RequestId: - - 4acb00f4-d153-4480-a204-344bf984f8f2 + - c8b5d323-1609-425f-a982-538e082b92fa Retry-After: - '20' Strict-Transport-Security: @@ -293,7 +268,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 775aa062-a50b-4bfc-b5d6-65d3824e0a5d + - 98badfb6-ebf1-4cc2-9b33-f3869818ada3 status: code: 202 message: Accepted @@ -309,33 +284,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/775aa062-a50b-4bfc-b5d6-65d3824e0a5d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/98badfb6-ebf1-4cc2-9b33-f3869818ada3 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:57:59.2502918", - "lastUpdatedTimeUtc": "2026-06-15T10:58:05.749694", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:53:40.6614539", + "lastUpdatedTimeUtc": "2026-09-09T12:53:48.1583696", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:20 GMT + - Wed, 09 Sep 2026 12:54:00 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/775aa062-a50b-4bfc-b5d6-65d3824e0a5d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/98badfb6-ebf1-4cc2-9b33-f3869818ada3/result Pragma: - no-cache RequestId: - - 46263ea0-c816-4c09-aa42-057731701f9b + - 2c6bc563-7e65-45de-bc18-5e7d5756f30d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -343,7 +318,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 775aa062-a50b-4bfc-b5d6-65d3824e0a5d + - 98badfb6-ebf1-4cc2-9b33-f3869818ada3 status: code: 200 message: OK @@ -359,16 +334,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/775aa062-a50b-4bfc-b5d6-65d3824e0a5d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/98badfb6-ebf1-4cc2-9b33-f3869818ada3/result response: body: - string: '{"id": "07708505-3465-488e-aac3-58023af4f175", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "03205303-1bfb-4caa-a1ef-e7f1e81fc5db", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -376,11 +351,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:58:21 GMT + - Wed, 09 Sep 2026 12:54:01 GMT Pragma: - no-cache RequestId: - - 8e730214-8acb-4444-bc2b-b89afe3fc94b + - ea6d1fad-7cde-4c81-8be8-2490f446c91d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -404,32 +379,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:22 GMT + - Wed, 09 Sep 2026 12:54:01 GMT Pragma: - no-cache RequestId: - - 416d35d6-256d-462e-a224-6f27c9f6e71a + - 67deeb0a-3d3a-4f98-b862-7dd51f720d66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -455,79 +431,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eefa5f37-8423-4569-b2ed-9fc29fe2f990", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "07708505-3465-488e-aac3-58023af4f175", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "cea230df-9242-4fce-ae0c-db002a6436c4", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "03205303-1bfb-4caa-a1ef-e7f1e81fc5db", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1138' + - '916' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:23 GMT + - Wed, 09 Sep 2026 12:54:01 GMT Pragma: - no-cache RequestId: - - e9c8c9b6-6153-46a2-83e7-a405b0729489 + - 6cfb5ee5-aa61-4355-bed9-8995318b7c93 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -553,16 +516,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/07708505-3465-488e-aac3-58023af4f175 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/03205303-1bfb-4caa-a1ef-e7f1e81fc5db response: body: - string: '{"id": "07708505-3465-488e-aac3-58023af4f175", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "03205303-1bfb-4caa-a1ef-e7f1e81fc5db", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -572,13 +535,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:24 GMT + - Wed, 09 Sep 2026 12:54:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 35b13071-fcbc-4ffe-ac46-52a71889222d + - d73e11a7-7a41-4511-93e8-84c8958b1dd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -606,15 +569,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/07708505-3465-488e-aac3-58023af4f175/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/03205303-1bfb-4caa-a1ef-e7f1e81fc5db/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -624,13 +587,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:25 GMT + - Wed, 09 Sep 2026 12:54:03 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a3df976b-e5d7-4de6-afde-5abf7982e00e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48d99090-7d45-4172-84b2-dce54c67dc74 Pragma: - no-cache RequestId: - - a0efde65-f5ba-49eb-975c-eb8b3ea0b24e + - e324e7ec-0c06-4563-9617-71eb108531aa Retry-After: - '20' Strict-Transport-Security: @@ -644,7 +607,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - a3df976b-e5d7-4de6-afde-5abf7982e00e + - 48d99090-7d45-4172-84b2-dce54c67dc74 status: code: 202 message: Accepted @@ -660,33 +623,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a3df976b-e5d7-4de6-afde-5abf7982e00e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48d99090-7d45-4172-84b2-dce54c67dc74 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:58:25.9404284", - "lastUpdatedTimeUtc": "2026-06-15T10:58:26.926409", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:54:03.8899964", + "lastUpdatedTimeUtc": "2026-09-09T12:54:04.6835455", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:46 GMT + - Wed, 09 Sep 2026 12:54:23 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a3df976b-e5d7-4de6-afde-5abf7982e00e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48d99090-7d45-4172-84b2-dce54c67dc74/result Pragma: - no-cache RequestId: - - 4c8f8431-c8f3-417e-bbaf-c74440657175 + - 3308f6da-7d95-407d-a7f9-f675634695db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -694,7 +657,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - a3df976b-e5d7-4de6-afde-5abf7982e00e + - 48d99090-7d45-4172-84b2-dce54c67dc74 status: code: 200 message: OK @@ -710,9 +673,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a3df976b-e5d7-4de6-afde-5abf7982e00e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48d99090-7d45-4172-84b2-dce54c67dc74/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", @@ -720,7 +683,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -728,11 +691,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:58:46 GMT + - Wed, 09 Sep 2026 12:54:24 GMT Pragma: - no-cache RequestId: - - b38f9f8b-45d6-44d5-a714-2fc318b25e85 + - 2d09e071-53ff-41bd-929e-627cd1c285f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -756,32 +719,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:48 GMT + - Wed, 09 Sep 2026 12:54:25 GMT Pragma: - no-cache RequestId: - - f4a3bf80-fbcc-4906-945b-d177f32b900b + - 3024af8b-981a-4151-8a84-ea7b20e595e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -807,79 +771,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eefa5f37-8423-4569-b2ed-9fc29fe2f990", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "07708505-3465-488e-aac3-58023af4f175", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "cea230df-9242-4fce-ae0c-db002a6436c4", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "03205303-1bfb-4caa-a1ef-e7f1e81fc5db", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1138' + - '916' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:49 GMT + - Wed, 09 Sep 2026 12:54:26 GMT Pragma: - no-cache RequestId: - - 209ea6d2-71c6-4528-a12a-b159cd92551a + - b3708cdf-2aff-414f-ba9d-30646cd8dee7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -905,79 +856,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eefa5f37-8423-4569-b2ed-9fc29fe2f990", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "07708505-3465-488e-aac3-58023af4f175", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "cea230df-9242-4fce-ae0c-db002a6436c4", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "03205303-1bfb-4caa-a1ef-e7f1e81fc5db", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1138' + - '916' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:49 GMT + - Wed, 09 Sep 2026 12:54:26 GMT Pragma: - no-cache RequestId: - - 6454b858-04c0-410a-844e-90cbf3d64648 + - 2b392a80-05f3-422c-9988-404a7a4b19e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1008,15 +946,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1026,15 +964,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:58:52 GMT + - Wed, 09 Sep 2026 12:54:27 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3038dabc-6260-4bb0-8433-7f5b2dc32343 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/701ed4d7-0d2e-4ee5-ae43-f23d7b93e29e Pragma: - no-cache RequestId: - - 02198db2-a81f-418f-be1e-986be98f657e + - d96093b7-f370-44b2-8b1c-b5cc9497de10 Retry-After: - '20' Strict-Transport-Security: @@ -1048,7 +986,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3038dabc-6260-4bb0-8433-7f5b2dc32343 + - 701ed4d7-0d2e-4ee5-ae43-f23d7b93e29e status: code: 202 message: Accepted @@ -1064,33 +1002,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3038dabc-6260-4bb0-8433-7f5b2dc32343 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/701ed4d7-0d2e-4ee5-ae43-f23d7b93e29e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:58:51.6644138", - "lastUpdatedTimeUtc": "2026-06-15T10:59:02.1470207", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:54:27.5301129", + "lastUpdatedTimeUtc": "2026-09-09T12:54:37.4953205", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '133' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:13 GMT + - Wed, 09 Sep 2026 12:54:48 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3038dabc-6260-4bb0-8433-7f5b2dc32343/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/701ed4d7-0d2e-4ee5-ae43-f23d7b93e29e/result Pragma: - no-cache RequestId: - - bc057bef-7a4b-44c2-86b6-ef3794d61868 + - d0296d28-ac8b-4beb-a53c-257db827147a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1098,7 +1036,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3038dabc-6260-4bb0-8433-7f5b2dc32343 + - 701ed4d7-0d2e-4ee5-ae43-f23d7b93e29e status: code: 200 message: OK @@ -1114,16 +1052,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3038dabc-6260-4bb0-8433-7f5b2dc32343/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/701ed4d7-0d2e-4ee5-ae43-f23d7b93e29e/result response: body: - string: '{"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1131,11 +1069,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:59:13 GMT + - Wed, 09 Sep 2026 12:54:49 GMT Pragma: - no-cache RequestId: - - fad4dab7-c262-4f4c-bae1-a176eac51e77 + - 603cb89e-d118-410d-8b46-53d38ea4341f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1159,32 +1097,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:15 GMT + - Wed, 09 Sep 2026 12:54:49 GMT Pragma: - no-cache RequestId: - - 506c3019-2d46-4931-812f-565779b26139 + - 9045bdf7-deef-44bf-918c-e26e98eeb138 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1210,83 +1149,70 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eefa5f37-8423-4569-b2ed-9fc29fe2f990", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "07708505-3465-488e-aac3-58023af4f175", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "cea230df-9242-4fce-ae0c-db002a6436c4", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "03205303-1bfb-4caa-a1ef-e7f1e81fc5db", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1197' + - '974' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:16 GMT + - Wed, 09 Sep 2026 12:54:49 GMT Pragma: - no-cache RequestId: - - b85ad26a-72ad-4313-83c1-d71e2fa1f819 + - fa53db16-00cd-45a0-aff6-3c4b35db37b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1314,15 +1240,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/07708505-3465-488e-aac3-58023af4f175 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/03205303-1bfb-4caa-a1ef-e7f1e81fc5db response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1332,11 +1258,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:59:16 GMT + - Wed, 09 Sep 2026 12:54:50 GMT Pragma: - no-cache RequestId: - - ed66efba-6580-45af-86c1-879679931826 + - b2c9e411-9b26-4303-9bfc-f3a9be6dab3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml index e82a26c6e..a04b6ec35 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:18 GMT + - Wed, 09 Sep 2026 12:44:16 GMT Pragma: - no-cache RequestId: - - f87af261-7e37-42b9-8d26-25111d4a4ed0 + - b582ede2-0bcf-40f2-a1ba-62b130e43b0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,45 +63,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '474' + - '232' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:19 GMT + - Wed, 09 Sep 2026 12:44:16 GMT Pragma: - no-cache RequestId: - - d2f16c54-5080-4c77-aebd-51495fa258ca + - 43d13cfe-da57-457a-8a8f-2360257c7580 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -126,45 +114,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '474' + - '232' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:20 GMT + - Wed, 09 Sep 2026 12:44:17 GMT Pragma: - no-cache RequestId: - - 7876a283-ca10-4218-92c5-258571593711 + - 3aa384b6-77d2-45a4-86fd-4944f90e69c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,32 +167,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/dataPipelines response: body: - string: '{"id": "996ed852-3d56-4f6c-a703-faa4d7d60693", "type": "DataPipeline", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "4f516a75-a29d-43eb-b92c-921667dc96bc", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '159' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:24 GMT + - Wed, 09 Sep 2026 12:44:21 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 25695ba9-1e82-4598-870d-8af089f622ea + - af0107f6-bea0-469e-9feb-e9fab6d4e85d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -243,32 +218,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:26 GMT + - Wed, 09 Sep 2026 12:44:22 GMT Pragma: - no-cache RequestId: - - 13477cd0-da10-4e9e-8c96-0d346b07802a + - e4864541-b224-4afc-9e90-f21c03431ad8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -294,47 +270,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "996ed852-3d56-4f6c-a703-faa4d7d60693", - "type": "DataPipeline", "displayName": "fabcli000001", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4f516a75-a29d-43eb-b92c-921667dc96bc", "type": "DataPipeline", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '516' + - '276' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:26 GMT + - Wed, 09 Sep 2026 12:44:22 GMT Pragma: - no-cache RequestId: - - ed4e571e-52cf-4713-9223-fd98f4b4020d + - b572f685-9369-4c11-b26c-6f291193f01d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -360,32 +323,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/996ed852-3d56-4f6c-a703-faa4d7d60693 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/4f516a75-a29d-43eb-b92c-921667dc96bc response: body: - string: '{"id": "996ed852-3d56-4f6c-a703-faa4d7d60693", "type": "DataPipeline", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "4f516a75-a29d-43eb-b92c-921667dc96bc", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '159' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:27 GMT + - Wed, 09 Sep 2026 12:44:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1c1a28f0-6f71-45ec-9652-0499a45f05a5 + - 1bae1729-1705-4239-93ae-19dd0f115a1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -413,9 +376,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/996ed852-3d56-4f6c-a703-faa4d7d60693/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/4f516a75-a29d-43eb-b92c-921667dc96bc/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": @@ -424,21 +387,21 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '440' + - '441' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:28 GMT + - Wed, 09 Sep 2026 12:44:23 GMT Pragma: - no-cache RequestId: - - 395358b1-5735-4be1-8dbe-4c585e75bb03 + - 3785e908-f796-4290-95fd-276ccd5f2290 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -464,32 +427,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:29 GMT + - Wed, 09 Sep 2026 12:44:24 GMT Pragma: - no-cache RequestId: - - f872cef8-635e-45c1-96e6-05b0ab063f85 + - feb713f3-492f-44d2-9cdb-1acbc066192e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,47 +479,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "996ed852-3d56-4f6c-a703-faa4d7d60693", - "type": "DataPipeline", "displayName": "fabcli000001", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4f516a75-a29d-43eb-b92c-921667dc96bc", "type": "DataPipeline", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '516' + - '276' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:30 GMT + - Wed, 09 Sep 2026 12:44:25 GMT Pragma: - no-cache RequestId: - - 4bfe3bab-d028-47c0-8b6b-e52cb48a275c + - 81713b70-52e4-48d1-ba4b-4404c89d655c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -581,47 +532,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "996ed852-3d56-4f6c-a703-faa4d7d60693", - "type": "DataPipeline", "displayName": "fabcli000001", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4f516a75-a29d-43eb-b92c-921667dc96bc", "type": "DataPipeline", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '516' + - '276' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:31 GMT + - Wed, 09 Sep 2026 12:44:25 GMT Pragma: - no-cache RequestId: - - 41862b63-5a8e-481d-9e7f-f55355517c83 + - 50dc6a51-c3cc-45dd-9bf1-b6d7f58f4900 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -653,32 +591,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", "type": "DataPipeline", - "displayName": "fabcli000001_new_4", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", + "displayName": "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '162' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:38 GMT + - Wed, 09 Sep 2026 12:44:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3db48a24-ec2b-4d76-8fe6-04fe575d371f + - fb408ffd-1abb-44f7-bc40-9c4acc91591d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -704,32 +642,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:38 GMT + - Wed, 09 Sep 2026 12:44:29 GMT Pragma: - no-cache RequestId: - - 3f9c5479-300d-4219-b491-5717b9286634 + - a73c7105-8a68-431d-998f-b86c533c6154 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -755,49 +694,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "996ed852-3d56-4f6c-a703-faa4d7d60693", - "type": "DataPipeline", "displayName": "fabcli000001", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4f516a75-a29d-43eb-b92c-921667dc96bc", "type": "DataPipeline", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '544' + - '310' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:39 GMT + - Wed, 09 Sep 2026 12:44:29 GMT Pragma: - no-cache RequestId: - - 8f00ba63-5e7d-4cf6-8cf5-74715fb650f4 + - 05d54525-9566-4491-ac0d-13adb94df573 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -825,15 +751,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/996ed852-3d56-4f6c-a703-faa4d7d60693 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/4f516a75-a29d-43eb-b92c-921667dc96bc response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -843,11 +769,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:47:40 GMT + - Wed, 09 Sep 2026 12:44:30 GMT Pragma: - no-cache RequestId: - - ec9d3e21-29f1-4e39-8592-3790a75b496d + - 8247d869-0274-4ff2-8fda-76380ead9e1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml index 0074d9b6d..a913551a3 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:02 GMT + - Wed, 09 Sep 2026 12:57:17 GMT Pragma: - no-cache RequestId: - - fef68603-40f5-4edf-a720-8c966a6beb1e + - 3f1ca4ad-630c-4593-91df-76894a5186d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,87 +63,74 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1292' + - '1086' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:03 GMT + - Wed, 09 Sep 2026 12:57:18 GMT Pragma: - no-cache RequestId: - - 79528d02-5bb5-438e-8e8e-4dea95f17c5b + - 3d7af7e7-2acd-4480-ba8f-1497b5953039 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -168,87 +156,74 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1292' + - '1086' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:03 GMT + - Wed, 09 Sep 2026 12:57:19 GMT Pragma: - no-cache RequestId: - - f90b7516-c0da-421f-ba4e-76db39dc9fd1 + - 9fdd11d8-111e-4d85-9bee-518fcd4ad556 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -277,15 +252,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/digitalTwinBuilders response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -295,15 +270,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:08 GMT + - Wed, 09 Sep 2026 12:57:21 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/00f43cc1-11d8-446d-80b1-8ee8f9561403 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c87144c0-e551-4e4b-b625-ab24a738029d Pragma: - no-cache RequestId: - - d44e880c-5c71-4fb4-94b6-2dc40c2fbc18 + - c599bedd-5a54-4d18-8f16-4e398911a88b Retry-After: - '20' Strict-Transport-Security: @@ -317,7 +292,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 00f43cc1-11d8-446d-80b1-8ee8f9561403 + - c87144c0-e551-4e4b-b625-ab24a738029d status: code: 202 message: Accepted @@ -333,33 +308,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/00f43cc1-11d8-446d-80b1-8ee8f9561403 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c87144c0-e551-4e4b-b625-ab24a738029d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:02:05.4109202", - "lastUpdatedTimeUtc": "2026-06-15T11:02:14.9835208", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:57:20.387602", + "lastUpdatedTimeUtc": "2026-09-09T12:57:28.3908796", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:28 GMT + - Wed, 09 Sep 2026 12:57:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/00f43cc1-11d8-446d-80b1-8ee8f9561403/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c87144c0-e551-4e4b-b625-ab24a738029d/result Pragma: - no-cache RequestId: - - 485e62d5-c1c6-4f8d-b26e-0a87187a8d86 + - 65c0f32a-ce6b-48db-9e2b-ddeb3a7d0669 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -367,7 +342,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 00f43cc1-11d8-446d-80b1-8ee8f9561403 + - c87144c0-e551-4e4b-b625-ab24a738029d status: code: 200 message: OK @@ -383,16 +358,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/00f43cc1-11d8-446d-80b1-8ee8f9561403/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c87144c0-e551-4e4b-b625-ab24a738029d/result response: body: - string: '{"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -400,11 +375,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:02:29 GMT + - Wed, 09 Sep 2026 12:57:42 GMT Pragma: - no-cache RequestId: - - 323930af-19e2-439f-b8a2-c93ebf12d3b9 + - 54989c06-ff8c-4f66-b815-02975957bc76 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -419,7 +394,7 @@ interactions: - request: body: '{"displayName": "fabcli000001", "type": "DigitalTwinBuilderFlow", "folderId": null, "creationPayload": {"digitalTwinBuilderItemReference": {"referenceType": - "ById", "itemId": "8e65abdc-476c-4d56-9594-d2775b579945", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}}}' + "ById", "itemId": "2ac9b642-a539-4c88-812e-a87858d79103", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}}}' headers: Accept: - '*/*' @@ -432,32 +407,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/digitalTwinBuilderFlows + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/digitalTwinBuilderFlows response: body: - string: '{"id": "fb551160-967d-4134-8af7-2a9cde8af0ce", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "f285db49-0e67-4f66-909e-8e56a57cff36", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '171' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:32 GMT + - Wed, 09 Sep 2026 12:57:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 063528fe-6b6f-4bbe-8c93-7d6aa5583a52 + - 976cff58-9998-411e-a768-378a67030b0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -483,32 +458,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:33 GMT + - Wed, 09 Sep 2026 12:57:44 GMT Pragma: - no-cache RequestId: - - 76ad04cb-b03c-4935-b5b9-60d7f4faea7a + - 7db271ac-2b7f-425e-b160-02edc0cc3c8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -534,98 +510,85 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "fb551160-967d-4134-8af7-2a9cde8af0ce", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "f285db49-0e67-4f66-909e-8e56a57cff36", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1448' + - '1252' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:34 GMT + - Wed, 09 Sep 2026 12:57:44 GMT Pragma: - no-cache RequestId: - - 08e86a0d-1699-4990-93ea-59c6604118b1 + - e5fa80c8-c360-4659-b937-27a27b117478 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -651,32 +614,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/fb551160-967d-4134-8af7-2a9cde8af0ce + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/f285db49-0e67-4f66-909e-8e56a57cff36 response: body: - string: '{"id": "fb551160-967d-4134-8af7-2a9cde8af0ce", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "f285db49-0e67-4f66-909e-8e56a57cff36", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '171' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:35 GMT + - Wed, 09 Sep 2026 12:57:45 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0befdee4-37c3-475e-b462-9d90d3e73a26 + - 1bf923c8-1c38-428c-89e8-e4fbde87fe55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -704,15 +667,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/fb551160-967d-4134-8af7-2a9cde8af0ce/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/f285db49-0e67-4f66-909e-8e56a57cff36/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -722,13 +685,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:36 GMT + - Wed, 09 Sep 2026 12:57:46 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/207e083f-dd06-42be-b9c7-86202570e187 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f90f64a5-70eb-48e0-80d4-82e61576fe15 Pragma: - no-cache RequestId: - - d390bc96-d324-48be-abd0-21be293f1363 + - bd7cd76f-bde4-4d57-94c4-886f98cabc45 Retry-After: - '20' Strict-Transport-Security: @@ -742,7 +705,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 207e083f-dd06-42be-b9c7-86202570e187 + - f90f64a5-70eb-48e0-80d4-82e61576fe15 status: code: 202 message: Accepted @@ -758,33 +721,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/207e083f-dd06-42be-b9c7-86202570e187 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f90f64a5-70eb-48e0-80d4-82e61576fe15 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:02:37.2032415", - "lastUpdatedTimeUtc": "2026-06-15T11:02:37.6359925", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:57:46.6159729", + "lastUpdatedTimeUtc": "2026-09-09T12:57:46.8963009", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:57 GMT + - Wed, 09 Sep 2026 12:58:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/207e083f-dd06-42be-b9c7-86202570e187/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f90f64a5-70eb-48e0-80d4-82e61576fe15/result Pragma: - no-cache RequestId: - - 56924cb9-faab-4b5c-82ce-b8d2e57ee7cb + - 5852bc04-0064-4398-b204-267fc0a22e66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -792,7 +755,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 207e083f-dd06-42be-b9c7-86202570e187 + - f90f64a5-70eb-48e0-80d4-82e61576fe15 status: code: 200 message: OK @@ -808,17 +771,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/207e083f-dd06-42be-b9c7-86202570e187/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f90f64a5-70eb-48e0-80d4-82e61576fe15/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiRGlnaXRhbFR3aW5CdWlsZGVySWQiOiAiOGU2NWFiZGMtNDc2Yy00ZDU2LTk1OTQtZDI3NzViNTc5OTQ1IiwNCiAgIk9wZXJhdGlvbklkcyI6IFtdLA0KICAiSXNPbkRlbWFuZCI6IGZhbHNlDQp9", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiRGlnaXRhbFR3aW5CdWlsZGVySWQiOiAiMmFjOWI2NDItYTUzOS00Yzg4LTgxMmUtYTg3ODU4ZDc5MTAzIiwNCiAgIk9wZXJhdGlvbklkcyI6IFtdLA0KICAiSXNPbkRlbWFuZCI6IGZhbHNlDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlckZsb3ciLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -826,11 +789,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:02:58 GMT + - Wed, 09 Sep 2026 12:58:07 GMT Pragma: - no-cache RequestId: - - de2b9bd1-981a-490b-afec-a5a54ccaf962 + - 4de2169f-0526-43e5-ad42-1be7eee978d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -854,32 +817,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:58 GMT + - Wed, 09 Sep 2026 12:58:08 GMT Pragma: - no-cache RequestId: - - 23acd60c-fd38-4d99-85ce-27da575a1734 + - 54aab972-e00e-4bdd-bc05-7e6fffa10a94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -905,98 +869,85 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "fb551160-967d-4134-8af7-2a9cde8af0ce", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "f285db49-0e67-4f66-909e-8e56a57cff36", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1448' + - '1252' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:59 GMT + - Wed, 09 Sep 2026 12:58:07 GMT Pragma: - no-cache RequestId: - - d1a9f337-6e8c-4869-ab65-2b17d9a80d9c + - 4f11bba2-e7e9-426f-8ba6-0be5b4c8d8c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1022,98 +973,85 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "fb551160-967d-4134-8af7-2a9cde8af0ce", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "f285db49-0e67-4f66-909e-8e56a57cff36", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1448' + - '1252' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:00 GMT + - Wed, 09 Sep 2026 12:58:08 GMT Pragma: - no-cache RequestId: - - f02ce405-bc77-4733-baf8-949bf84a20cc + - 88f15511-f0a8-491e-99f9-8cef8f3c9e10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1130,7 +1068,7 @@ interactions: - request: body: '{"type": "DigitalTwinBuilderFlow", "folderId": null, "displayName": "fabcli000001_new_17", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGlnaXRhbFR3aW5CdWlsZGVyRmxvdyIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", - "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIkRpZ2l0YWxUd2luQnVpbGRlcklkIjogIjhlNjVhYmRjLTQ3NmMtNGQ1Ni05NTk0LWQyNzc1YjU3OTk0NSIsCiAgICAiT3BlcmF0aW9uSWRzIjogW10sCiAgICAiSXNPbkRlbWFuZCI6IGZhbHNlCn0=", + "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIkRpZ2l0YWxUd2luQnVpbGRlcklkIjogIjJhYzliNjQyLWE1MzktNGM4OC04MTJlLWE4Nzg1OGQ3OTEwMyIsCiAgICAiT3BlcmF0aW9uSWRzIjogW10sCiAgICAiSXNPbkRlbWFuZCI6IGZhbHNlCn0=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1144,15 +1082,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1162,15 +1100,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:02 GMT + - Wed, 09 Sep 2026 12:58:10 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b19a3acc-f12e-40e0-98d5-cc4ee8e167bf + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae9ac63-98d0-4382-886d-6096a9120507 Pragma: - no-cache RequestId: - - 6a31a34e-8099-49e6-81a0-184c51cfd271 + - 071342ff-edd5-4376-974a-a2b8f3082617 Retry-After: - '20' Strict-Transport-Security: @@ -1184,7 +1122,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b19a3acc-f12e-40e0-98d5-cc4ee8e167bf + - 4ae9ac63-98d0-4382-886d-6096a9120507 status: code: 202 message: Accepted @@ -1200,33 +1138,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b19a3acc-f12e-40e0-98d5-cc4ee8e167bf + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae9ac63-98d0-4382-886d-6096a9120507 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:03:02.439167", - "lastUpdatedTimeUtc": "2026-06-15T11:03:05.5845169", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:58:09.7831061", + "lastUpdatedTimeUtc": "2026-09-09T12:58:13.3127482", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:23 GMT + - Wed, 09 Sep 2026 12:58:31 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b19a3acc-f12e-40e0-98d5-cc4ee8e167bf/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae9ac63-98d0-4382-886d-6096a9120507/result Pragma: - no-cache RequestId: - - 29402a44-6805-4bad-bdd7-2e88320a8af6 + - 25af30b1-e10f-4123-bdbb-830669e0610b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1234,7 +1172,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b19a3acc-f12e-40e0-98d5-cc4ee8e167bf + - 4ae9ac63-98d0-4382-886d-6096a9120507 status: code: 200 message: OK @@ -1250,16 +1188,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b19a3acc-f12e-40e0-98d5-cc4ee8e167bf/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae9ac63-98d0-4382-886d-6096a9120507/result response: body: - string: '{"id": "5c084a30-12f0-4185-bbda-024be855d623", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1267,11 +1205,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:03:24 GMT + - Wed, 09 Sep 2026 12:58:30 GMT Pragma: - no-cache RequestId: - - dd3bb623-684e-42cb-b540-0dfa5a782710 + - baf29b1a-58df-4b04-8a7a-fc73341b14ed Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1295,32 +1233,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:24 GMT + - Wed, 09 Sep 2026 12:58:31 GMT Pragma: - no-cache RequestId: - - cca99fad-2e13-43e1-9fed-22aa9d63b088 + - ea4fa48e-e6bb-43b7-808e-ab76f1d835bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1346,100 +1285,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "fb551160-967d-4134-8af7-2a9cde8af0ce", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "f285db49-0e67-4f66-909e-8e56a57cff36", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1479' + - '1283' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:26 GMT + - Wed, 09 Sep 2026 12:58:32 GMT Pragma: - no-cache RequestId: - - afc1d271-561d-47fb-9d83-5945e6b0b248 + - 545e260e-9607-41df-b165-91d31f31b68f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1467,15 +1393,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/fb551160-967d-4134-8af7-2a9cde8af0ce + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/f285db49-0e67-4f66-909e-8e56a57cff36 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1485,11 +1411,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 11:03:27 GMT + - Wed, 09 Sep 2026 12:58:32 GMT Pragma: - no-cache RequestId: - - 20edc3db-69cf-42d3-9109-8a0567fe3f4e + - 5bbf2726-edf5-4690-8f9d-c6e8dfc04d79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml index fae9430ad..8e9047379 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:17 GMT + - Wed, 09 Sep 2026 12:55:43 GMT Pragma: - no-cache RequestId: - - 4ab3d96f-d5cf-4ecb-a06e-b68510a9beaf + - 2db8e520-6e48-4075-ae49-ae1546a20736 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,81 +63,68 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1192' + - '968' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:18 GMT + - Wed, 09 Sep 2026 12:55:44 GMT Pragma: - no-cache RequestId: - - 8bb7c452-dabe-4b7b-b93d-0a3d20e7cb89 + - 21af48da-5bcc-4000-a99b-7852002d246d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,81 +150,68 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1192' + - '968' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:19 GMT + - Wed, 09 Sep 2026 12:55:45 GMT Pragma: - no-cache RequestId: - - dac316ce-2cd0-4aae-b13f-533ee3cc09b3 + - 0d895720-4f89-4f19-85ef-2ca13d76de14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +240,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/digitalTwinBuilders response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -283,15 +258,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:23 GMT + - Wed, 09 Sep 2026 12:55:46 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/95648648-4ccb-48f6-b399-9bea9e4764e8 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ea4a260c-b904-4b52-990b-480c353a124d Pragma: - no-cache RequestId: - - c9406516-90fb-40f4-8db5-499176da5931 + - c576cdc3-3b4f-4f73-8d2f-b2b08b2f5ca7 Retry-After: - '20' Strict-Transport-Security: @@ -305,7 +280,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 95648648-4ccb-48f6-b399-9bea9e4764e8 + - ea4a260c-b904-4b52-990b-480c353a124d status: code: 202 message: Accepted @@ -321,33 +296,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/95648648-4ccb-48f6-b399-9bea9e4764e8 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ea4a260c-b904-4b52-990b-480c353a124d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:00:20.6940027", - "lastUpdatedTimeUtc": "2026-06-15T11:00:36.7084233", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:55:45.7446572", + "lastUpdatedTimeUtc": "2026-09-09T12:55:54.3182332", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:44 GMT + - Wed, 09 Sep 2026 12:56:07 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/95648648-4ccb-48f6-b399-9bea9e4764e8/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ea4a260c-b904-4b52-990b-480c353a124d/result Pragma: - no-cache RequestId: - - d68ea12d-2457-445a-ac4e-6b674120bdc0 + - 00933493-ecbd-4859-a98d-f4fb551428e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,7 +330,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 95648648-4ccb-48f6-b399-9bea9e4764e8 + - ea4a260c-b904-4b52-990b-480c353a124d status: code: 200 message: OK @@ -371,16 +346,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/95648648-4ccb-48f6-b399-9bea9e4764e8/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ea4a260c-b904-4b52-990b-480c353a124d/result response: body: - string: '{"id": "61032828-6fa6-435e-9d83-24b9face833f", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "ee194478-61f4-454b-9644-dd97723cdb6a", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -388,11 +363,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:00:45 GMT + - Wed, 09 Sep 2026 12:56:07 GMT Pragma: - no-cache RequestId: - - 23146d04-4446-46bc-94c0-eaee460f9b9a + - 98fdd447-83b8-4efb-a60b-ab051f28c66a Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -416,32 +391,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:46 GMT + - Wed, 09 Sep 2026 12:56:08 GMT Pragma: - no-cache RequestId: - - e279978a-7dd8-4ed0-a45a-e335521c5006 + - cd0cb1e8-e6cb-4094-a146-8712881d6883 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,89 +443,76 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "61032828-6fa6-435e-9d83-24b9face833f", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3c1bd2a8-732a-4676-bf3e-bed95dd68bef", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ee194478-61f4-454b-9644-dd97723cdb6a", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "183a1f3c-8add-42ae-8069-77a7cb8efce7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1317' + - '1124' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:47 GMT + - Wed, 09 Sep 2026 12:56:08 GMT Pragma: - no-cache RequestId: - - 1548a970-a5c0-4978-8c3b-64507bd85d1b + - 2fc8ec07-c730-4d03-a87f-a53211442445 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -575,32 +538,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/61032828-6fa6-435e-9d83-24b9face833f + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/ee194478-61f4-454b-9644-dd97723cdb6a response: body: - string: '{"id": "61032828-6fa6-435e-9d83-24b9face833f", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "ee194478-61f4-454b-9644-dd97723cdb6a", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '166' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:47 GMT + - Wed, 09 Sep 2026 12:56:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c8e83d63-79a6-4909-a006-7631cf10810b + - b4a653e5-b5e1-4aee-964b-67621b407c8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -628,15 +591,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/61032828-6fa6-435e-9d83-24b9face833f/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/ee194478-61f4-454b-9644-dd97723cdb6a/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -646,13 +609,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:50 GMT + - Wed, 09 Sep 2026 12:56:09 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/02396ce3-15dd-41fe-ba65-8e9e711f520b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9863618e-071c-4a2d-acf2-d0379742540e Pragma: - no-cache RequestId: - - a56e6127-6d8d-44ac-bfab-b9f3e34d71b8 + - f74ebaab-62a5-4a18-b336-3e434ec66f29 Retry-After: - '20' Strict-Transport-Security: @@ -666,7 +629,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 02396ce3-15dd-41fe-ba65-8e9e711f520b + - 9863618e-071c-4a2d-acf2-d0379742540e status: code: 202 message: Accepted @@ -682,33 +645,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/02396ce3-15dd-41fe-ba65-8e9e711f520b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9863618e-071c-4a2d-acf2-d0379742540e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:00:50.144949", - "lastUpdatedTimeUtc": "2026-06-15T11:00:51.091311", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:56:10.439995", + "lastUpdatedTimeUtc": "2026-09-09T12:56:11.4051658", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '129' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:10 GMT + - Wed, 09 Sep 2026 12:56:30 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/02396ce3-15dd-41fe-ba65-8e9e711f520b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9863618e-071c-4a2d-acf2-d0379742540e/result Pragma: - no-cache RequestId: - - 9aae35e1-8aca-47c5-83c3-a773c662491e + - ccd4cd68-49ab-4150-a1c4-10d0c1cea0f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,7 +679,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 02396ce3-15dd-41fe-ba65-8e9e711f520b + - 9863618e-071c-4a2d-acf2-d0379742540e status: code: 200 message: OK @@ -732,17 +695,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/02396ce3-15dd-41fe-ba65-8e9e711f520b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9863618e-071c-4a2d-acf2-d0379742540e/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiNmFiNmIwNTMtMGIxMy00OWQwLTkxMWMtNjBhNjdmMTIzYjg4Ig0KfQ==", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiMmRhMzYxYmUtOGYzMy00ZDRhLWJiNTEtMjVkYjk1MDQ3NzcwIg0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -750,11 +713,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:01:10 GMT + - Wed, 09 Sep 2026 12:56:30 GMT Pragma: - no-cache RequestId: - - 2454c334-58cb-49f1-a684-cbe971ed9683 + - 899d33c2-9812-468a-8dac-134e002253a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -778,32 +741,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:11 GMT + - Wed, 09 Sep 2026 12:56:31 GMT Pragma: - no-cache RequestId: - - 209fa5fb-abc2-4bd4-8dcf-4e7b52bf98f7 + - 6a40f1ba-e9d1-4b51-8dd6-f88907cb78d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -829,89 +793,76 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "61032828-6fa6-435e-9d83-24b9face833f", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3c1bd2a8-732a-4676-bf3e-bed95dd68bef", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ee194478-61f4-454b-9644-dd97723cdb6a", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "183a1f3c-8add-42ae-8069-77a7cb8efce7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1317' + - '1124' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:13 GMT + - Wed, 09 Sep 2026 12:56:31 GMT Pragma: - no-cache RequestId: - - 50d012d2-db06-4b78-acc9-cf24a2abcbde + - fe31277a-b227-4e32-a43e-541de436e065 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -937,89 +888,76 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "61032828-6fa6-435e-9d83-24b9face833f", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3c1bd2a8-732a-4676-bf3e-bed95dd68bef", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ee194478-61f4-454b-9644-dd97723cdb6a", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "183a1f3c-8add-42ae-8069-77a7cb8efce7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1317' + - '1124' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:14 GMT + - Wed, 09 Sep 2026 12:56:32 GMT Pragma: - no-cache RequestId: - - 3a7cabe5-2c9d-420e-af76-85969406e8a4 + - a17a84e4-bf8f-4197-939c-96c8359ccb75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1036,7 +974,7 @@ interactions: - request: body: '{"type": "DigitalTwinBuilder", "folderId": null, "displayName": "fabcli000001_new_16", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGlnaXRhbFR3aW5CdWlsZGVyIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIkxha2Vob3VzZUlkIjogIjZhYjZiMDUzLTBiMTMtNDlkMC05MTFjLTYwYTY3ZjEyM2I4OCIKfQ==", + "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIkxha2Vob3VzZUlkIjogIjJkYTM2MWJlLThmMzMtNGQ0YS1iYjUxLTI1ZGI5NTA0Nzc3MCIKfQ==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1050,15 +988,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1068,15 +1006,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:16 GMT + - Wed, 09 Sep 2026 12:56:34 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3eee58fa-bd0e-432a-812a-4929afcae269 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f1194c2-c7f1-4ef8-923d-e0ece714dc97 Pragma: - no-cache RequestId: - - 73e2432a-dc1c-446e-8c2b-6dd72e1b1787 + - 6a8dac2d-88f3-49e7-9f62-56cc36c41f6e Retry-After: - '20' Strict-Transport-Security: @@ -1090,7 +1028,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3eee58fa-bd0e-432a-812a-4929afcae269 + - 6f1194c2-c7f1-4ef8-923d-e0ece714dc97 status: code: 202 message: Accepted @@ -1106,33 +1044,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3eee58fa-bd0e-432a-812a-4929afcae269 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f1194c2-c7f1-4ef8-923d-e0ece714dc97 response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-06-15T11:01:15.184111", - "lastUpdatedTimeUtc": "2026-06-15T11:01:15.184111", "percentComplete": null, - "error": null}' + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T12:56:33.8670497", + "lastUpdatedTimeUtc": "2026-09-09T12:56:33.8670497", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '121' + - '147' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:37 GMT + - Wed, 09 Sep 2026 12:56:55 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3eee58fa-bd0e-432a-812a-4929afcae269 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f1194c2-c7f1-4ef8-923d-e0ece714dc97 Pragma: - no-cache RequestId: - - 6fc746b2-6974-4de0-b48c-46fce464b2e9 + - ee5fe777-0056-41f2-85a0-d65f21b54294 Retry-After: - '20' Strict-Transport-Security: @@ -1142,7 +1080,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3eee58fa-bd0e-432a-812a-4929afcae269 + - 6f1194c2-c7f1-4ef8-923d-e0ece714dc97 status: code: 200 message: OK @@ -1158,33 +1096,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3eee58fa-bd0e-432a-812a-4929afcae269 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f1194c2-c7f1-4ef8-923d-e0ece714dc97 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:01:15.184111", - "lastUpdatedTimeUtc": "2026-06-15T11:01:45.8430901", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:56:33.8670497", + "lastUpdatedTimeUtc": "2026-09-09T12:57:04.1932307", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:57 GMT + - Wed, 09 Sep 2026 12:57:15 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3eee58fa-bd0e-432a-812a-4929afcae269/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f1194c2-c7f1-4ef8-923d-e0ece714dc97/result Pragma: - no-cache RequestId: - - 276ee2e9-dab2-4e03-9654-fc72300b84c3 + - a3f6120d-0647-4050-8cb1-19c15b07a7d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1192,7 +1130,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3eee58fa-bd0e-432a-812a-4929afcae269 + - 6f1194c2-c7f1-4ef8-923d-e0ece714dc97 status: code: 200 message: OK @@ -1208,16 +1146,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3eee58fa-bd0e-432a-812a-4929afcae269/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f1194c2-c7f1-4ef8-923d-e0ece714dc97/result response: body: - string: '{"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1225,11 +1163,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:01:58 GMT + - Wed, 09 Sep 2026 12:57:15 GMT Pragma: - no-cache RequestId: - - f3da629c-9d86-4a32-82a7-026c01897bcc + - f6b4f561-9da3-4b57-9ecd-76aa36027cd0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1253,32 +1191,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:01:59 GMT + - Wed, 09 Sep 2026 12:57:16 GMT Pragma: - no-cache RequestId: - - 4cb74cda-05eb-4acb-87db-a34f33b7cb12 + - 0b832bba-336f-4095-89cf-85040fa00dab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1304,91 +1243,78 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "61032828-6fa6-435e-9d83-24b9face833f", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3c1bd2a8-732a-4676-bf3e-bed95dd68bef", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ee194478-61f4-454b-9644-dd97723cdb6a", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "183a1f3c-8add-42ae-8069-77a7cb8efce7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1347' + - '1155' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:02:00 GMT + - Wed, 09 Sep 2026 12:57:16 GMT Pragma: - no-cache RequestId: - - cc0dd36c-21d3-42f7-96e2-c6136dd05cd7 + - 635cfe52-1551-4f96-a2b0-e3c3db175bd4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1416,15 +1342,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/61032828-6fa6-435e-9d83-24b9face833f + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/ee194478-61f4-454b-9644-dd97723cdb6a response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1434,11 +1360,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 11:02:01 GMT + - Wed, 09 Sep 2026 12:57:18 GMT Pragma: - no-cache RequestId: - - 3734bde2-4e93-48d1-9c33-1f627abdaccb + - e1c0afeb-a8da-4ada-94e4-f9a56a7cef0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml index c0983624c..bea13c8af 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:09 GMT + - Wed, 09 Sep 2026 12:59:08 GMT Pragma: - no-cache RequestId: - - e2c38a65-e99c-4246-b9bc-d4d463ee7ea8 + - 7a138f0a-48ca-464b-8062-ff59c80c2e20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,102 +63,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1513' + - '1317' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:10 GMT + - Wed, 09 Sep 2026 12:59:08 GMT Pragma: - no-cache RequestId: - - c304426d-8867-4d22-8db5-9c64aafed1be + - f3a8616f-83a1-465e-8ca6-2f8956c45000 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -183,102 +171,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1513' + - '1317' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:10 GMT + - Wed, 09 Sep 2026 12:59:09 GMT Pragma: - no-cache RequestId: - - 9bc57e4f-922e-4d67-b0b7-1183f3163fda + - cfb84fd8-dd32-409b-9ea4-e8326b22aeb7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,32 +281,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/environments response: body: - string: '{"id": "68f59512-c032-4654-8845-064c3db7e684", "type": "Environment", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "472d4f72-49e7-4dbf-8c72-36803d7c17f3", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '156' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:13 GMT + - Wed, 09 Sep 2026 12:59:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b7af00bd-053a-4e24-8416-4020bcef0097 + - 06b41442-da61-4b5a-88ae-76e0de71aefd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -357,32 +332,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:12 GMT + - Wed, 09 Sep 2026 12:59:11 GMT Pragma: - no-cache RequestId: - - a290325f-ecf6-46ff-987b-60431c65c9e4 + - e1f2f845-7152-4fa3-97c1-d000c256259c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -408,104 +384,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "68f59512-c032-4654-8845-064c3db7e684", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "472d4f72-49e7-4dbf-8c72-36803d7c17f3", "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1556' + - '1362' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:13 GMT + - Wed, 09 Sep 2026 12:59:12 GMT Pragma: - no-cache RequestId: - - 6c663538-9b46-41ea-b590-c465b18537ca + - 35ae5e63-0453-4ec6-8a17-337a5ae7df82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -531,32 +494,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/68f59512-c032-4654-8845-064c3db7e684 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/472d4f72-49e7-4dbf-8c72-36803d7c17f3 response: body: - string: '{"id": "68f59512-c032-4654-8845-064c3db7e684", "type": "Environment", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "472d4f72-49e7-4dbf-8c72-36803d7c17f3", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '156' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:14 GMT + - Wed, 09 Sep 2026 12:59:13 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f93fd044-f747-4a45-9348-19169f0a27f5 + - 4356bacb-996f-4191-a950-b57650e1de6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -584,15 +547,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/68f59512-c032-4654-8845-064c3db7e684/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/472d4f72-49e7-4dbf-8c72-36803d7c17f3/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -602,13 +565,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:15 GMT + - Wed, 09 Sep 2026 12:59:13 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9694c860-c8bf-4fe7-ad6e-c7426086616b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae201ad1-92a7-41a5-848f-9594b61f9165 Pragma: - no-cache RequestId: - - 272631df-6c5c-4dbc-9373-a672d0bd5595 + - 0e5794df-5e28-4e93-adce-ead40fa433a3 Retry-After: - '20' Strict-Transport-Security: @@ -622,7 +585,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 9694c860-c8bf-4fe7-ad6e-c7426086616b + - ae201ad1-92a7-41a5-848f-9594b61f9165 status: code: 202 message: Accepted @@ -638,33 +601,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9694c860-c8bf-4fe7-ad6e-c7426086616b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae201ad1-92a7-41a5-848f-9594b61f9165 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:04:15.8011033", - "lastUpdatedTimeUtc": "2026-06-15T11:04:16.0943304", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:59:13.7455416", + "lastUpdatedTimeUtc": "2026-09-09T12:59:14.0521322", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:35 GMT + - Wed, 09 Sep 2026 12:59:34 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9694c860-c8bf-4fe7-ad6e-c7426086616b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae201ad1-92a7-41a5-848f-9594b61f9165/result Pragma: - no-cache RequestId: - - 14d4362e-1b41-4a78-9d21-421c0431a761 + - 127bcabf-e4a2-4ab5-b254-f565fab545c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,7 +635,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 9694c860-c8bf-4fe7-ad6e-c7426086616b + - ae201ad1-92a7-41a5-848f-9594b61f9165 status: code: 200 message: OK @@ -688,9 +651,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9694c860-c8bf-4fe7-ad6e-c7426086616b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae201ad1-92a7-41a5-848f-9594b61f9165/result response: body: string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": @@ -699,7 +662,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -707,11 +670,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:04:37 GMT + - Wed, 09 Sep 2026 12:59:34 GMT Pragma: - no-cache RequestId: - - 635875c7-3b7f-45b9-8980-409ca6345940 + - 171db99f-3f42-4892-b128-f3965d6d229f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -735,32 +698,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:38 GMT + - Wed, 09 Sep 2026 12:59:35 GMT Pragma: - no-cache RequestId: - - 27b515a3-5a3c-4769-85a1-a09d52c45e9e + - 2fc4c7a5-f95f-4b23-a856-23b8ad84b40b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -786,104 +750,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "68f59512-c032-4654-8845-064c3db7e684", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "472d4f72-49e7-4dbf-8c72-36803d7c17f3", "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1556' + - '1362' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:39 GMT + - Wed, 09 Sep 2026 12:59:34 GMT Pragma: - no-cache RequestId: - - 23f922fd-f766-4448-a9f9-4ab67dd13d81 + - 26caf611-f8be-4c90-a03b-4c615c564eb8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -909,104 +860,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "68f59512-c032-4654-8845-064c3db7e684", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "472d4f72-49e7-4dbf-8c72-36803d7c17f3", "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1556' + - '1362' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:39 GMT + - Wed, 09 Sep 2026 12:59:35 GMT Pragma: - no-cache RequestId: - - 97dd5d29-051f-4a43-b3c9-def7069b54be + - ea755797-adfe-4441-9d73-edab46e8de0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1038,15 +976,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1056,15 +994,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:41 GMT + - Wed, 09 Sep 2026 12:59:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5dc80b08-9210-43c1-ac35-9b58ca100a72 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ddc3737-1671-45e2-ba68-b135644a5497 Pragma: - no-cache RequestId: - - 4a1a5b12-1081-4da5-bdc7-256b4b25deef + - b11c4d85-4a86-4d7b-a32b-c53621e00b0a Retry-After: - '20' Strict-Transport-Security: @@ -1078,7 +1016,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 5dc80b08-9210-43c1-ac35-9b58ca100a72 + - 6ddc3737-1671-45e2-ba68-b135644a5497 status: code: 202 message: Accepted @@ -1094,33 +1032,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5dc80b08-9210-43c1-ac35-9b58ca100a72 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ddc3737-1671-45e2-ba68-b135644a5497 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:04:41.6925558", - "lastUpdatedTimeUtc": "2026-06-15T11:04:44.4853975", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:59:37.0472001", + "lastUpdatedTimeUtc": "2026-09-09T12:59:40.0045752", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:02 GMT + - Wed, 09 Sep 2026 12:59:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5dc80b08-9210-43c1-ac35-9b58ca100a72/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ddc3737-1671-45e2-ba68-b135644a5497/result Pragma: - no-cache RequestId: - - a0e32496-27a7-4867-a977-c887fd5bfc7e + - 044fc477-0398-4f1d-adbd-c31ea442fdf2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1128,7 +1066,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 5dc80b08-9210-43c1-ac35-9b58ca100a72 + - 6ddc3737-1671-45e2-ba68-b135644a5497 status: code: 200 message: OK @@ -1144,16 +1082,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5dc80b08-9210-43c1-ac35-9b58ca100a72/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ddc3737-1671-45e2-ba68-b135644a5497/result response: body: - string: '{"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", "type": "Environment", - "displayName": "fabcli000001_new_19", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", + "displayName": "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1161,11 +1099,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:05:03 GMT + - Wed, 09 Sep 2026 12:59:57 GMT Pragma: - no-cache RequestId: - - 2cf424ad-f500-4163-ac1b-55551899a03d + - 0e92e4c1-9365-4459-bf36-fc62cdaf95b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1191,26 +1129,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/environments/c490858f-0333-499e-9fa3-b229b9d2d87d/staging/publish + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/environments/65d8ab67-4d7c-4d66-9e45-38c40326d919/staging/publish response: body: - string: '{"publishDetails": {"state": "Success", "targetVersion": "648048a1-44dc-40bd-83e3-c5a20290d20f", - "startTime": "2026-06-15T11:05:05.1802633Z", "endTime": "2026-06-15T11:05:05.8677738Z", + string: '{"publishDetails": {"state": "Success", "targetVersion": "d252c752-0307-46ea-b8e0-04fb689e79af", + "startTime": "2026-09-09T12:59:59.3704285Z", "endTime": "2026-09-09T13:00:00.4458933Z", "componentPublishInfo": {"sparkLibraries": {"state": "Success"}, "sparkSettings": {"state": "Success"}}}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Content-Length: - '383' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:05 GMT + - Wed, 09 Sep 2026 13:00:00 GMT RequestId: - - aaa09ae5-f3d8-4a5f-a934-d51379994cc6 + - 0a254f04-b773-48f5-a0e3-cd95cb81ed7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1236,36 +1174,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/environments/c490858f-0333-499e-9fa3-b229b9d2d87d + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/environments/65d8ab67-4d7c-4d66-9e45-38c40326d919 response: body: - string: '{"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", "type": "Environment", - "displayName": "fabcli000001_new_19", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", - "properties": {"publishDetails": {"state": "Success", "targetVersion": "648048a1-44dc-40bd-83e3-c5a20290d20f", - "startTime": "2026-06-15T11:05:05.1802633Z", "endTime": "2026-06-15T11:05:05.8677738Z", + string: '{"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", + "displayName": "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "d252c752-0307-46ea-b8e0-04fb689e79af", + "startTime": "2026-09-09T12:59:59.3704285Z", "endTime": "2026-09-09T13:00:00.4458933Z", "componentPublishInfo": {"sparkLibraries": {"state": "Success"}, "sparkSettings": {"state": "Success"}}}}}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '313' + - '319' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:07 GMT + - Wed, 09 Sep 2026 13:00:00 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8077e62f-8230-4e10-a494-3ac8914976e7 + - f1aadb98-2e95-4652-9717-d7aebfb08eda Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1291,32 +1229,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:07 GMT + - Wed, 09 Sep 2026 13:00:02 GMT Pragma: - no-cache RequestId: - - f3a3f116-83b8-4393-a3d4-43cc55b72f70 + - c190b8fb-f14f-4950-9738-c3e808aecde6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1342,106 +1281,93 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "68f59512-c032-4654-8845-064c3db7e684", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "472d4f72-49e7-4dbf-8c72-36803d7c17f3", "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1588' + - '1393' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:08 GMT + - Wed, 09 Sep 2026 13:00:02 GMT Pragma: - no-cache RequestId: - - 154f9315-13a4-4886-afb5-d8fea9e2e8c0 + - e21a73ac-6828-4f04-98d9-a71e5929241f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1469,15 +1395,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/68f59512-c032-4654-8845-064c3db7e684 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/472d4f72-49e7-4dbf-8c72-36803d7c17f3 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1487,11 +1413,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 11:05:08 GMT + - Wed, 09 Sep 2026 13:00:02 GMT Pragma: - no-cache RequestId: - - 1a6e2500-7b86-41e1-a428-8f6b7d142732 + - 7827619f-3f41-4771-9353-106ca027abe6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml index 2ee919f2b..85c016865 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:44 GMT + - Wed, 09 Sep 2026 12:48:47 GMT Pragma: - no-cache RequestId: - - 2e3e6f8a-60f1-484c-a5cd-0f3a3afbe41d + - f035bed2-82c0-45aa-9c15-85577aaaca41 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,61 +63,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '794' + - '558' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:46 GMT + - Wed, 09 Sep 2026 12:48:48 GMT Pragma: - no-cache RequestId: - - 61e0ceed-9c00-405d-8257-6e2464280daa + - 84796ce7-279f-472c-a3e7-747a130a83c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -142,61 +130,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '794' + - '558' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:47 GMT + - Wed, 09 Sep 2026 12:48:48 GMT Pragma: - no-cache RequestId: - - 16fbb2e4-a13e-40f0-8433-cc7a5b5d31dd + - 38ce70d7-4f1e-4f6c-b3ba-50ade3d8a381 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -224,16 +199,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/eventhouses + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/eventhouses response: body: - string: '{"id": "cf834783-0309-4805-a78d-45e0440739e3", "type": "Eventhouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "c4ad133c-9096-455d-8c9a-b6ddeec6317e", "type": "Eventhouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -243,13 +218,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:49 GMT + - Wed, 09 Sep 2026 12:48:52 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f9f72d0a-2ec3-4e9d-b027-7f91e6ed65ff + - 7f669092-c27a-4277-9f2b-bf98865c6ad8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -275,32 +250,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:50 GMT + - Wed, 09 Sep 2026 12:48:53 GMT Pragma: - no-cache RequestId: - - 071dd3b1-2057-4bbe-8b23-74cd4e6d489d + - 84d027c0-f92c-460a-91a6-d8e6212ea26a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -326,65 +302,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cf834783-0309-4805-a78d-45e0440739e3", "type": "Eventhouse", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "be3d107b-1b18-457f-b0c9-193b92eb6b1c", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4ad133c-9096-455d-8c9a-b6ddeec6317e", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ba7e731b-9bdd-48d2-b47a-6714a5c689c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '863' + - '619' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:51 GMT + - Wed, 09 Sep 2026 12:48:53 GMT Pragma: - no-cache RequestId: - - 97ac1618-1170-4b08-a5c1-46d03ec0f50c + - 7168c951-c364-4c3c-ac80-45e38815eca6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -410,16 +373,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/cf834783-0309-4805-a78d-45e0440739e3 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/c4ad133c-9096-455d-8c9a-b6ddeec6317e response: body: - string: '{"id": "cf834783-0309-4805-a78d-45e0440739e3", "type": "Eventhouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "c4ad133c-9096-455d-8c9a-b6ddeec6317e", "type": "Eventhouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -429,13 +392,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:53 GMT + - Wed, 09 Sep 2026 12:48:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d79edbe9-c58d-4a6e-92af-40b6ab94f189 + - e1c4362e-075b-4029-a6ff-da4a3a0813d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -463,15 +426,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/cf834783-0309-4805-a78d-45e0440739e3/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/c4ad133c-9096-455d-8c9a-b6ddeec6317e/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -481,13 +444,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:53 GMT + - Wed, 09 Sep 2026 12:48:54 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce905e5f-c9c3-4699-8a9c-486153612e00 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5aa3f7-40a0-40e0-bda5-1ce3dc7d2146 Pragma: - no-cache RequestId: - - 55cde43f-1513-4659-8a01-5322f9de48c1 + - d84d05a0-70e2-44c7-9463-97da0caa2821 Retry-After: - '20' Strict-Transport-Security: @@ -501,7 +464,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - ce905e5f-c9c3-4699-8a9c-486153612e00 + - 6d5aa3f7-40a0-40e0-bda5-1ce3dc7d2146 status: code: 202 message: Accepted @@ -517,33 +480,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce905e5f-c9c3-4699-8a9c-486153612e00 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5aa3f7-40a0-40e0-bda5-1ce3dc7d2146 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:52:54.0283152", - "lastUpdatedTimeUtc": "2026-06-15T10:53:12.8810799", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:48:54.9103747", + "lastUpdatedTimeUtc": "2026-09-09T12:49:13.7914893", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '133' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:14 GMT + - Wed, 09 Sep 2026 12:49:14 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce905e5f-c9c3-4699-8a9c-486153612e00/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5aa3f7-40a0-40e0-bda5-1ce3dc7d2146/result Pragma: - no-cache RequestId: - - 041d4ddc-8a88-4d0d-8034-d252860fd98f + - 8d12328b-5089-4cf8-9f02-158e63980a6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -551,7 +514,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ce905e5f-c9c3-4699-8a9c-486153612e00 + - 6d5aa3f7-40a0-40e0-bda5-1ce3dc7d2146 status: code: 200 message: OK @@ -567,9 +530,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce905e5f-c9c3-4699-8a9c-486153612e00/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5aa3f7-40a0-40e0-bda5-1ce3dc7d2146/result response: body: string: '{"definition": {"parts": [{"path": "EventhouseProperties.json", "payload": @@ -577,7 +540,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -585,11 +548,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:53:15 GMT + - Wed, 09 Sep 2026 12:49:15 GMT Pragma: - no-cache RequestId: - - 65454b51-b717-423f-9420-1df1484dedd5 + - 1ec31ca0-2344-420a-800f-33df1a37bc58 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -613,32 +576,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:15 GMT + - Wed, 09 Sep 2026 12:49:16 GMT Pragma: - no-cache RequestId: - - ca067a6d-e085-42f2-bc6e-84cf3585bcd9 + - d0eed677-4ac8-462d-b7d8-1aedd7e67f0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -664,65 +628,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cf834783-0309-4805-a78d-45e0440739e3", "type": "Eventhouse", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "be3d107b-1b18-457f-b0c9-193b92eb6b1c", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4ad133c-9096-455d-8c9a-b6ddeec6317e", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ba7e731b-9bdd-48d2-b47a-6714a5c689c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '863' + - '619' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:17 GMT + - Wed, 09 Sep 2026 12:49:16 GMT Pragma: - no-cache RequestId: - - cabd3430-378c-4c1f-89dc-a7d943dd3a2f + - 786d002e-36a6-4221-a83f-11b67654db49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -748,65 +699,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cf834783-0309-4805-a78d-45e0440739e3", "type": "Eventhouse", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "be3d107b-1b18-457f-b0c9-193b92eb6b1c", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4ad133c-9096-455d-8c9a-b6ddeec6317e", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ba7e731b-9bdd-48d2-b47a-6714a5c689c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '863' + - '619' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:17 GMT + - Wed, 09 Sep 2026 12:49:16 GMT Pragma: - no-cache RequestId: - - d024210f-e8e3-40ad-9740-8983b0c71a38 + - 3a8a2bb6-716f-4668-a4f1-eda2de5fc110 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -837,15 +775,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -855,15 +793,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:19 GMT + - Wed, 09 Sep 2026 12:49:18 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a6818150-b135-45eb-b439-287c3d9fd1d7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/893618f1-3b7b-4859-9a47-d9a2f2c78235 Pragma: - no-cache RequestId: - - c1b10a24-3772-40bb-b90e-e018018607cb + - 0bbefcbe-21f6-4b74-9720-6b98e1a25e2f Retry-After: - '20' Strict-Transport-Security: @@ -877,7 +815,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - a6818150-b135-45eb-b439-287c3d9fd1d7 + - 893618f1-3b7b-4859-9a47-d9a2f2c78235 status: code: 202 message: Accepted @@ -893,33 +831,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a6818150-b135-45eb-b439-287c3d9fd1d7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/893618f1-3b7b-4859-9a47-d9a2f2c78235 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:53:18.9675678", - "lastUpdatedTimeUtc": "2026-06-15T10:53:22.1254797", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:49:17.7688004", + "lastUpdatedTimeUtc": "2026-09-09T12:49:20.7192941", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:39 GMT + - Wed, 09 Sep 2026 12:49:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a6818150-b135-45eb-b439-287c3d9fd1d7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/893618f1-3b7b-4859-9a47-d9a2f2c78235/result Pragma: - no-cache RequestId: - - 8d31429a-b7cb-414c-8a73-5166a24ac469 + - b286bb8d-4399-415c-9b1d-f7b8c9db2a62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -927,7 +865,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - a6818150-b135-45eb-b439-287c3d9fd1d7 + - 893618f1-3b7b-4859-9a47-d9a2f2c78235 status: code: 200 message: OK @@ -943,16 +881,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a6818150-b135-45eb-b439-287c3d9fd1d7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/893618f1-3b7b-4859-9a47-d9a2f2c78235/result response: body: - string: '{"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", - "displayName": "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", + "displayName": "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -960,11 +898,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:53:41 GMT + - Wed, 09 Sep 2026 12:49:39 GMT Pragma: - no-cache RequestId: - - 9f05b5b0-b417-4262-989c-dfffbc5b186f + - 6349492a-be33-4843-86f3-6dde6f3f8767 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -988,32 +926,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:41 GMT + - Wed, 09 Sep 2026 12:49:39 GMT Pragma: - no-cache RequestId: - - 090d7e17-9b2a-44a8-b40c-20148ee39fc7 + - 501a0a30-9ba2-4a85-a3a3-e6465c42b0b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1039,67 +978,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cf834783-0309-4805-a78d-45e0440739e3", "type": "Eventhouse", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "be3d107b-1b18-457f-b0c9-193b92eb6b1c", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4ad133c-9096-455d-8c9a-b6ddeec6317e", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ba7e731b-9bdd-48d2-b47a-6714a5c689c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '895' + - '650' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:42 GMT + - Wed, 09 Sep 2026 12:49:39 GMT Pragma: - no-cache RequestId: - - a7858aa7-4e61-4874-94fd-864cb57179a6 + - 8a8c8c24-bc4a-4c02-89db-7b3cbdd1e67e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1127,15 +1053,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/cf834783-0309-4805-a78d-45e0440739e3 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/c4ad133c-9096-455d-8c9a-b6ddeec6317e response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1145,11 +1071,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:53:43 GMT + - Wed, 09 Sep 2026 12:49:40 GMT Pragma: - no-cache RequestId: - - b2a57d9b-59c8-40cb-9489-ed65fed6b462 + - bf77a74f-eb11-424c-9c4c-9c9263b2c3d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[GraphModel].yaml new file mode 100644 index 000000000..b97d51573 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[GraphModel].yaml @@ -0,0 +1,1507 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:03 GMT + Pragma: + - no-cache + RequestId: + - ba7110e7-72b7-4aec-805e-a1ac5a27dc39 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1365' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:04 GMT + Pragma: + - no-cache + RequestId: + - e1dfc378-2a2e-4982-9f67-e0f7d8584734 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1365' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:04 GMT + Pragma: + - no-cache + RequestId: + - d5ebc730-edc2-4003-abe3-18e9741ac081 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:06 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7a34499-5bd4-4961-8143-25c5565ca159 + Pragma: + - no-cache + RequestId: + - 7cf3bb41-426d-4743-8e55-fcbb34a39720 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - c7a34499-5bd4-4961-8143-25c5565ca159 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7a34499-5bd4-4961-8143-25c5565ca159 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:00:05.7892318", + "lastUpdatedTimeUtc": "2026-09-09T13:00:07.7469129", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:26 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7a34499-5bd4-4961-8143-25c5565ca159/result + Pragma: + - no-cache + RequestId: + - dd9f80bb-0697-4dee-be67-72449b1c5e39 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - c7a34499-5bd4-4961-8143-25c5565ca159 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7a34499-5bd4-4961-8143-25c5565ca159/result + response: + body: + string: '{"id": "0bd20949-26be-49bb-b0c0-81a765cb0eec", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:00:26 GMT + Pragma: + - no-cache + RequestId: + - d40b8680-aaf7-42af-9d55-6f5e3b52ee4c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:27 GMT + Pragma: + - no-cache + RequestId: + - e932128c-17b3-4533-b916-a34c723186b9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0bd20949-26be-49bb-b0c0-81a765cb0eec", + "type": "GraphModel", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1409' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:27 GMT + Pragma: + - no-cache + RequestId: + - 7ef8434f-70a8-45f4-84d9-1c7258693687 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/0bd20949-26be-49bb-b0c0-81a765cb0eec + response: + body: + string: '{"id": "0bd20949-26be-49bb-b0c0-81a765cb0eec", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:28 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 168ae4f0-a600-4ba5-91fb-696b8a07f657 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/0bd20949-26be-49bb-b0c0-81a765cb0eec/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8577726d-8f89-40b2-a07a-305c7f5034ce + Pragma: + - no-cache + RequestId: + - 7dfa7d1a-886f-45d6-a28f-cbab1f14b40c + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 8577726d-8f89-40b2-a07a-305c7f5034ce + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8577726d-8f89-40b2-a07a-305c7f5034ce + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:00:29.1921565", + "lastUpdatedTimeUtc": "2026-09-09T13:00:32.4122016", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8577726d-8f89-40b2-a07a-305c7f5034ce/result + Pragma: + - no-cache + RequestId: + - 7ce938da-d9c3-4466-8636-dce8a6604750 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 8577726d-8f89-40b2-a07a-305c7f5034ce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8577726d-8f89-40b2-a07a-305c7f5034ce/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:00:49 GMT + Pragma: + - no-cache + RequestId: + - e53c4736-26f2-497a-a862-dbd2a045f291 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:50 GMT + Pragma: + - no-cache + RequestId: + - 45def212-a5b7-4fee-b391-e84ceeb56da1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0bd20949-26be-49bb-b0c0-81a765cb0eec", + "type": "GraphModel", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1409' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:51 GMT + Pragma: + - no-cache + RequestId: + - e5a7447c-1fe5-40db-a2a3-b011f9e47043 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0bd20949-26be-49bb-b0c0-81a765cb0eec", + "type": "GraphModel", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1409' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:51 GMT + Pragma: + - no-cache + RequestId: + - b5ee18ed-dcf8-4cd5-b147-9a3f773c2fc5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"type": "GraphModel", "folderId": null, "displayName": "fabcli000001_new_20", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiR3JhcGhNb2RlbCIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2RhdGFTb3VyY2VzLzEuMC4wL3NjaGVtYS5qc29uIiwKICAgICJkYXRhU291cmNlcyI6IG51bGwKfQ==", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2dyYXBoRGVmaW5pdGlvbi8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibm9kZVRhYmxlcyI6IG51bGwsCiAgICAiZWRnZVRhYmxlcyI6IG51bGwKfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2dyYXBoU2V0dGluZ3MvMS4wLjAvc2NoZW1hLmpzb24iCn0=", + "payloadType": "InlineBase64"}, {"path": "graphType.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2dyYXBoVHlwZS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibm9kZVR5cGVzIjogbnVsbCwKICAgICJlZGdlVHlwZXMiOiBudWxsCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL3N0eWxpbmdDb25maWd1cmF0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwKICAgICJtb2RlbExheW91dCI6IG51bGwsCiAgICAidmlzdWFsRm9ybWF0IjogbnVsbAp9", + "payloadType": "InlineBase64"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2123' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:00:54 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/487d5775-8038-4b1c-8080-30e431ae8c5b + Pragma: + - no-cache + RequestId: + - 74055938-5c7a-4e7f-8e02-b14cefec198b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 487d5775-8038-4b1c-8080-30e431ae8c5b + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/487d5775-8038-4b1c-8080-30e431ae8c5b + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T13:00:53.8892568", + "lastUpdatedTimeUtc": "2026-09-09T13:00:53.8892568", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:14 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/487d5775-8038-4b1c-8080-30e431ae8c5b + Pragma: + - no-cache + RequestId: + - 8c0ca4a6-099a-45cc-ad6e-7d4c3b7e8b59 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 487d5775-8038-4b1c-8080-30e431ae8c5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/487d5775-8038-4b1c-8080-30e431ae8c5b + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:00:53.8892568", + "lastUpdatedTimeUtc": "2026-09-09T13:01:15.7941369", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:36 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/487d5775-8038-4b1c-8080-30e431ae8c5b/result + Pragma: + - no-cache + RequestId: + - 221b8130-86ca-43ef-8d49-592015ee04ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 487d5775-8038-4b1c-8080-30e431ae8c5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/487d5775-8038-4b1c-8080-30e431ae8c5b/result + response: + body: + string: '{"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", + "displayName": "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:01:35 GMT + Pragma: + - no-cache + RequestId: + - a729fdcd-fbfb-41f1-9223-d99e9cbe1802 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:36 GMT + Pragma: + - no-cache + RequestId: + - 0dbcad74-80e8-49c5-8606-5cc4cc5e1e68 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0bd20949-26be-49bb-b0c0-81a765cb0eec", + "type": "GraphModel", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1439' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:37 GMT + Pragma: + - no-cache + RequestId: + - bff74586-938f-4048-b178-6ae4d920467b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/0bd20949-26be-49bb-b0c0-81a765cb0eec + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 13:01:37 GMT + Pragma: + - no-cache + RequestId: + - a3f7ef3e-0721-45d9-b7e6-026c7549f84d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml index 01201982b..dc3ae5b75 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:20 GMT + - Wed, 09 Sep 2026 12:51:12 GMT Pragma: - no-cache RequestId: - - 921b2360-74d1-4ce2-99ba-12fd0fdb0707 + - dbcaa79a-aec5-469a-b5f7-212b5e2bfed8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,69 +63,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '949' + - '726' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:21 GMT + - Wed, 09 Sep 2026 12:51:13 GMT Pragma: - no-cache RequestId: - - 05c56225-95ec-4789-9ecf-a1c0f370d57a + - 275a1e55-e575-4fc8-960d-f541cb2472bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,69 +138,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '949' + - '726' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:21 GMT + - Wed, 09 Sep 2026 12:51:13 GMT Pragma: - no-cache RequestId: - - b9c8ad72-d964-4606-85f3-9ef36f9b0631 + - cb2848b2-03cf-4a70-a52b-2772ee5d7a7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -240,16 +215,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/kqlDashboards response: body: - string: '{"id": "cc71bd38-4ad0-44b1-ab5e-4491692b6bd4", "type": "KQLDashboard", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "99fe8be5-c9f0-45e3-8165-15e399621f2b", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -259,13 +234,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:23 GMT + - Wed, 09 Sep 2026 12:51:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5f66c03a-6299-4f15-a06f-32a13efba281 + - 2821820d-618c-483e-a473-e5c352c4bcd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -291,32 +266,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:23 GMT + - Wed, 09 Sep 2026 12:51:15 GMT Pragma: - no-cache RequestId: - - b4883a70-c4a3-4db9-9c92-5ea61f6f269e + - 1f8ada4b-ebe1-4349-9638-a4092a6de474 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,71 +318,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cc71bd38-4ad0-44b1-ab5e-4491692b6bd4", "type": "KQLDashboard", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "99fe8be5-c9f0-45e3-8165-15e399621f2b", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '993' + - '763' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:24 GMT + - Wed, 09 Sep 2026 12:51:16 GMT Pragma: - no-cache RequestId: - - cccd0f3a-cec3-42ee-9cfc-cdb6080bc23c + - edca1b52-3c35-40f1-8dd2-c8459ccb8ef2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -432,16 +395,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/cc71bd38-4ad0-44b1-ab5e-4491692b6bd4 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/99fe8be5-c9f0-45e3-8165-15e399621f2b response: body: - string: '{"id": "cc71bd38-4ad0-44b1-ab5e-4491692b6bd4", "type": "KQLDashboard", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "99fe8be5-c9f0-45e3-8165-15e399621f2b", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -451,13 +414,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:25 GMT + - Wed, 09 Sep 2026 12:51:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fdcd9831-3633-40af-8eba-10aceadf0de3 + - 89de90c3-fecd-4fdf-97f6-7de546b1af92 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -485,9 +448,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/cc71bd38-4ad0-44b1-ab5e-4491692b6bd4/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/99fe8be5-c9f0-45e3-8165-15e399621f2b/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": @@ -495,7 +458,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -505,11 +468,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:26 GMT + - Wed, 09 Sep 2026 12:51:17 GMT Pragma: - no-cache RequestId: - - 822c9907-c10a-4dbe-916d-d8982b5a2ffa + - 7c45610c-e01d-44fc-9a7d-5f719eadd5a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -535,32 +498,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:26 GMT + - Wed, 09 Sep 2026 12:51:18 GMT Pragma: - no-cache RequestId: - - 471a12b9-8b2d-4f7b-b039-e15341056451 + - 3f923d5b-b1b3-4935-bd7a-3d6a2eb687c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -586,71 +550,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cc71bd38-4ad0-44b1-ab5e-4491692b6bd4", "type": "KQLDashboard", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "99fe8be5-c9f0-45e3-8165-15e399621f2b", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '993' + - '763' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:27 GMT + - Wed, 09 Sep 2026 12:51:17 GMT Pragma: - no-cache RequestId: - - 1b13c59b-419e-484c-8e47-a5fade10e7e8 + - 9d036be5-d13c-440c-87f1-ea0381d57842 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,71 +627,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cc71bd38-4ad0-44b1-ab5e-4491692b6bd4", "type": "KQLDashboard", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "99fe8be5-c9f0-45e3-8165-15e399621f2b", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '993' + - '763' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:28 GMT + - Wed, 09 Sep 2026 12:51:18 GMT Pragma: - no-cache RequestId: - - 50354e86-a32e-4d0c-81c4-b915c8cec643 + - 6234a929-ff9c-40f8-8fd1-e8e42b5b4443 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -771,32 +709,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", - "displayName": "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", + "displayName": "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '166' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:31 GMT + - Wed, 09 Sep 2026 12:51:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 339ddaf6-2310-4e74-bd8c-f06a4506699d + - fb38c2b3-e2cb-4bc1-83c6-3c6cfaad5e87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -822,32 +760,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:31 GMT + - Wed, 09 Sep 2026 12:51:21 GMT Pragma: - no-cache RequestId: - - 4ce5cbff-5d73-4cd7-b9b0-13acdd3cf2d2 + - f6bad880-872d-479d-ac40-18e8fcab1935 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -873,73 +812,60 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "cc71bd38-4ad0-44b1-ab5e-4491692b6bd4", "type": "KQLDashboard", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "99fe8be5-c9f0-45e3-8165-15e399621f2b", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1023' + - '797' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:32 GMT + - Wed, 09 Sep 2026 12:51:21 GMT Pragma: - no-cache RequestId: - - 42e50e6d-946c-4170-8037-d31353eb3561 + - 60fc4b1a-7808-4505-b248-4914c1c326b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -967,15 +893,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/cc71bd38-4ad0-44b1-ab5e-4491692b6bd4 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/99fe8be5-c9f0-45e3-8165-15e399621f2b response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -985,11 +911,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:55:32 GMT + - Wed, 09 Sep 2026 12:51:22 GMT Pragma: - no-cache RequestId: - - 75ade969-9c21-4f01-b41b-b830d76513c7 + - 94f4cfd8-4710-4fe7-ad88-02bbc0f86bc0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml index ee22d4953..5e7bcc407 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:44 GMT + - Wed, 09 Sep 2026 12:47:21 GMT Pragma: - no-cache RequestId: - - 552e4314-c83c-43d4-a6f6-1e2ee7f38699 + - 9899cfd7-110c-4c82-8571-b13c27ba2111 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,53 +63,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '635' + - '403' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:46 GMT + - Wed, 09 Sep 2026 12:47:21 GMT Pragma: - no-cache RequestId: - - fa39c870-7da8-4c80-af63-d70774721750 + - 3fe6e0ef-d6d7-4e43-989a-8897d0b5a3c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,53 +122,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '635' + - '403' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:47 GMT + - Wed, 09 Sep 2026 12:47:22 GMT Pragma: - no-cache RequestId: - - 9381d73a-89ff-40c9-a1c0-971ca5464fe3 + - 6121d263-2792-43e1-a167-566c7aa50715 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -209,32 +184,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/eventhouses + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/eventhouses response: body: - string: '{"id": "a674edaa-c914-4afc-9f00-cf305b87d978", "type": "Eventhouse", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '161' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:51 GMT + - Wed, 09 Sep 2026 12:47:26 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4e1038bc-862c-4c94-9032-d76cb0fc0f1b + - 3b2ba32a-3383-4ea1-8213-c83872800170 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +225,7 @@ interactions: message: Created - request: body: '{"displayName": "fabcli000001", "type": "KQLDatabase", "folderId": null, - "creationPayload": {"databaseType": "ReadWrite", "parentEventhouseItemId": "a674edaa-c914-4afc-9f00-cf305b87d978"}}' + "creationPayload": {"databaseType": "ReadWrite", "parentEventhouseItemId": "96f1d3b3-526f-4a40-8a3b-391e19049077"}}' headers: Accept: - '*/*' @@ -263,15 +238,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/kqlDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/kqlDatabases response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -281,15 +256,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:52 GMT + - Wed, 09 Sep 2026 12:47:27 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f908b49-752c-44c5-8419-3a41913cd48e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72f1b42b-91e3-4d05-8422-530fea47694e Pragma: - no-cache RequestId: - - d4cb10bf-14b1-4988-8617-133e58b15f2e + - bd8a2963-471e-4544-9f0e-c1579a7aae95 Retry-After: - '20' Strict-Transport-Security: @@ -303,7 +278,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 8f908b49-752c-44c5-8419-3a41913cd48e + - 72f1b42b-91e3-4d05-8422-530fea47694e status: code: 202 message: Accepted @@ -319,33 +294,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f908b49-752c-44c5-8419-3a41913cd48e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72f1b42b-91e3-4d05-8422-530fea47694e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:50:52.415718", - "lastUpdatedTimeUtc": "2026-06-15T10:50:58.3623428", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:47:26.9963578", + "lastUpdatedTimeUtc": "2026-09-09T12:47:36.2976985", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:51:13 GMT + - Wed, 09 Sep 2026 12:47:47 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f908b49-752c-44c5-8419-3a41913cd48e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72f1b42b-91e3-4d05-8422-530fea47694e/result Pragma: - no-cache RequestId: - - 88b07587-3a3f-4c86-8b34-a4fa543d066b + - 78dd0c10-14ce-4339-a683-3e2e36879106 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -353,7 +328,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 8f908b49-752c-44c5-8419-3a41913cd48e + - 72f1b42b-91e3-4d05-8422-530fea47694e status: code: 200 message: OK @@ -369,16 +344,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f908b49-752c-44c5-8419-3a41913cd48e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72f1b42b-91e3-4d05-8422-530fea47694e/result response: body: - string: '{"id": "3ba30607-43bf-4bf7-bbb6-1b18370a419a", "type": "KQLDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "ed0c540a-a78b-486b-aedc-e3fc6f790b7b", "type": "KQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -386,11 +361,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:51:14 GMT + - Wed, 09 Sep 2026 12:47:47 GMT Pragma: - no-cache RequestId: - - 03619f0e-a279-4039-b869-68aaed4af9a8 + - 30dd7269-854e-4bf6-9b14-8284fbe2cf02 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -414,32 +389,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:51:14 GMT + - Wed, 09 Sep 2026 12:47:48 GMT Pragma: - no-cache RequestId: - - 824ea8dc-1961-495a-ac4d-cf621c0249d7 + - 9c6a8d41-c113-415f-8964-d006564db6aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,59 +441,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3ba30607-43bf-4bf7-bbb6-1b18370a419a", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed0c540a-a78b-486b-aedc-e3fc6f790b7b", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '745' + - '511' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:51:16 GMT + - Wed, 09 Sep 2026 12:47:49 GMT Pragma: - no-cache RequestId: - - 4abd334e-b797-453f-a832-c41d5c607503 + - f21138b9-9f9d-41ea-b82b-d5bbf75af3bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -543,32 +506,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/3ba30607-43bf-4bf7-bbb6-1b18370a419a + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/ed0c540a-a78b-486b-aedc-e3fc6f790b7b response: body: - string: '{"id": "3ba30607-43bf-4bf7-bbb6-1b18370a419a", "type": "KQLDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "ed0c540a-a78b-486b-aedc-e3fc6f790b7b", "type": "KQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '156' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:51:16 GMT + - Wed, 09 Sep 2026 12:47:49 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bf9736ee-073a-468c-b1e0-16958a80e7fc + - 30c453fe-04fa-49af-a2f6-74b60a30ef8d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -596,15 +559,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/3ba30607-43bf-4bf7-bbb6-1b18370a419a/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/ed0c540a-a78b-486b-aedc-e3fc6f790b7b/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -614,13 +577,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:51:17 GMT + - Wed, 09 Sep 2026 12:47:50 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c6a9282-06b6-4123-bb72-1b8e0bd116ad + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c54faa97-fac9-4b65-afea-0171299a6ce4 Pragma: - no-cache RequestId: - - baf0f768-9c74-4b46-bb03-7b73096d47b7 + - d6d36c39-0286-4184-84a4-8cbefdc26a40 Retry-After: - '20' Strict-Transport-Security: @@ -634,7 +597,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 4c6a9282-06b6-4123-bb72-1b8e0bd116ad + - c54faa97-fac9-4b65-afea-0171299a6ce4 status: code: 202 message: Accepted @@ -650,85 +613,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c6a9282-06b6-4123-bb72-1b8e0bd116ad - response: - body: - string: '{"status": "Running", "createdTimeUtc": "2026-06-15T10:51:17.6311838", - "lastUpdatedTimeUtc": "2026-06-15T10:51:17.6311838", "percentComplete": null, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '122' - Content-Type: - - application/json; charset=utf-8 - Date: - - Mon, 15 Jun 2026 10:51:37 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c6a9282-06b6-4123-bb72-1b8e0bd116ad - Pragma: - - no-cache - RequestId: - - bcf096c4-729b-43be-9087-eb87018a2efb - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 4c6a9282-06b6-4123-bb72-1b8e0bd116ad - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c6a9282-06b6-4123-bb72-1b8e0bd116ad + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c54faa97-fac9-4b65-afea-0171299a6ce4 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:51:17.6311838", - "lastUpdatedTimeUtc": "2026-06-15T10:51:46.5241648", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:47:50.864529", + "lastUpdatedTimeUtc": "2026-09-09T12:48:09.8132519", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:51:58 GMT + - Wed, 09 Sep 2026 12:48:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c6a9282-06b6-4123-bb72-1b8e0bd116ad/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c54faa97-fac9-4b65-afea-0171299a6ce4/result Pragma: - no-cache RequestId: - - 95da84a0-8e7c-4b05-9b1f-71e12eaf5df2 + - 573b21c4-2cbb-453f-b13a-086cc7b7400f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -736,7 +647,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 4c6a9282-06b6-4123-bb72-1b8e0bd116ad + - c54faa97-fac9-4b65-afea-0171299a6ce4 status: code: 200 message: OK @@ -752,20 +663,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4c6a9282-06b6-4123-bb72-1b8e0bd116ad/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c54faa97-fac9-4b65-afea-0171299a6ce4/result response: body: string: '{"definition": {"parts": [{"path": "DatabaseProperties.json", "payload": - "ew0KICAiZGF0YWJhc2VUeXBlIjogIlJlYWRXcml0ZSIsDQogICJwYXJlbnRFdmVudGhvdXNlSXRlbUlkIjogImE2NzRlZGFhLWM5MTQtNGFmYy05ZjAwLWNmMzA1Yjg3ZDk3OCIsDQogICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsDQogICJvbmVMYWtlU3RhbmRhcmRTdG9yYWdlUGVyaW9kIjogIlAzNjUwMDBEIg0KfQ==", + "ew0KICAiZGF0YWJhc2VUeXBlIjogIlJlYWRXcml0ZSIsDQogICJwYXJlbnRFdmVudGhvdXNlSXRlbUlkIjogIjk2ZjFkM2IzLTUyNmYtNGE0MC04YTNiLTM5MWUxOTA0OTA3NyIsDQogICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsDQogICJvbmVMYWtlU3RhbmRhcmRTdG9yYWdlUGVyaW9kIjogIlAzNjUwMDBEIg0KfQ==", "payloadType": "InlineBase64"}, {"path": "DatabaseSchema.kql", "payload": "Ly8gS1FMIHNjcmlwdA0KLy8gVXNlIG1hbmFnZW1lbnQgY29tbWFuZHMgaW4gdGhpcyBzY3JpcHQgdG8gY29uZmlndXJlIHlvdXIgZGF0YWJhc2UgaXRlbXMsIHN1Y2ggYXMgdGFibGVzLCBmdW5jdGlvbnMsIG1hdGVyaWFsaXplZCB2aWV3cywgYW5kIG1vcmUuDQoNCg0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -773,11 +684,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:51:59 GMT + - Wed, 09 Sep 2026 12:48:11 GMT Pragma: - no-cache RequestId: - - 42ea0d05-7b47-48bf-81ce-d25de02c3657 + - a9173dbb-3d20-464e-a7f1-818b4c31dbc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -801,32 +712,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:00 GMT + - Wed, 09 Sep 2026 12:48:11 GMT Pragma: - no-cache RequestId: - - d7a41683-5b88-491e-a092-ef1d30115618 + - af87685f-c700-42e9-a9c1-97695bab7bf1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -852,59 +764,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3ba30607-43bf-4bf7-bbb6-1b18370a419a", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed0c540a-a78b-486b-aedc-e3fc6f790b7b", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '745' + - '511' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:01 GMT + - Wed, 09 Sep 2026 12:48:13 GMT Pragma: - no-cache RequestId: - - f29b4dd6-cd5d-4b0b-a6ac-2c15335f5e4b + - 98690593-4f5d-47d6-8be5-8713a02554ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -930,59 +829,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3ba30607-43bf-4bf7-bbb6-1b18370a419a", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed0c540a-a78b-486b-aedc-e3fc6f790b7b", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '745' + - '511' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:02 GMT + - Wed, 09 Sep 2026 12:48:12 GMT Pragma: - no-cache RequestId: - - 02612d11-77df-4a79-80c1-5f26d89b345d + - 29af0909-979f-4ec5-b279-afa0d46bc2ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1000,7 +886,7 @@ interactions: body: '{"type": "KQLDatabase", "folderId": null, "displayName": "fabcli000001_new_7", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}, {"path": "DatabaseProperties.json", "payload": - "ewogICAgImRhdGFiYXNlVHlwZSI6ICJSZWFkV3JpdGUiLAogICAgInBhcmVudEV2ZW50aG91c2VJdGVtSWQiOiAiYTY3NGVkYWEtYzkxNC00YWZjLTlmMDAtY2YzMDViODdkOTc4IiwKICAgICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsCiAgICAib25lTGFrZVN0YW5kYXJkU3RvcmFnZVBlcmlvZCI6ICJQMzY1MDAwRCIKfQ==", + "ewogICAgImRhdGFiYXNlVHlwZSI6ICJSZWFkV3JpdGUiLAogICAgInBhcmVudEV2ZW50aG91c2VJdGVtSWQiOiAiOTZmMWQzYjMtNTI2Zi00YTQwLThhM2ItMzkxZTE5MDQ5MDc3IiwKICAgICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsCiAgICAib25lTGFrZVN0YW5kYXJkU3RvcmFnZVBlcmlvZCI6ICJQMzY1MDAwRCIKfQ==", "payloadType": "InlineBase64"}, {"path": "DatabaseSchema.kql", "payload": "Ly8gS1FMIHNjcmlwdA0KLy8gVXNlIG1hbmFnZW1lbnQgY29tbWFuZHMgaW4gdGhpcyBzY3JpcHQgdG8gY29uZmlndXJlIHlvdXIgZGF0YWJhc2UgaXRlbXMsIHN1Y2ggYXMgdGFibGVzLCBmdW5jdGlvbnMsIG1hdGVyaWFsaXplZCB2aWV3cywgYW5kIG1vcmUuDQoNCg0K", "payloadType": "InlineBase64"}]}}' headers: @@ -1015,15 +901,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1033,15 +919,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:03 GMT + - Wed, 09 Sep 2026 12:48:14 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/780990f1-7914-4b7c-8637-28fe6cd32825 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a0c1886a-3d38-4600-9b15-9b60f424ed7e Pragma: - no-cache RequestId: - - cb533bd8-baf5-4266-be98-5bffdab8d2c6 + - a710d898-f162-488f-974b-681bb5b78fe2 Retry-After: - '20' Strict-Transport-Security: @@ -1055,7 +941,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 780990f1-7914-4b7c-8637-28fe6cd32825 + - a0c1886a-3d38-4600-9b15-9b60f424ed7e status: code: 202 message: Accepted @@ -1071,33 +957,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/780990f1-7914-4b7c-8637-28fe6cd32825 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a0c1886a-3d38-4600-9b15-9b60f424ed7e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:52:04.0469374", - "lastUpdatedTimeUtc": "2026-06-15T10:52:13.6782001", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:48:14.4629534", + "lastUpdatedTimeUtc": "2026-09-09T12:48:34.1596552", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:24 GMT + - Wed, 09 Sep 2026 12:48:35 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/780990f1-7914-4b7c-8637-28fe6cd32825/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a0c1886a-3d38-4600-9b15-9b60f424ed7e/result Pragma: - no-cache RequestId: - - 4273ba51-4f55-482d-aded-8e76281382d4 + - 502d117e-0832-4901-b396-02caea7de7ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1105,7 +991,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 780990f1-7914-4b7c-8637-28fe6cd32825 + - a0c1886a-3d38-4600-9b15-9b60f424ed7e status: code: 200 message: OK @@ -1121,16 +1007,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/780990f1-7914-4b7c-8637-28fe6cd32825/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a0c1886a-3d38-4600-9b15-9b60f424ed7e/result response: body: - string: '{"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", - "displayName": "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", + "displayName": "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1138,11 +1024,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:52:26 GMT + - Wed, 09 Sep 2026 12:48:35 GMT Pragma: - no-cache RequestId: - - cb80c429-c819-4b25-8800-a48d2bc0e953 + - 0b0ee1aa-c0a0-4195-b256-6767a248fbc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1166,32 +1052,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:26 GMT + - Wed, 09 Sep 2026 12:48:36 GMT Pragma: - no-cache RequestId: - - 64b05b21-63ae-4e5d-b938-2513ed1f37cb + - 265a4817-a434-45fa-a909-d425edeabdb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1217,61 +1104,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "3ba30607-43bf-4bf7-bbb6-1b18370a419a", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed0c540a-a78b-486b-aedc-e3fc6f790b7b", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '776' + - '540' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:28 GMT + - Wed, 09 Sep 2026 12:48:37 GMT Pragma: - no-cache RequestId: - - 34d9f01f-45f7-48c2-bccb-d44267c8997b + - 8408a6bc-6c7b-4c4e-88d8-668843f34673 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1299,15 +1173,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/3ba30607-43bf-4bf7-bbb6-1b18370a419a + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/ed0c540a-a78b-486b-aedc-e3fc6f790b7b response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1317,11 +1191,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:52:28 GMT + - Wed, 09 Sep 2026 12:48:37 GMT Pragma: - no-cache RequestId: - - 6e99b744-27a7-414b-9d19-914f15c1d5c7 + - 14aa308a-a3d1-4db5-8445-af17556f6a6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml index 6a697df49..ad5bd923d 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:29 GMT + - Wed, 09 Sep 2026 12:48:37 GMT Pragma: - no-cache RequestId: - - bb10d1fe-83bf-4724-a5fd-3504f1aba159 + - c6017795-5927-4972-a270-717f183f34e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,59 +63,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '751' + - '513' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:29 GMT + - Wed, 09 Sep 2026 12:48:38 GMT Pragma: - no-cache RequestId: - - 8aa985d7-9922-4011-aae7-fe9cfe304662 + - 35032b8d-3a0c-4801-b502-89a400c4572e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -140,59 +128,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '751' + - '513' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:31 GMT + - Wed, 09 Sep 2026 12:48:38 GMT Pragma: - no-cache RequestId: - - 758eaf97-9bee-4242-992b-d48568cab32e + - 2f42a909-ceec-40f8-bec0-da1c4ab850ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -220,16 +195,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/kqlQuerysets response: body: - string: '{"id": "687de5ba-bad8-41c1-ab37-c9cf8901bd09", "type": "KQLQueryset", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "d9917813-6c89-4c1b-8ddf-b9e42f2450be", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -239,13 +214,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:33 GMT + - Wed, 09 Sep 2026 12:48:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2b948583-b7a4-41c0-83a3-9fb9549c3dba + - 9d356652-dce8-42c7-8465-01704456a5df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -271,32 +246,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:34 GMT + - Wed, 09 Sep 2026 12:48:41 GMT Pragma: - no-cache RequestId: - - 51d785cc-757b-4cc3-91bb-0edc510073e0 + - 3195ac75-0a8d-4343-b557-15fc9d92c940 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -322,61 +298,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "687de5ba-bad8-41c1-ab37-c9cf8901bd09", "type": "KQLQueryset", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d9917813-6c89-4c1b-8ddf-b9e42f2450be", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '793' + - '557' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:34 GMT + - Wed, 09 Sep 2026 12:48:40 GMT Pragma: - no-cache RequestId: - - 597cbc23-841d-4192-a7c4-f02e7ef95c23 + - 0a0f906b-17e8-4b92-913e-121b877f0736 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -402,16 +365,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/687de5ba-bad8-41c1-ab37-c9cf8901bd09 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/d9917813-6c89-4c1b-8ddf-b9e42f2450be response: body: - string: '{"id": "687de5ba-bad8-41c1-ab37-c9cf8901bd09", "type": "KQLQueryset", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "d9917813-6c89-4c1b-8ddf-b9e42f2450be", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -421,13 +384,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:35 GMT + - Wed, 09 Sep 2026 12:48:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bb3694e2-f1aa-4a62-b6db-0824eda7a6e7 + - a713c755-c5cf-440f-9e0f-a7114f1a742d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -455,9 +418,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/687de5ba-bad8-41c1-ab37-c9cf8901bd09/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/d9917813-6c89-4c1b-8ddf-b9e42f2450be/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": @@ -465,21 +428,21 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '401' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:37 GMT + - Wed, 09 Sep 2026 12:48:42 GMT Pragma: - no-cache RequestId: - - b7a2b853-3154-4b9b-9808-5ed17642453d + - 862c2722-d403-4f68-9906-5129786e040f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -505,32 +468,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:38 GMT + - Wed, 09 Sep 2026 12:48:43 GMT Pragma: - no-cache RequestId: - - 8a6ea5c3-e08b-40e8-a7ed-5983489e3485 + - 81fbd0cc-04b3-4852-a053-2e5d17928419 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,61 +520,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "687de5ba-bad8-41c1-ab37-c9cf8901bd09", "type": "KQLQueryset", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d9917813-6c89-4c1b-8ddf-b9e42f2450be", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '793' + - '557' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:38 GMT + - Wed, 09 Sep 2026 12:48:43 GMT Pragma: - no-cache RequestId: - - 378918da-6eab-4319-8036-a20cd6e701c3 + - 1c76d67f-9692-482d-9b65-72acef4677c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -636,61 +587,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "687de5ba-bad8-41c1-ab37-c9cf8901bd09", "type": "KQLQueryset", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d9917813-6c89-4c1b-8ddf-b9e42f2450be", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '793' + - '557' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:39 GMT + - Wed, 09 Sep 2026 12:48:43 GMT Pragma: - no-cache RequestId: - - 9e647b50-7e0b-4389-be90-3c1789d01f54 + - e5fa2519-645b-4508-b68f-fe1cb9bb681f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,32 +659,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", - "displayName": "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", + "displayName": "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '164' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:41 GMT + - Wed, 09 Sep 2026 12:48:46 GMT ETag: - '""' Pragma: - no-cache RequestId: - - db8f761c-a6f6-4479-8f7a-35571033a97f + - 4ed36fef-07b4-4055-895d-28160a665711 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -772,32 +710,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:42 GMT + - Wed, 09 Sep 2026 12:48:46 GMT Pragma: - no-cache RequestId: - - 6c1c805a-1bb3-4ab1-b1de-38cb8e2af73d + - 152488f4-9eab-4c6a-8317-11e698675492 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -823,63 +762,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "687de5ba-bad8-41c1-ab37-c9cf8901bd09", "type": "KQLQueryset", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d9917813-6c89-4c1b-8ddf-b9e42f2450be", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '821' + - '584' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:52:43 GMT + - Wed, 09 Sep 2026 12:48:46 GMT Pragma: - no-cache RequestId: - - 95b00de7-de72-494a-b247-690f7a27894e + - a49c88f5-0be8-4c24-8011-7f808ecc2d9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -907,15 +833,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/687de5ba-bad8-41c1-ab37-c9cf8901bd09 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/d9917813-6c89-4c1b-8ddf-b9e42f2450be response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -925,11 +851,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:52:44 GMT + - Wed, 09 Sep 2026 12:48:47 GMT Pragma: - no-cache RequestId: - - 128a0bf5-1ae1-49a8-b9a1-1e4d445555b8 + - be0fefff-865a-4d5c-90b8-0ba4cf59e177 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml index a4dfd33fa..67ef3c856 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:28 GMT + - Wed, 09 Sep 2026 12:58:33 GMT Pragma: - no-cache RequestId: - - e8ceb41f-98ae-433b-a741-8df9728e1883 + - b0e4fd91-c939-4057-a615-aca49d39489a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,98 +63,85 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1450' + - '1254' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:28 GMT + - Wed, 09 Sep 2026 12:58:33 GMT Pragma: - no-cache RequestId: - - 8858d3f6-6c6c-496d-8513-cdddcd3c6f58 + - dd671044-49d4-4add-a9fd-78c3c8fb7b67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -179,98 +167,85 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1450' + - '1254' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:29 GMT + - Wed, 09 Sep 2026 12:58:34 GMT Pragma: - no-cache RequestId: - - 60b684f7-07a1-4181-83f2-88fc96915073 + - ae5a99c5-ad77-46e2-8b3f-1cfbb9aa770d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,32 +273,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/lakehouses response: body: - string: '{"id": "43131639-122a-471e-8544-94eccffdd465", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "1cd33cc1-1f33-4377-bb13-d1db3b55e3f4", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '155' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:33 GMT + - Wed, 09 Sep 2026 12:58:37 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d17c5e43-b385-40a4-8b47-e1f6b406c9c5 + - b08b87b5-688d-4f7e-9307-a3bc39c5553b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -349,32 +324,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:34 GMT + - Wed, 09 Sep 2026 12:58:38 GMT Pragma: - no-cache RequestId: - - ed554cdf-2b08-4a91-aa2e-52eba84faeff + - 96bd6657-d28e-4720-a21c-f8cd72c944c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -400,100 +376,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "43131639-122a-471e-8544-94eccffdd465", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "1cd33cc1-1f33-4377-bb13-d1db3b55e3f4", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1485' + - '1286' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:35 GMT + - Wed, 09 Sep 2026 12:58:38 GMT Pragma: - no-cache RequestId: - - 03fd9e55-97cf-41b7-91fb-87676cbd9d13 + - a726cf5d-cda8-4835-ae10-1d315b89bce2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,32 +482,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/43131639-122a-471e-8544-94eccffdd465 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/1cd33cc1-1f33-4377-bb13-d1db3b55e3f4 response: body: - string: '{"id": "43131639-122a-471e-8544-94eccffdd465", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "1cd33cc1-1f33-4377-bb13-d1db3b55e3f4", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '155' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:35 GMT + - Wed, 09 Sep 2026 12:58:38 GMT ETag: - '""' Pragma: - no-cache RequestId: - - aa338a40-f9c2-46fd-ad1c-18bceb7c5893 + - af8c2fd7-cc6b-4d22-a708-d54c74237fb8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -572,9 +535,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/43131639-122a-471e-8544-94eccffdd465/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/1cd33cc1-1f33-4377-bb13-d1db3b55e3f4/getDefinition response: body: string: '{"definition": {"parts": [{"path": "lakehouse.metadata.json", "payload": @@ -585,21 +548,21 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '785' + - '786' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:38 GMT + - Wed, 09 Sep 2026 12:58:40 GMT Pragma: - no-cache RequestId: - - 6a057b47-e0fe-4e82-93f9-efa70270771a + - 614e170e-8f07-470a-a63f-c149fd468f6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -625,32 +588,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:39 GMT + - Wed, 09 Sep 2026 12:58:41 GMT Pragma: - no-cache RequestId: - - d7cb049a-ba43-4a29-9bd1-72b4ca52e241 + - 58662ca2-f45e-4a9d-b98a-4773135ab6d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,102 +640,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "55f06bf8-4140-4775-bf50-2a6dd8393ed1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a79baa8c-46f4-4308-99cb-a6f090a41939", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "43131639-122a-471e-8544-94eccffdd465", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "1cd33cc1-1f33-4377-bb13-d1db3b55e3f4", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1512' + - '1314' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:40 GMT + - Wed, 09 Sep 2026 12:58:42 GMT Pragma: - no-cache RequestId: - - 9de7fd81-e5dd-436c-a727-02a959fc7056 + - 2e0c1201-5052-4f19-b9db-dfa32eef4eaf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -797,102 +748,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "55f06bf8-4140-4775-bf50-2a6dd8393ed1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a79baa8c-46f4-4308-99cb-a6f090a41939", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "43131639-122a-471e-8544-94eccffdd465", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "1cd33cc1-1f33-4377-bb13-d1db3b55e3f4", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1512' + - '1314' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:41 GMT + - Wed, 09 Sep 2026 12:58:41 GMT Pragma: - no-cache RequestId: - - 05ff4181-9217-4511-b66b-9ed67cb12540 + - c794ca2e-a542-429a-9279-8d79f224ecaf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -925,15 +863,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -943,15 +881,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:03:45 GMT + - Wed, 09 Sep 2026 12:58:45 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/994f03da-62cc-45df-b6ca-7638a6572580 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcfdad50-8736-45e0-9106-19026883e44b Pragma: - no-cache RequestId: - - 6b99a14e-8d36-4bdd-a0aa-f9b1822dfff7 + - c2574a05-d936-49b4-845d-d4ea94a97e91 Retry-After: - '20' Strict-Transport-Security: @@ -965,7 +903,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 994f03da-62cc-45df-b6ca-7638a6572580 + - bcfdad50-8736-45e0-9106-19026883e44b status: code: 202 message: Accepted @@ -981,33 +919,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/994f03da-62cc-45df-b6ca-7638a6572580 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcfdad50-8736-45e0-9106-19026883e44b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:03:43.7673062", - "lastUpdatedTimeUtc": "2026-06-15T11:03:48.2664756", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:58:43.4605933", + "lastUpdatedTimeUtc": "2026-09-09T12:58:47.962066", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:06 GMT + - Wed, 09 Sep 2026 12:59:05 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/994f03da-62cc-45df-b6ca-7638a6572580/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcfdad50-8736-45e0-9106-19026883e44b/result Pragma: - no-cache RequestId: - - 26e2a67a-a1fa-470e-aeaa-8584be6e2239 + - b5f824cd-791e-4988-8173-ba23ac888f86 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1015,7 +953,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 994f03da-62cc-45df-b6ca-7638a6572580 + - bcfdad50-8736-45e0-9106-19026883e44b status: code: 200 message: OK @@ -1031,16 +969,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/994f03da-62cc-45df-b6ca-7638a6572580/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcfdad50-8736-45e0-9106-19026883e44b/result response: body: - string: '{"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", "type": "Lakehouse", - "displayName": "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", + "displayName": "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1048,11 +986,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:04:07 GMT + - Wed, 09 Sep 2026 12:59:06 GMT Pragma: - no-cache RequestId: - - 3ef4397d-91b3-4596-8f92-e73e5e23fbd5 + - 8389d282-2f4d-466a-9847-689e9fd80e90 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1076,32 +1014,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:07 GMT + - Wed, 09 Sep 2026 12:59:07 GMT Pragma: - no-cache RequestId: - - 2c1ba612-9535-458f-a1c2-b33db00129e0 + - 53a55ed7-6ca8-47ac-8995-69f0732a19f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1127,106 +1066,93 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "55f06bf8-4140-4775-bf50-2a6dd8393ed1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a79baa8c-46f4-4308-99cb-a6f090a41939", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "43131639-122a-471e-8544-94eccffdd465", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "1cd33cc1-1f33-4377-bb13-d1db3b55e3f4", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1571' + - '1373' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:04:08 GMT + - Wed, 09 Sep 2026 12:59:07 GMT Pragma: - no-cache RequestId: - - 59532aed-c04c-4c4d-ac2a-88762867ea6b + - 924f2885-b6b8-4aef-b9fb-8ac9dcea8ab3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1254,15 +1180,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/43131639-122a-471e-8544-94eccffdd465 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/1cd33cc1-1f33-4377-bb13-d1db3b55e3f4 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1272,11 +1198,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 11:04:09 GMT + - Wed, 09 Sep 2026 12:59:07 GMT Pragma: - no-cache RequestId: - - f80b36dd-78ea-40fb-a1e3-4f85c4b70c53 + - 1cfdf57d-13b8-452c-8a1d-0b792a7a66db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml index 305877123..bff830d08 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:44 GMT + - Wed, 09 Sep 2026 12:49:41 GMT Pragma: - no-cache RequestId: - - 8f1e90ea-230b-4ba3-a046-4b19a2f63e3d + - 638b1675-c32d-4296-9516-ab3465f0db6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,63 +63,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '830' + - '594' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:45 GMT + - Wed, 09 Sep 2026 12:49:41 GMT Pragma: - no-cache RequestId: - - 64471293-ada3-4474-8e8d-4d759338c0c4 + - 23dac889-d59c-4b02-abda-3af92743ee67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -144,63 +132,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '830' + - '594' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:46 GMT + - Wed, 09 Sep 2026 12:49:42 GMT Pragma: - no-cache RequestId: - - 76f24f2e-945b-4eed-bb40-228148b850c6 + - 3d661866-5709-4d4c-8f16-950841f4e56e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -230,16 +205,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/mirroredDatabases response: body: - string: '{"id": "89c5187c-c788-4d8d-b2f0-ff4ea21314cb", "type": "MirroredDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "da3c2dae-df35-4cf0-8c86-2ac385ca4c2f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -249,13 +224,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:53:48 GMT + - Wed, 09 Sep 2026 12:49:47 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d4be822d-f3d4-4df5-9978-9ab5f311a625 + - 853bc776-c9e3-4966-ad5d-eb4c9bd19b2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -281,32 +256,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:48 GMT + - Wed, 09 Sep 2026 12:50:47 GMT Pragma: - no-cache RequestId: - - 199cbdef-8784-40b8-8538-42151a9e806e + - 6281d97c-aeb4-4d6f-bfff-9302d8604c01 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -332,67 +308,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f86886d0-5035-4eca-829d-f05b53bc885e", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "89c5187c-c788-4d8d-b2f0-ff4ea21314cb", "type": "MirroredDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ccabd042-87bf-444c-bedb-24113d8c5c27", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "da3c2dae-df35-4cf0-8c86-2ac385ca4c2f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '900' + - '677' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:50 GMT + - Wed, 09 Sep 2026 12:50:47 GMT Pragma: - no-cache RequestId: - - 75129487-9972-4627-9604-7a4e27ac30fe + - 0ac81fda-0e3a-4cae-9a7b-e46de8b350d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,16 +381,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/89c5187c-c788-4d8d-b2f0-ff4ea21314cb + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/da3c2dae-df35-4cf0-8c86-2ac385ca4c2f response: body: - string: '{"id": "89c5187c-c788-4d8d-b2f0-ff4ea21314cb", "type": "MirroredDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "da3c2dae-df35-4cf0-8c86-2ac385ca4c2f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -437,13 +400,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:50 GMT + - Wed, 09 Sep 2026 12:50:48 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ec847d45-52f5-4907-9c3b-e785ac93bc5c + - bc303ee8-e42c-479e-8c93-6a69e8c5ea7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +434,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/89c5187c-c788-4d8d-b2f0-ff4ea21314cb/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/da3c2dae-df35-4cf0-8c86-2ac385ca4c2f/getDefinition response: body: string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", @@ -481,21 +444,21 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '534' + - '535' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:51 GMT + - Wed, 09 Sep 2026 12:50:49 GMT Pragma: - no-cache RequestId: - - 2fab8fb3-48bc-4db2-8665-5cac2b945b59 + - d455ea01-b8aa-4e51-8eb6-31129cd25288 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -521,32 +484,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:52 GMT + - Wed, 09 Sep 2026 12:50:50 GMT Pragma: - no-cache RequestId: - - a0dd3392-0fee-4642-a8f4-17dc903994dc + - 5730f494-74fd-4225-bdbb-02c90b309b88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -572,67 +536,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f86886d0-5035-4eca-829d-f05b53bc885e", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "89c5187c-c788-4d8d-b2f0-ff4ea21314cb", "type": "MirroredDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ccabd042-87bf-444c-bedb-24113d8c5c27", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "da3c2dae-df35-4cf0-8c86-2ac385ca4c2f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '900' + - '677' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:53 GMT + - Wed, 09 Sep 2026 12:50:50 GMT Pragma: - no-cache RequestId: - - 8927b003-b8d2-4527-b687-682458adad6c + - 5641e79a-536b-4bfd-b3df-73a76ef85302 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -658,67 +609,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f86886d0-5035-4eca-829d-f05b53bc885e", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "89c5187c-c788-4d8d-b2f0-ff4ea21314cb", "type": "MirroredDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ccabd042-87bf-444c-bedb-24113d8c5c27", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "da3c2dae-df35-4cf0-8c86-2ac385ca4c2f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '900' + - '677' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:54 GMT + - Wed, 09 Sep 2026 12:50:51 GMT Pragma: - no-cache RequestId: - - dc9ed283-57cb-45e1-ba34-ebcee0445445 + - 3c507ff6-3c55-4e4a-b120-659d70132ca3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -749,16 +687,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -768,13 +706,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:56 GMT + - Wed, 09 Sep 2026 12:50:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 933f568a-b462-4952-a43b-c1df4f3724a0 + - f903a6e2-8032-4ad1-877d-38d76e167afc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -800,32 +738,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:57 GMT + - Wed, 09 Sep 2026 12:50:54 GMT Pragma: - no-cache RequestId: - - f9f5a52a-cf7f-4ef7-bef8-7ff4b004c280 + - a9a7cf6a-dc95-4b89-8edc-eb31c3dd5579 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -851,69 +790,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f86886d0-5035-4eca-829d-f05b53bc885e", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "89c5187c-c788-4d8d-b2f0-ff4ea21314cb", "type": "MirroredDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ccabd042-87bf-444c-bedb-24113d8c5c27", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "da3c2dae-df35-4cf0-8c86-2ac385ca4c2f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '932' + - '709' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:57 GMT + - Wed, 09 Sep 2026 12:50:54 GMT Pragma: - no-cache RequestId: - - a02a2385-c1b6-4019-922a-bdb789340b1d + - 4a3be0ec-d972-4a90-80e5-4cd1473e20f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -941,15 +867,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/89c5187c-c788-4d8d-b2f0-ff4ea21314cb + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/da3c2dae-df35-4cf0-8c86-2ac385ca4c2f response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -959,11 +885,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:54:58 GMT + - Wed, 09 Sep 2026 12:50:55 GMT Pragma: - no-cache RequestId: - - 0012c08f-2749-4e94-953f-cbafd16d8f41 + - 5323e2f9-0b7f-4e72-986a-8d186780afd4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml index 30c56f202..e8e938a51 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:45:44 GMT + - Wed, 09 Sep 2026 12:42:53 GMT Pragma: - no-cache RequestId: - - 61fa8647-210e-4b59-ac2f-c0e6da49934d + - 76516258-8909-4996-a68e-d845b49b10b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,41 +63,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '370' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:45:44 GMT + - Wed, 09 Sep 2026 12:42:54 GMT Pragma: - no-cache RequestId: - - 5af66397-56f4-4f4e-9ecd-56cd2c470443 + - 4a1597c1-eb71-4476-97fe-86aa6f2fd946 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -122,41 +111,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '370' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:45:44 GMT + - Wed, 09 Sep 2026 12:42:55 GMT Pragma: - no-cache RequestId: - - d01c723e-09db-4aa1-a545-8f7d40abb5c7 + - 6202738c-a287-4af6-a9f0-000a1fb4e637 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -186,15 +163,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/notebooks response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -204,15 +181,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:45:47 GMT + - Wed, 09 Sep 2026 12:42:56 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fb9933a3-18fa-49ba-b62d-35ba1c611a2b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ed3fc6d5-c862-4b15-a860-f64d2900d7f1 Pragma: - no-cache RequestId: - - 8650fdec-531d-409a-a8c0-5b0b618493d9 + - 7fdc1468-d31f-4104-8737-847dcaf54453 Retry-After: - '20' Strict-Transport-Security: @@ -226,7 +203,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - fb9933a3-18fa-49ba-b62d-35ba1c611a2b + - ed3fc6d5-c862-4b15-a860-f64d2900d7f1 status: code: 202 message: Accepted @@ -242,33 +219,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fb9933a3-18fa-49ba-b62d-35ba1c611a2b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ed3fc6d5-c862-4b15-a860-f64d2900d7f1 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:45:46.5555525", - "lastUpdatedTimeUtc": "2026-06-15T10:45:47.4311545", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:42:56.0761064", + "lastUpdatedTimeUtc": "2026-09-09T12:42:57.6301225", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '129' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:07 GMT + - Wed, 09 Sep 2026 12:43:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fb9933a3-18fa-49ba-b62d-35ba1c611a2b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ed3fc6d5-c862-4b15-a860-f64d2900d7f1/result Pragma: - no-cache RequestId: - - 747d4ec5-525a-4f4f-9d60-0fbac58eb634 + - a07e744c-8709-4413-a11c-7b42f6a66d4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -276,7 +253,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - fb9933a3-18fa-49ba-b62d-35ba1c611a2b + - ed3fc6d5-c862-4b15-a860-f64d2900d7f1 status: code: 200 message: OK @@ -292,16 +269,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fb9933a3-18fa-49ba-b62d-35ba1c611a2b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ed3fc6d5-c862-4b15-a860-f64d2900d7f1/result response: body: - string: '{"id": "186a68a9-a70b-4c9f-a018-1d2476cea252", "type": "Notebook", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "8327303d-df7c-4118-b0b0-81d5bbe4cff5", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -309,11 +286,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:46:08 GMT + - Wed, 09 Sep 2026 12:43:17 GMT Pragma: - no-cache RequestId: - - a353ca60-6b28-4bc5-b19f-afddb477705b + - 0abd3503-d233-4459-99a1-84a6fc658015 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -337,32 +314,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:09 GMT + - Wed, 09 Sep 2026 12:43:18 GMT Pragma: - no-cache RequestId: - - aa1ed76f-be06-4a85-ac58-f434c35b7a35 + - d1532c21-5fe1-4698-a0eb-858aa5dd0cc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -388,43 +366,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "186a68a9-a70b-4c9f-a018-1d2476cea252", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "8327303d-df7c-4118-b0b0-81d5bbe4cff5", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '414' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:10 GMT + - Wed, 09 Sep 2026 12:43:18 GMT Pragma: - no-cache RequestId: - - c509c133-0d7c-406c-ad9e-b30499fa8b3d + - f027be27-9b17-45ca-8507-cee901e9163e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -450,16 +415,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/186a68a9-a70b-4c9f-a018-1d2476cea252 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/8327303d-df7c-4118-b0b0-81d5bbe4cff5 response: body: - string: '{"id": "186a68a9-a70b-4c9f-a018-1d2476cea252", "type": "Notebook", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "8327303d-df7c-4118-b0b0-81d5bbe4cff5", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -469,13 +434,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:10 GMT + - Wed, 09 Sep 2026 12:43:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 42098350-9102-492d-9331-13d437a553ca + - 0671c469-0353-475b-9bae-c98e50f72977 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -503,15 +468,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/186a68a9-a70b-4c9f-a018-1d2476cea252/getDefinition?format=ipynb + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/8327303d-df7c-4118-b0b0-81d5bbe4cff5/getDefinition?format=ipynb response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -521,13 +486,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:11 GMT + - Wed, 09 Sep 2026 12:43:19 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3962eaad-31ae-4965-a786-a89235cd4709 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e1a363-3429-4f33-b386-9e16b3a4b41c Pragma: - no-cache RequestId: - - 0748d86e-c8bf-4f34-b22b-432963654f75 + - 7a053648-3070-4d29-87e8-e090705590fb Retry-After: - '20' Strict-Transport-Security: @@ -541,7 +506,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3962eaad-31ae-4965-a786-a89235cd4709 + - 38e1a363-3429-4f33-b386-9e16b3a4b41c status: code: 202 message: Accepted @@ -557,33 +522,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3962eaad-31ae-4965-a786-a89235cd4709 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e1a363-3429-4f33-b386-9e16b3a4b41c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:46:12.2799019", - "lastUpdatedTimeUtc": "2026-06-15T10:46:13.0551854", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:43:19.7948624", + "lastUpdatedTimeUtc": "2026-09-09T12:43:20.162872", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:33 GMT + - Wed, 09 Sep 2026 12:43:40 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3962eaad-31ae-4965-a786-a89235cd4709/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e1a363-3429-4f33-b386-9e16b3a4b41c/result Pragma: - no-cache RequestId: - - b4402951-8ece-46d1-9c37-02f842f1174f + - 10bcfe63-f3a5-4fc6-b63e-7c3fd4ace0d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -591,7 +556,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3962eaad-31ae-4965-a786-a89235cd4709 + - 38e1a363-3429-4f33-b386-9e16b3a4b41c status: code: 200 message: OK @@ -607,18 +572,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3962eaad-31ae-4965-a786-a89235cd4709/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e1a363-3429-4f33-b386-9e16b3a4b41c/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.ipynb", "payload": - "eyJuYmZvcm1hdCI6NCwibmJmb3JtYXRfbWlub3IiOjUsIm1ldGFkYXRhIjp7Imxhbmd1YWdlX2luZm8iOnsibmFtZSI6InB5dGhvbiJ9LCJrZXJuZWxfaW5mbyI6eyJuYW1lIjoic3luYXBzZV9weXNwYXJrIiwianVweXRlcl9rZXJuZWxfbmFtZSI6bnVsbH0sImEzNjVDb21wdXRlT3B0aW9ucyI6bnVsbCwic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOjAsImRlcGVuZGVuY2llcyI6eyJsYWtlaG91c2UiOm51bGx9fSwiY2VsbHMiOlt7ImNlbGxfdHlwZSI6ImNvZGUiLCJtZXRhZGF0YSI6eyJtaWNyb3NvZnQiOnsibGFuZ3VhZ2UiOiJweXRob24iLCJsYW5ndWFnZV9ncm91cCI6InN5bmFwc2VfcHlzcGFyayJ9fSwic291cmNlIjpbIiMgV2VsY29tZSB0byB5b3VyIG5ldyBub3RlYm9va1xuIiwiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIl0sIm91dHB1dHMiOltdfV19", + "eyJuYmZvcm1hdCI6NCwibmJmb3JtYXRfbWlub3IiOjUsIm1ldGFkYXRhIjp7ImRlcGVuZGVuY2llcyI6eyJsYWtlaG91c2UiOm51bGx9LCJsYW5ndWFnZV9pbmZvIjp7Im5hbWUiOiJweXRob24ifSwia2VybmVsX2luZm8iOnsibmFtZSI6InN5bmFwc2VfcHlzcGFyayIsImp1cHl0ZXJfa2VybmVsX25hbWUiOm51bGx9LCJhMzY1Q29tcHV0ZU9wdGlvbnMiOm51bGwsInNlc3Npb25LZWVwQWxpdmVUaW1lb3V0IjowfSwiY2VsbHMiOlt7ImNlbGxfdHlwZSI6ImNvZGUiLCJtZXRhZGF0YSI6eyJtaWNyb3NvZnQiOnsibGFuZ3VhZ2UiOiJweXRob24iLCJsYW5ndWFnZV9ncm91cCI6InN5bmFwc2VfcHlzcGFyayJ9fSwic291cmNlIjpbIiMgV2VsY29tZSB0byB5b3VyIG5ldyBub3RlYm9va1xuIiwiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIl0sIm91dHB1dHMiOltdfV19", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -626,11 +591,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:46:33 GMT + - Wed, 09 Sep 2026 12:43:40 GMT Pragma: - no-cache RequestId: - - 55bf5f37-8aca-4cee-843c-fc519c352368 + - 6ad62f87-cde6-443e-b8f4-f288a4cc200e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -654,32 +619,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:34 GMT + - Wed, 09 Sep 2026 12:43:40 GMT Pragma: - no-cache RequestId: - - 71d5a587-9bae-4f8e-9439-fb9e725ce7c8 + - 437040b1-a91d-448d-84e2-793501bc5658 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -705,43 +671,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "186a68a9-a70b-4c9f-a018-1d2476cea252", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "8327303d-df7c-4118-b0b0-81d5bbe4cff5", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '414' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:36 GMT + - Wed, 09 Sep 2026 12:43:41 GMT Pragma: - no-cache RequestId: - - 0b0e5c65-7742-4537-9361-7d8b3cfec8ae + - cf23437b-9d67-4ded-ac48-020136a1676f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -767,43 +720,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "186a68a9-a70b-4c9f-a018-1d2476cea252", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "8327303d-df7c-4118-b0b0-81d5bbe4cff5", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '414' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:36 GMT + - Wed, 09 Sep 2026 12:43:42 GMT Pragma: - no-cache RequestId: - - 3d77fbea-cb1c-4d68-a13c-4bfd703cbd08 + - cc2a1d1e-2592-41be-b7f3-a61380e9775e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -821,7 +761,7 @@ interactions: body: '{"type": "Notebook", "folderId": null, "displayName": "fabcli000001_new_2", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}, {"path": "notebook-content.ipynb", "payload": - "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImxhbmd1YWdlX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInB5dGhvbiIKICAgICAgICB9LAogICAgICAgICJrZXJuZWxfaW5mbyI6IHsKICAgICAgICAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIiwKICAgICAgICAgICAgImp1cHl0ZXJfa2VybmVsX25hbWUiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAiYTM2NUNvbXB1dGVPcHRpb25zIjogbnVsbCwKICAgICAgICAic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOiAwLAogICAgICAgICJkZXBlbmRlbmNpZXMiOiB7CiAgICAgICAgICAgICJsYWtlaG91c2UiOiBudWxsCiAgICAgICAgfQogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", + "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImRlcGVuZGVuY2llcyI6IHsKICAgICAgICAgICAgImxha2Vob3VzZSI6IG51bGwKICAgICAgICB9LAogICAgICAgICJsYW5ndWFnZV9pbmZvIjogewogICAgICAgICAgICAibmFtZSI6ICJweXRob24iCiAgICAgICAgfSwKICAgICAgICAia2VybmVsX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInN5bmFwc2VfcHlzcGFyayIsCiAgICAgICAgICAgICJqdXB5dGVyX2tlcm5lbF9uYW1lIjogbnVsbAogICAgICAgIH0sCiAgICAgICAgImEzNjVDb21wdXRlT3B0aW9ucyI6IG51bGwsCiAgICAgICAgInNlc3Npb25LZWVwQWxpdmVUaW1lb3V0IjogMAogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", "payloadType": "InlineBase64"}], "format": "ipynb"}}' headers: Accept: @@ -835,15 +775,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -853,15 +793,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:38 GMT + - Wed, 09 Sep 2026 12:43:43 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37a9c631-92a3-4d2e-8ff4-4dacc92b60e6 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/168f676f-46cb-4e17-838f-6ecf7bc6d60b Pragma: - no-cache RequestId: - - 8338ec57-8d72-40ec-a9a2-538f846f20ed + - de9fd695-bd82-4799-8c9a-c38133107e77 Retry-After: - '20' Strict-Transport-Security: @@ -875,7 +815,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 37a9c631-92a3-4d2e-8ff4-4dacc92b60e6 + - 168f676f-46cb-4e17-838f-6ecf7bc6d60b status: code: 202 message: Accepted @@ -891,33 +831,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37a9c631-92a3-4d2e-8ff4-4dacc92b60e6 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/168f676f-46cb-4e17-838f-6ecf7bc6d60b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:46:37.940322", - "lastUpdatedTimeUtc": "2026-06-15T10:46:39.2215536", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:43:43.309226", + "lastUpdatedTimeUtc": "2026-09-09T12:43:44.578104", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:46:58 GMT + - Wed, 09 Sep 2026 12:44:03 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37a9c631-92a3-4d2e-8ff4-4dacc92b60e6/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/168f676f-46cb-4e17-838f-6ecf7bc6d60b/result Pragma: - no-cache RequestId: - - 4d2f6826-9b7a-43da-b7ce-1cfb0a2622f9 + - ffbb71c8-da45-48cd-a675-a8501beb4975 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -925,7 +865,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 37a9c631-92a3-4d2e-8ff4-4dacc92b60e6 + - 168f676f-46cb-4e17-838f-6ecf7bc6d60b status: code: 200 message: OK @@ -941,16 +881,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37a9c631-92a3-4d2e-8ff4-4dacc92b60e6/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/168f676f-46cb-4e17-838f-6ecf7bc6d60b/result response: body: - string: '{"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", "type": "Notebook", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -958,11 +898,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:46:59 GMT + - Wed, 09 Sep 2026 12:44:04 GMT Pragma: - no-cache RequestId: - - c22858c2-42ce-48d7-99ad-1a4f4a0d0ed0 + - e9ce4f0f-21de-417b-bda1-cf0d1a69d013 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -986,32 +926,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:01 GMT + - Wed, 09 Sep 2026 12:44:04 GMT Pragma: - no-cache RequestId: - - f463b821-3193-42af-af43-c445ee77fb15 + - 28086257-fd4d-498f-a825-b24a8136a884 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1037,45 +978,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "186a68a9-a70b-4c9f-a018-1d2476cea252", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "8327303d-df7c-4118-b0b0-81d5bbe4cff5", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '446' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:03 GMT + - Wed, 09 Sep 2026 12:44:05 GMT Pragma: - no-cache RequestId: - - 6b52af7d-22d8-4ae3-bda2-5f4a979847d5 + - a3d68940-707c-4255-a2e4-a462c845412b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1103,15 +1031,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/186a68a9-a70b-4c9f-a018-1d2476cea252 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/8327303d-df7c-4118-b0b0-81d5bbe4cff5 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1121,11 +1049,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:47:03 GMT + - Wed, 09 Sep 2026 12:44:06 GMT Pragma: - no-cache RequestId: - - f4b0c64e-f6ef-45f1-bd84-af85f0cc29c5 + - afcef37d-7a69-4f84-b37c-82aedcbd23b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Ontology].yaml new file mode 100644 index 000000000..22ed9db29 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Ontology].yaml @@ -0,0 +1,1494 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:38 GMT + Pragma: + - no-cache + RequestId: + - 6add1569-b65c-4dfb-983e-317af1f04922 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1412' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:38 GMT + Pragma: + - no-cache + RequestId: + - ec4db5c2-ea24-4eca-9643-8285b07f10b9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1412' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:39 GMT + Pragma: + - no-cache + RequestId: + - e6e81f9c-dd0a-4cbc-bc4e-875f621007a4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:01:42 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b262da32-2a2e-449c-bea5-134a77586648 + Pragma: + - no-cache + RequestId: + - a7795407-7f60-45cb-89e2-0f8b8f01c046 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - b262da32-2a2e-449c-bea5-134a77586648 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b262da32-2a2e-449c-bea5-134a77586648 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T13:01:40.6327404", + "lastUpdatedTimeUtc": "2026-09-09T13:01:40.6327404", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b262da32-2a2e-449c-bea5-134a77586648 + Pragma: + - no-cache + RequestId: + - d6dc3952-20ac-43b3-9184-edf197eaecab + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b262da32-2a2e-449c-bea5-134a77586648 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b262da32-2a2e-449c-bea5-134a77586648 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:01:40.6327404", + "lastUpdatedTimeUtc": "2026-09-09T13:02:18.8413794", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:23 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b262da32-2a2e-449c-bea5-134a77586648/result + Pragma: + - no-cache + RequestId: + - 4bc9548b-2bb0-41a6-b872-0667884a77e8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b262da32-2a2e-449c-bea5-134a77586648 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b262da32-2a2e-449c-bea5-134a77586648/result + response: + body: + string: '{"id": "db781e8a-6f88-4a99-a899-5529e6e1be8a", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:02:23 GMT + Pragma: + - no-cache + RequestId: + - e710f956-bcf2-4632-a3a7-55097da8553f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:23 GMT + Pragma: + - no-cache + RequestId: + - fad005b8-cfbd-4266-a891-ca0178de9656 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c4112ee-bfdc-4b77-affa-d57b856fec93", "type": "SQLEndpoint", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "db781e8a-6f88-4a99-a899-5529e6e1be8a", "type": "Ontology", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e46ac97c-b016-44f2-ab15-5001780823f6", "type": "Lakehouse", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "955fa59b-abdb-4860-af7d-b1c89956af22", + "type": "GraphModel", "displayName": "fabcli000001_graph_db781e8a6f884a99a8995529e6e1be8a", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1568' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:24 GMT + Pragma: + - no-cache + RequestId: + - acb3e984-5e79-4606-ab62-a23002e5648e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/db781e8a-6f88-4a99-a899-5529e6e1be8a + response: + body: + string: '{"id": "db781e8a-6f88-4a99-a899-5529e6e1be8a", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:25 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 38ae9950-2476-4d0f-a7d7-2f360d8a0c04 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/db781e8a-6f88-4a99-a899-5529e6e1be8a/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '385' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:26 GMT + Pragma: + - no-cache + RequestId: + - 93fa1688-c60b-45aa-9c8d-09b1d45a818f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:26 GMT + Pragma: + - no-cache + RequestId: + - 198a171c-e667-453b-8ecc-a26c2fb5d692 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c4112ee-bfdc-4b77-affa-d57b856fec93", "type": "SQLEndpoint", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "db781e8a-6f88-4a99-a899-5529e6e1be8a", "type": "Ontology", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e46ac97c-b016-44f2-ab15-5001780823f6", "type": "Lakehouse", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "955fa59b-abdb-4860-af7d-b1c89956af22", + "type": "GraphModel", "displayName": "fabcli000001_graph_db781e8a6f884a99a8995529e6e1be8a", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1568' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:27 GMT + Pragma: + - no-cache + RequestId: + - 6ae88f49-3b36-40ce-95ac-6e73747fba4c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c4112ee-bfdc-4b77-affa-d57b856fec93", "type": "SQLEndpoint", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "db781e8a-6f88-4a99-a899-5529e6e1be8a", "type": "Ontology", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e46ac97c-b016-44f2-ab15-5001780823f6", "type": "Lakehouse", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "955fa59b-abdb-4860-af7d-b1c89956af22", + "type": "GraphModel", "displayName": "fabcli000001_graph_db781e8a6f884a99a8995529e6e1be8a", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1568' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:27 GMT + Pragma: + - no-cache + RequestId: + - 8b7f420e-7600-425d-9a2c-15de5b81eae7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"type": "Ontology", "folderId": null, "displayName": "fabcli000001_new_21", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiT250b2xvZ3kiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '695' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:02:49 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36312b88-a8f4-4aaa-abb3-58283c546700 + Pragma: + - no-cache + RequestId: + - 6bf05018-a238-4792-9ea9-8b7706a5abdf + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 36312b88-a8f4-4aaa-abb3-58283c546700 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36312b88-a8f4-4aaa-abb3-58283c546700 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T13:02:29.0434042", + "lastUpdatedTimeUtc": "2026-09-09T13:02:29.0434042", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:03:09 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36312b88-a8f4-4aaa-abb3-58283c546700 + Pragma: + - no-cache + RequestId: + - 5559a024-9151-48f3-8f2c-69a96eb531ed + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 36312b88-a8f4-4aaa-abb3-58283c546700 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36312b88-a8f4-4aaa-abb3-58283c546700 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:02:29.0434042", + "lastUpdatedTimeUtc": "2026-09-09T13:03:29.2661941", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:03:30 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36312b88-a8f4-4aaa-abb3-58283c546700/result + Pragma: + - no-cache + RequestId: + - c753d619-c6d9-4560-955b-0a0b3ce82446 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 36312b88-a8f4-4aaa-abb3-58283c546700 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36312b88-a8f4-4aaa-abb3-58283c546700/result + response: + body: + string: '{"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", + "displayName": "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:03:31 GMT + Pragma: + - no-cache + RequestId: + - 31a0681b-002a-4b1b-b95f-ff113c2e8a93 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:03:31 GMT + Pragma: + - no-cache + RequestId: + - e721ed32-5f19-4357-b1f5-a3ada2f0629e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c4112ee-bfdc-4b77-affa-d57b856fec93", "type": "SQLEndpoint", "displayName": + "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", + "type": "SQLEndpoint", "displayName": "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "db781e8a-6f88-4a99-a899-5529e6e1be8a", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e46ac97c-b016-44f2-ab15-5001780823f6", + "type": "Lakehouse", "displayName": "fabcli000001_lh_db781e8a6f884a99a8995529e6e1be8a", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "955fa59b-abdb-4860-af7d-b1c89956af22", "type": "GraphModel", "displayName": + "fabcli000001_graph_db781e8a6f884a99a8995529e6e1be8a", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", + "type": "Ontology", "displayName": "fabcli000001_new_21", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", + "type": "Lakehouse", "displayName": "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2846102d-cdaa-42a6-924c-8864141e2795", "type": "GraphModel", "displayName": + "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1710' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:03:32 GMT + Pragma: + - no-cache + RequestId: + - a0f4b1b2-476c-4582-ae1a-98c7131fcfa2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/db781e8a-6f88-4a99-a899-5529e6e1be8a + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 13:03:33 GMT + Pragma: + - no-cache + RequestId: + - f9f4b91a-881c-4d39-85f3-e5bf1e6345d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml index a2e57d5e7..01f4c0fc5 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:54:59 GMT + - Wed, 09 Sep 2026 12:50:55 GMT Pragma: - no-cache RequestId: - - 534d665a-615f-4d29-82e0-c624d1b0ad31 + - 2b0dc432-ff62-4574-ac36-e23642ca8050 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,67 +63,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '905' + - '641' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:00 GMT + - Wed, 09 Sep 2026 12:50:56 GMT Pragma: - no-cache RequestId: - - ba423869-3257-441c-ba11-06bbfbe84bf9 + - 278f1e59-26c8-4654-9e51-6127ed8051e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -148,67 +134,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '905' + - '641' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:01 GMT + - Wed, 09 Sep 2026 12:50:56 GMT Pragma: - no-cache RequestId: - - 93568d1a-a2a6-4042-af14-32be41029074 + - 8dadc006-e66d-45d9-b1fc-e17635df7dad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -236,32 +207,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/reflexes response: body: - string: '{"id": "f235ab89-f3ff-4478-b2b7-1ba4691584e5", "type": "Reflex", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '155' + - '152' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:04 GMT + - Wed, 09 Sep 2026 12:51:00 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7385e8be-423e-4dd9-84e3-69f3feb8f2c2 + - c7260455-1d78-479f-9a88-d6c1f61d256b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -287,32 +258,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:04 GMT + - Wed, 09 Sep 2026 12:51:00 GMT Pragma: - no-cache RequestId: - - d494e428-3140-4208-9fb7-1d456f56307b + - d990851b-7ef9-4401-8af6-96e01b7539b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -338,69 +310,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f235ab89-f3ff-4478-b2b7-1ba4691584e5", "type": "Reflex", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '946' + - '719' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:06 GMT + - Wed, 09 Sep 2026 12:51:01 GMT Pragma: - no-cache RequestId: - - b836a666-f503-4c39-bf70-ed5d907736da + - ade328f7-1e8c-4a6b-8fdb-4bbc79c3958b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -426,32 +385,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/f235ab89-f3ff-4478-b2b7-1ba4691584e5 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23 response: body: - string: '{"id": "f235ab89-f3ff-4478-b2b7-1ba4691584e5", "type": "Reflex", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '155' + - '152' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:06 GMT + - Wed, 09 Sep 2026 12:51:01 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 923e7067-d917-4410-8e78-c844f0ae8159 + - 33d63fed-0afe-41ce-b6da-e0516221ae0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -479,9 +438,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/f235ab89-f3ff-4478-b2b7-1ba4691584e5/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23/getDefinition response: body: string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload": @@ -489,7 +448,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -499,11 +458,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:09 GMT + - Wed, 09 Sep 2026 12:51:05 GMT Pragma: - no-cache RequestId: - - abd22771-c058-403c-9588-4e6b6d456dbb + - b43574f5-7faf-4cee-a91e-9aeea7f07299 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -529,32 +488,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:09 GMT + - Wed, 09 Sep 2026 12:51:05 GMT Pragma: - no-cache RequestId: - - d5fbdba2-3d48-4454-aa82-aa0bb40365d6 + - 34a8d577-c7af-41cf-8043-ef6ae90204b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -580,69 +540,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f235ab89-f3ff-4478-b2b7-1ba4691584e5", "type": "Reflex", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '946' + - '719' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:10 GMT + - Wed, 09 Sep 2026 12:51:06 GMT Pragma: - no-cache RequestId: - - bf5db5ff-092f-47ee-851a-a81ac66e62bf + - 255d3e66-c26d-4fc3-92d6-8fb0f24223e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,69 +615,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f235ab89-f3ff-4478-b2b7-1ba4691584e5", "type": "Reflex", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '946' + - '719' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:11 GMT + - Wed, 09 Sep 2026 12:51:06 GMT Pragma: - no-cache RequestId: - - 79591c12-f485-45d9-a6af-042f49e7e62c + - e636f272-d6a4-4c8e-80f8-aa058cb3b24b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -761,16 +695,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -780,13 +714,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:16 GMT + - Wed, 09 Sep 2026 12:51:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 59f2abc5-6750-442f-9306-8ae990851faa + - 5c288574-7691-46ca-88da-918e625c5b1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -812,32 +746,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:16 GMT + - Wed, 09 Sep 2026 12:51:11 GMT Pragma: - no-cache RequestId: - - d3aa1ffc-0384-48d1-9463-a54b07cf3564 + - dbac69e3-18d9-46a8-a176-26bb22c80c90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -863,71 +798,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f235ab89-f3ff-4478-b2b7-1ba4691584e5", "type": "Reflex", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '977' + - '753' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:17 GMT + - Wed, 09 Sep 2026 12:51:11 GMT Pragma: - no-cache RequestId: - - 85531fd5-462f-41ef-ada2-7520a1885e09 + - c0bd6fa9-6472-4ba8-a5ff-8e378ce2fb03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -955,15 +877,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/f235ab89-f3ff-4478-b2b7-1ba4691584e5 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/7a0e5e7c-10ce-4adb-94bf-d3fc0b8c4f23 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -973,11 +895,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:55:19 GMT + - Wed, 09 Sep 2026 12:51:12 GMT Pragma: - no-cache RequestId: - - 5c4054e1-e9b6-4979-81fb-85afca119f54 + - b9e88409-6872-492e-8095-bf4e2a92397e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml index f463e7da4..bb51e7be6 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:41 GMT + - Wed, 09 Sep 2026 12:44:30 GMT Pragma: - no-cache RequestId: - - cde1a382-aba3-4274-9424-fef6b225953f + - 92d024a7-b73e-4cfc-a5da-544219803322 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,47 +63,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '520' + - '281' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:42 GMT + - Wed, 09 Sep 2026 12:44:30 GMT Pragma: - no-cache RequestId: - - 8fd62bbc-62a7-4b4f-a9b9-2692e8589092 + - 3899a91d-0233-4691-bb40-5f893f763917 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -128,47 +116,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '520' + - '281' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:43 GMT + - Wed, 09 Sep 2026 12:44:32 GMT Pragma: - no-cache RequestId: - - b918aa3b-fd98-469b-a14d-2c8f7404e9cb + - 3b9973e9-fccb-46e7-a2f3-43a0b0f9c506 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -184,13 +159,13 @@ interactions: message: OK - request: body: '{"displayName": "fabcli000001_auto", "type": "SemanticModel", "folderId": - null, "definition": {"parts": [{"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": - "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", + null, "definition": {"parts": [{"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, - {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", + {"path": "definition/model.tmdl", "payload": "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", + "payloadType": "InlineBase64"}, {"path": "definition/tables/Table.tmdl", "payload": + "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -204,15 +179,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/semanticModels response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -222,13 +197,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:43 GMT + - Wed, 09 Sep 2026 12:44:32 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d419d960-afa8-455b-84e2-2ca4e376dc59 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fbec7619-5a95-4337-b447-d40c63431d65 Pragma: - no-cache RequestId: - - 7a3541f9-6f34-453b-8917-b07af47cf0da + - 072310e1-7df0-4972-bf32-46122ff9cffc Retry-After: - '20' Strict-Transport-Security: @@ -242,7 +217,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d419d960-afa8-455b-84e2-2ca4e376dc59 + - fbec7619-5a95-4337-b447-d40c63431d65 status: code: 202 message: Accepted @@ -258,33 +233,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d419d960-afa8-455b-84e2-2ca4e376dc59 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fbec7619-5a95-4337-b447-d40c63431d65 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:47:43.8755204", - "lastUpdatedTimeUtc": "2026-06-15T10:47:54.6233966", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:44:32.7910812", + "lastUpdatedTimeUtc": "2026-09-09T12:44:43.7307037", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:04 GMT + - Wed, 09 Sep 2026 12:44:53 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d419d960-afa8-455b-84e2-2ca4e376dc59/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fbec7619-5a95-4337-b447-d40c63431d65/result Pragma: - no-cache RequestId: - - 83379287-0cdb-47cd-9b42-ac0ed5f11312 + - a1e39a2c-065c-4d2d-bcc2-d1edb83b383a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +267,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d419d960-afa8-455b-84e2-2ca4e376dc59 + - fbec7619-5a95-4337-b447-d40c63431d65 status: code: 200 message: OK @@ -308,16 +283,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d419d960-afa8-455b-84e2-2ca4e376dc59/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fbec7619-5a95-4337-b447-d40c63431d65/result response: body: - string: '{"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -325,11 +300,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:48:05 GMT + - Wed, 09 Sep 2026 12:44:53 GMT Pragma: - no-cache RequestId: - - f9176c6b-7858-4f1d-bb4e-13880445fa4a + - 96d5dc1d-a561-4fcc-996b-74df3bef134b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -343,18 +318,18 @@ interactions: message: OK - request: body: '{"displayName": "fabcli000001", "type": "Report", "folderId": null, "definition": - {"parts": [{"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICJhYzVmZmEwMS1hNzdjLTQzZGUtOWZkYy1kNTBiNjBjODZhODkiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiQmxhbmsiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", - "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", - "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3ZlcnNpb25NZXRhZGF0YS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiMi4wLjAiCn0=", + {"parts": [{"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiQmxhbmsiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICI4ZjA3ODMxOC03MzUwLTQ2YTUtOTZlYS1hODM5ZTFiYTI0NGUiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3JlcG9ydC8xLjIuMC9zY2hlbWEuanNvbiIsCiAgInRoZW1lQ29sbGVjdGlvbiI6IHsKICAgICJiYXNlVGhlbWUiOiB7CiAgICAgICJuYW1lIjogIkNZMjRTVTEwIiwKICAgICAgInJlcG9ydFZlcnNpb25BdEltcG9ydCI6ICI1LjYxIiwKICAgICAgInR5cGUiOiAiU2hhcmVkUmVzb3VyY2VzIgogICAgfQogIH0sCiAgImxheW91dE9wdGltaXphdGlvbiI6ICJOb25lIiwKICAib2JqZWN0cyI6IHsKICAgICJzZWN0aW9uIjogWwogICAgICB7CiAgICAgICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgICAidmVydGljYWxBbGlnbm1lbnQiOiB7CiAgICAgICAgICAgICJleHByIjogewogICAgICAgICAgICAgICJMaXRlcmFsIjogewogICAgICAgICAgICAgICAgIlZhbHVlIjogIidUb3AnIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfQogICAgICAgICAgfQogICAgICAgIH0KICAgICAgfQogICAgXQogIH0sCiAgInJlc291cmNlUGFja2FnZXMiOiBbCiAgICB7CiAgICAgICJuYW1lIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJ0eXBlIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAibmFtZSI6ICJDWTI0U1UxMCIsCiAgICAgICAgICAicGF0aCI6ICJCYXNlVGhlbWVzL0NZMjRTVTEwLmpzb24iLAogICAgICAgICAgInR5cGUiOiAiQmFzZVRoZW1lIgogICAgICAgIH0KICAgICAgXQogICAgfQogIF0sCiAgInNldHRpbmdzIjogewogICAgInVzZVN0eWxhYmxlVmlzdWFsQ29udGFpbmVySGVhZGVyIjogdHJ1ZSwKICAgICJkZWZhdWx0RHJpbGxGaWx0ZXJPdGhlclZpc3VhbHMiOiB0cnVlLAogICAgImFsbG93Q2hhbmdlRmlsdGVyVHlwZXMiOiB0cnVlLAogICAgInVzZUVuaGFuY2VkVG9vbHRpcHMiOiB0cnVlLAogICAgInVzZURlZmF1bHRBZ2dyZWdhdGVEaXNwbGF5TmFtZSI6IHRydWUKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": + "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3ZlcnNpb25NZXRhZGF0YS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiMi4wLjAiCn0=", "payloadType": "InlineBase64"}, {"path": "definition/pages/pages.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2VzTWV0YWRhdGEvMS4wLjAvc2NoZW1hLmpzb24iLAogICJwYWdlT3JkZXIiOiBbCiAgICAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCiAgXSwKICAiYWN0aXZlUGFnZU5hbWUiOiAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCn0=", "payloadType": "InlineBase64"}, {"path": "definition/pages/b8c5fb8d635f898326c6/page.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2UvMS4zLjAvc2NoZW1hLmpzb24iLAogICJuYW1lIjogImI4YzVmYjhkNjM1Zjg5ODMyNmM2IiwKICAiZGlzcGxheU5hbWUiOiAiUGFnZSAxIiwKICAiZGlzcGxheU9wdGlvbiI6ICJGaXRUb1BhZ2UiLAogICJoZWlnaHQiOiA3MjAsCiAgIndpZHRoIjogMTI4MAp9", + "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", + "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -368,15 +343,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/reports + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/reports response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -386,13 +361,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:06 GMT + - Wed, 09 Sep 2026 12:44:55 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaa432d5-a97f-4a04-9165-ff498f912a99 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8473f298-b1ef-402e-8cc2-4558eb8bad60 Pragma: - no-cache RequestId: - - 9e7fdb4b-376a-4c11-8654-c21daf5f0240 + - 16217b54-5a54-42cf-8986-ce5d0a92b1fa Retry-After: - '20' Strict-Transport-Security: @@ -406,7 +381,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - eaa432d5-a97f-4a04-9165-ff498f912a99 + - 8473f298-b1ef-402e-8cc2-4558eb8bad60 status: code: 202 message: Accepted @@ -422,33 +397,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaa432d5-a97f-4a04-9165-ff498f912a99 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8473f298-b1ef-402e-8cc2-4558eb8bad60 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:48:06.8917529", - "lastUpdatedTimeUtc": "2026-06-15T10:48:07.2274773", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:44:55.5948172", + "lastUpdatedTimeUtc": "2026-09-09T12:44:56.0152807", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:27 GMT + - Wed, 09 Sep 2026 12:45:15 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaa432d5-a97f-4a04-9165-ff498f912a99/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8473f298-b1ef-402e-8cc2-4558eb8bad60/result Pragma: - no-cache RequestId: - - dcb4a237-7a85-454b-9a54-b3fea0f2b388 + - 971dd895-5aeb-4fb6-97a7-927561805959 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -456,7 +431,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - eaa432d5-a97f-4a04-9165-ff498f912a99 + - 8473f298-b1ef-402e-8cc2-4558eb8bad60 status: code: 200 message: OK @@ -472,16 +447,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eaa432d5-a97f-4a04-9165-ff498f912a99/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8473f298-b1ef-402e-8cc2-4558eb8bad60/result response: body: - string: '{"id": "a9c13b6d-2453-4199-a2f2-9b6d9dff8866", "type": "Report", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "cfe3f90b-0225-4084-9455-2114b7652c86", "type": "Report", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -489,11 +464,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:48:28 GMT + - Wed, 09 Sep 2026 12:45:16 GMT Pragma: - no-cache RequestId: - - d937c56c-46fb-4553-99e4-9a6be2373067 + - b8f53dda-42fd-4927-b857-0764cc9fcc4e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -517,32 +492,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:28 GMT + - Wed, 09 Sep 2026 12:45:17 GMT Pragma: - no-cache RequestId: - - fa67cc21-d524-46d7-a917-e8b11277b1c5 + - cebb6161-1df5-4a68-a77d-91c0e848e41a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,51 +544,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "a9c13b6d-2453-4199-a2f2-9b6d9dff8866", "type": "Report", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "cfe3f90b-0225-4084-9455-2114b7652c86", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '596' + - '362' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:30 GMT + - Wed, 09 Sep 2026 12:45:16 GMT Pragma: - no-cache RequestId: - - 6032d062-9896-4dc4-b769-14daf29ca571 + - 245c6c5f-636b-4afd-9eff-5ae1de7b2fe1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -638,16 +601,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/a9c13b6d-2453-4199-a2f2-9b6d9dff8866 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/cfe3f90b-0225-4084-9455-2114b7652c86 response: body: - string: '{"id": "a9c13b6d-2453-4199-a2f2-9b6d9dff8866", "type": "Report", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "cfe3f90b-0225-4084-9455-2114b7652c86", "type": "Report", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -657,13 +620,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:31 GMT + - Wed, 09 Sep 2026 12:45:18 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3e537fb2-f3f4-49a1-a846-13dcdce6cf6d + - 2f195bd0-005d-440f-af13-42afa9b8c5fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -691,15 +654,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/a9c13b6d-2453-4199-a2f2-9b6d9dff8866/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/cfe3f90b-0225-4084-9455-2114b7652c86/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -709,13 +672,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:32 GMT + - Wed, 09 Sep 2026 12:45:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/51b7ba4c-173e-4992-8f78-8942934dbc5d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/92a4b56f-3a33-4a41-ba86-28571f329ba6 Pragma: - no-cache RequestId: - - ecef9d0e-53f2-4be8-9630-28edff6c9c8e + - bb41347e-889d-495a-a7b5-7fb2e5574b3d Retry-After: - '20' Strict-Transport-Security: @@ -729,7 +692,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 51b7ba4c-173e-4992-8f78-8942934dbc5d + - 92a4b56f-3a33-4a41-ba86-28571f329ba6 status: code: 202 message: Accepted @@ -745,33 +708,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/51b7ba4c-173e-4992-8f78-8942934dbc5d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/92a4b56f-3a33-4a41-ba86-28571f329ba6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:48:32.7914505", - "lastUpdatedTimeUtc": "2026-06-15T10:48:33.010132", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:45:18.9694388", + "lastUpdatedTimeUtc": "2026-09-09T12:45:19.2406549", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:53 GMT + - Wed, 09 Sep 2026 12:45:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/51b7ba4c-173e-4992-8f78-8942934dbc5d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/92a4b56f-3a33-4a41-ba86-28571f329ba6/result Pragma: - no-cache RequestId: - - a63d34a0-c9c4-44c5-b530-81c39fa51afe + - 93637fcb-56f3-4fe3-9d38-6ed833ba857e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -779,7 +742,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 51b7ba4c-173e-4992-8f78-8942934dbc5d + - 92a4b56f-3a33-4a41-ba86-28571f329ba6 status: code: 200 message: OK @@ -795,13 +758,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/51b7ba4c-173e-4992-8f78-8942934dbc5d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/92a4b56f-3a33-4a41-ba86-28571f329ba6/result response: body: string: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9YWM1ZmZhMDEtYTc3Yy00M2RlLTlmZGMtZDUwYjYwYzg2YTg5IgogICAgfQogIH0KfQ==", + "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9OGYwNzgzMTgtNzM1MC00NmE1LTk2ZWEtYTgzOWUxYmEyNDRlIgogICAgfQogIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -816,7 +779,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -824,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:48:54 GMT + - Wed, 09 Sep 2026 12:45:40 GMT Pragma: - no-cache RequestId: - - d9520d2d-b2f5-48c8-9a06-79e9bc8ca612 + - e9a988aa-b069-449f-b3c9-b6d93556b1a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -852,32 +815,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3456' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:55 GMT + - Wed, 09 Sep 2026 12:45:40 GMT Pragma: - no-cache RequestId: - - 101c1163-ea93-4130-820d-c30f15279dd2 + - 770c0584-1902-4245-bbb8-cf486382998d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -903,51 +867,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "a9c13b6d-2453-4199-a2f2-9b6d9dff8866", "type": "Report", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "cfe3f90b-0225-4084-9455-2114b7652c86", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '596' + - '362' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:55 GMT + - Wed, 09 Sep 2026 12:45:41 GMT Pragma: - no-cache RequestId: - - 7e4c7fbc-a981-42a5-ab42-06c1b7b398b0 + - 0a3b99cd-d797-4e18-a5e5-52d5f0c3c6e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -973,51 +924,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "a9c13b6d-2453-4199-a2f2-9b6d9dff8866", "type": "Report", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "cfe3f90b-0225-4084-9455-2114b7652c86", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '596' + - '362' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:57 GMT + - Wed, 09 Sep 2026 12:45:41 GMT Pragma: - no-cache RequestId: - - 3c78ce25-3c63-402c-9882-f1f5337e5ae0 + - 97e843ef-118e-4562-a292-532b93af69e5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1034,7 +972,7 @@ interactions: - request: body: '{"type": "Report", "folderId": null, "displayName": "fabcli000001_new_5", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVwb3J0IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "definition.pbir", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb25Qcm9wZXJ0aWVzLzIuMC4wL3NjaGVtYS5qc29uIiwKICAgICJ2ZXJzaW9uIjogIjQuMCIsCiAgICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICAgICAiYnlDb25uZWN0aW9uIjogewogICAgICAgICAgICAiY29ubmVjdGlvblN0cmluZyI6ICJEYXRhIFNvdXJjZT1wb3dlcmJpOi8vYXBpLnBvd2VyYmkuY29tL3YxLjAvbXlvcmcvZmFicmljY2xpX1dvcmtzcGFjZVBlclRlc3RjbGFzc18wMDAwMDE7aW5pdGlhbCBjYXRhbG9nPWZhYmNsaTAwMDAwMV9hdXRvO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPWFjNWZmYTAxLWE3N2MtNDNkZS05ZmRjLWQ1MGI2MGM4NmE4OSIKICAgICAgICB9CiAgICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition.pbir", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb25Qcm9wZXJ0aWVzLzIuMC4wL3NjaGVtYS5qc29uIiwKICAgICJ2ZXJzaW9uIjogIjQuMCIsCiAgICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICAgICAiYnlDb25uZWN0aW9uIjogewogICAgICAgICAgICAiY29ubmVjdGlvblN0cmluZyI6ICJEYXRhIFNvdXJjZT1wb3dlcmJpOi8vYXBpLnBvd2VyYmkuY29tL3YxLjAvbXlvcmcvZmFicmljY2xpX1dvcmtzcGFjZVBlclRlc3RjbGFzc18wMDAwMDE7aW5pdGlhbCBjYXRhbG9nPWZhYmNsaTAwMDAwMV9hdXRvO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPThmMDc4MzE4LTczNTAtNDZhNS05NmVhLWE4MzllMWJhMjQ0ZSIKICAgICAgICB9CiAgICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICAgIm5hbWUiOiAiQ1kyNFNVMTAiLAogICAgImRhdGFDb2xvcnMiOiBbCiAgICAgICAgIiMxMThERkYiLAogICAgICAgICIjMTIyMzlFIiwKICAgICAgICAiI0U2NkMzNyIsCiAgICAgICAgIiM2QjAwN0IiLAogICAgICAgICIjRTA0NEE3IiwKICAgICAgICAiIzc0NEVDMiIsCiAgICAgICAgIiNEOUIzMDAiLAogICAgICAgICIjRDY0NTUwIiwKICAgICAgICAiIzE5NzI3OCIsCiAgICAgICAgIiMxQUFCNDAiLAogICAgICAgICIjMTVDNkY0IiwKICAgICAgICAiIzQwOTJGRiIsCiAgICAgICAgIiNGRkEwNTgiLAogICAgICAgICIjQkU1REM5IiwKICAgICAgICAiI0Y0NzJEMCIsCiAgICAgICAgIiNCNUExRkYiLAogICAgICAgICIjQzRBMjAwIiwKICAgICAgICAiI0ZGODA4MCIsCiAgICAgICAgIiMwMERCQkMiLAogICAgICAgICIjNUJENjY3IiwKICAgICAgICAiIzAwOTFENSIsCiAgICAgICAgIiM0NjY4QzUiLAogICAgICAgICIjRkY2MzAwIiwKICAgICAgICAiIzk5MDA4QSIsCiAgICAgICAgIiNFQzAwOEMiLAogICAgICAgICIjNTMzMjg1IiwKICAgICAgICAiIzk5NzAwQSIsCiAgICAgICAgIiNGRjQxNDEiLAogICAgICAgICIjMUY5QTg1IiwKICAgICAgICAiIzI1ODkxQyIsCiAgICAgICAgIiMwMDU3QTIiLAogICAgICAgICIjMDAyMDUwIiwKICAgICAgICAiI0M5NEYwRiIsCiAgICAgICAgIiM0NTBGNTQiLAogICAgICAgICIjQjYwMDY0IiwKICAgICAgICAiIzM0MTI0RiIsCiAgICAgICAgIiM2QTVBMjkiLAogICAgICAgICIjMUFBQjQwIiwKICAgICAgICAiI0JBMTQxQSIsCiAgICAgICAgIiMwQzNEMzciLAogICAgICAgICIjMEI1MTFGIgogICAgXSwKICAgICJmb3JlZ3JvdW5kIjogIiMyNTI0MjMiLAogICAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICAgImZvcmVncm91bmROZXV0cmFsVGVydGlhcnkiOiAiI0IzQjBBRCIsCiAgICAiYmFja2dyb3VuZCI6ICIjRkZGRkZGIiwKICAgICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgICAiYmFja2dyb3VuZE5ldXRyYWwiOiAiI0M4QzZDNCIsCiAgICAidGFibGVBY2NlbnQiOiAiIzExOERGRiIsCiAgICAiZ29vZCI6ICIjMUFBQjQwIiwKICAgICJuZXV0cmFsIjogIiNEOUIzMDAiLAogICAgImJhZCI6ICIjRDY0NTU0IiwKICAgICJtYXhpbXVtIjogIiMxMThERkYiLAogICAgImNlbnRlciI6ICIjRDlCMzAwIiwKICAgICJtaW5pbXVtIjogIiNERUVGRkYiLAogICAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgICAiaHlwZXJsaW5rIjogIiMwMDc4ZDQiLAogICAgInZpc2l0ZWRIeXBlcmxpbmsiOiAiIzAwNzhkNCIsCiAgICAidGV4dENsYXNzZXMiOiB7CiAgICAgICAgImNhbGxvdXQiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDQ1LAogICAgICAgICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAidGl0bGUiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAgICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAiaGVhZGVyIjogewogICAgICAgICAgICAiZm9udFNpemUiOiAxMiwKICAgICAgICAgICAgImZvbnRGYWNlIjogIlNlZ29lIFVJIFNlbWlib2xkIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAibGFiZWwiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDEwLAogICAgICAgICAgICAiZm9udEZhY2UiOiAiU2Vnb2UgVUkiLAogICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICB9CiAgICB9LAogICAgInZpc3VhbFN0eWxlcyI6IHsKICAgICAgICAiKiI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiKiI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ3b3JkV3JhcCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0F4aXNUaXRsZSI6IHRydWUsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIsCiAgICAgICAgICAgICAgICAgICAgICAgICJjb25jYXRlbmF0ZUxhYmVscyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0F4aXNUaXRsZSI6IHRydWUsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAidGl0bGVXcmFwIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzdHJva2VXaWR0aCI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgIndpZHRoIjogMQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiI2ZmZmZmZiIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImZpbHRlckNhcmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiJGlkIjogIkFwcGxpZWQiLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgImJvcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgImJvcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzY2F0dGVyQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYnViYmxlU2l6ZSI6IC0xMCwKICAgICAgICAgICAgICAgICAgICAgICAgIm1hcmtlclJhbmdlVHlwZSI6ICJhdXRvIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImxpbmVDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJmb3JlY2FzdCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAibWFwIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJidWJibGVzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJ1YmJsZVNpemUiOiAtMTAsCiAgICAgICAgICAgICAgICAgICAgICAgICJtYXJrZXJSYW5nZVR5cGUiOiAiYXV0byIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJhenVyZU1hcCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgICAgICAgICAgICAgIm1pbkJ1YmJsZVJhZGl1cyI6IDgsCiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhSYWRpdXMiOiA0MAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFySGVpZ2h0IjogMywKICAgICAgICAgICAgICAgICAgICAgICAgInRoaWNrbmVzcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwaWVDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImRvbnV0Q2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogdHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImxhYmVsU3R5bGUiOiAiRGF0YSB2YWx1ZSwgcGVyY2VudCBvZiB0b3RhbCIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwaXZvdFRhYmxlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dFeHBhbmRDb2xsYXBzZUJ1dHRvbnMiOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAibGVnYWN5U3R5bGVEaXNhYmxlZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImNhcmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJrcGkiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgInRyZW5kbGluZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAyMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImNhcmRWaXN1YWwiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhUaWxlcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJmaXhlZFNpemUiOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYWR2YW5jZWRTbGljZXJWaXN1YWwiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhUaWxlcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzbGljZXIiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiaGlkZURhdGVQaWNrZXJCdXR0b24iOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicGFkZGluZyI6IDQsCiAgICAgICAgICAgICAgICAgICAgICAgICJhY2Nlc3NpYmlsaXR5Q29udHJhc3RQcm9wZXJ0aWVzIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiY29sdW1uQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJjbHVzdGVyZWRDb2x1bW5DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dHcmFkaWVudExlZ2VuZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYmFyQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJjbHVzdGVyZWRCYXJDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dHcmFkaWVudExlZ2VuZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYXJlYUNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzdGFja2VkQXJlYUNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAibGluZVN0YWNrZWRDb2x1bW5Db21ib0NoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJyaWJib25DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImdyb3VwIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImJhc2ljU2hhcGUiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgInNoYXBlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJpbWFnZSI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsb2NrQXNwZWN0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYWN0aW9uQnV0dG9uIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYm9va21hcmtOYXZpZ2F0b3IiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAidGV4dGJveCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwYWdlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJvdXRzcGFjZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAxMDAKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9CiAgICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": @@ -1058,15 +996,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1076,13 +1014,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:48:59 GMT + - Wed, 09 Sep 2026 12:45:44 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dad3e3-a031-483c-8b91-4dbbb369e548 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8d4f6d57-2cce-490c-9d36-285e41605dad Pragma: - no-cache RequestId: - - 54a24855-d053-45f9-a56d-d21357c6f759 + - ae4eac94-a6d2-4ceb-bc61-f5bd336e108b Retry-After: - '20' Strict-Transport-Security: @@ -1096,7 +1034,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 37dad3e3-a031-483c-8b91-4dbbb369e548 + - 8d4f6d57-2cce-490c-9d36-285e41605dad status: code: 202 message: Accepted @@ -1112,33 +1050,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dad3e3-a031-483c-8b91-4dbbb369e548 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8d4f6d57-2cce-490c-9d36-285e41605dad response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:48:59.6206754", - "lastUpdatedTimeUtc": "2026-06-15T10:48:59.9489193", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:45:44.5498703", + "lastUpdatedTimeUtc": "2026-09-09T12:45:45.0082767", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '130' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:20 GMT + - Wed, 09 Sep 2026 12:46:05 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dad3e3-a031-483c-8b91-4dbbb369e548/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8d4f6d57-2cce-490c-9d36-285e41605dad/result Pragma: - no-cache RequestId: - - 4f37db9d-69ca-4b61-a07a-c3489a303eda + - fc8c31af-2546-4c47-b931-8ec2aee52805 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1146,7 +1084,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 37dad3e3-a031-483c-8b91-4dbbb369e548 + - 8d4f6d57-2cce-490c-9d36-285e41605dad status: code: 200 message: OK @@ -1162,16 +1100,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37dad3e3-a031-483c-8b91-4dbbb369e548/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8d4f6d57-2cce-490c-9d36-285e41605dad/result response: body: - string: '{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", "displayName": - "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", "displayName": + "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1179,11 +1117,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:49:21 GMT + - Wed, 09 Sep 2026 12:46:06 GMT Pragma: - no-cache RequestId: - - 88c5d6fc-3f70-4c45-99ab-d3edb42cc95d + - d747a338-a895-4418-a056-c9bd2be73e06 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1207,32 +1145,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:21 GMT + - Wed, 09 Sep 2026 12:46:07 GMT Pragma: - no-cache RequestId: - - 5f62c9d3-fdf9-4681-86e1-b314ce2e42c7 + - 12ad4df5-cf56-4d4d-bd7c-fc23157b3d76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1258,53 +1197,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "a9c13b6d-2453-4199-a2f2-9b6d9dff8866", "type": "Report", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", "displayName": - "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "cfe3f90b-0225-4084-9455-2114b7652c86", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", "displayName": + "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '626' + - '393' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:23 GMT + - Wed, 09 Sep 2026 12:46:07 GMT Pragma: - no-cache RequestId: - - df54c938-3986-4d55-8322-435c1509fb8b + - db640c24-10d6-4dd1-b584-dc654d3b89d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1332,15 +1258,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/a9c13b6d-2453-4199-a2f2-9b6d9dff8866 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/cfe3f90b-0225-4084-9455-2114b7652c86 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1350,11 +1276,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:49:24 GMT + - Wed, 09 Sep 2026 12:46:07 GMT Pragma: - no-cache RequestId: - - bda4c47f-08b1-4ce2-b739-a0b904eb5118 + - 4d88be5d-74b5-4d2e-95ae-43c6a17276f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml index 63204a9ef..cc3c69a43 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:33 GMT + - Wed, 09 Sep 2026 12:51:23 GMT Pragma: - no-cache RequestId: - - 9ab0562c-edc7-4bf7-971a-2afbd4da9d16 + - f20ec3b3-77ee-42d9-ad9c-0c21ac03967e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,71 +63,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '995' + - '771' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:34 GMT + - Wed, 09 Sep 2026 12:51:23 GMT Pragma: - no-cache RequestId: - - 37b86695-a1a8-473d-bd47-a425bb54c69e + - b72d5fb1-fa67-4f13-8928-3511534194f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -152,71 +140,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '995' + - '771' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:35 GMT + - Wed, 09 Sep 2026 12:51:23 GMT Pragma: - no-cache RequestId: - - 0b5a864b-1ba5-4cca-9542-dd6f41f314a3 + - 1b0da609-b65c-4dc6-b1d0-7afee8d1372f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,15 +219,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/sqlDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/sqlDatabases response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -262,15 +237,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:38 GMT + - Wed, 09 Sep 2026 12:51:25 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca2756ed-8b7c-425d-afae-d41b7beabfc4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/201a5543-b806-42ba-b497-a61c8550650a Pragma: - no-cache RequestId: - - 27569d76-eb57-411d-a966-ac88add9cf3e + - afbdf16f-edac-41a5-922c-db3f7e12fe82 Retry-After: - '20' Strict-Transport-Security: @@ -284,7 +259,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - ca2756ed-8b7c-425d-afae-d41b7beabfc4 + - 201a5543-b806-42ba-b497-a61c8550650a status: code: 202 message: Accepted @@ -300,33 +275,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca2756ed-8b7c-425d-afae-d41b7beabfc4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/201a5543-b806-42ba-b497-a61c8550650a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:55:37.2924573", - "lastUpdatedTimeUtc": "2026-06-15T10:55:55.9823351", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:51:24.8344734", + "lastUpdatedTimeUtc": "2026-09-09T12:51:42.9494248", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:55:58 GMT + - Wed, 09 Sep 2026 12:51:46 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca2756ed-8b7c-425d-afae-d41b7beabfc4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/201a5543-b806-42ba-b497-a61c8550650a/result Pragma: - no-cache RequestId: - - 6e692361-c489-40fe-86aa-5bb5a618eaec + - aac34c0e-b672-438b-8cab-9620cd447fa3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -334,7 +309,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ca2756ed-8b7c-425d-afae-d41b7beabfc4 + - 201a5543-b806-42ba-b497-a61c8550650a status: code: 200 message: OK @@ -350,16 +325,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca2756ed-8b7c-425d-afae-d41b7beabfc4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/201a5543-b806-42ba-b497-a61c8550650a/result response: body: - string: '{"id": "d2488e06-7060-4cc0-b62c-538cf8c30c12", "type": "SQLDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "11891a3e-ee53-411b-9db9-c1af56a5b308", "type": "SQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -367,11 +342,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:56:00 GMT + - Wed, 09 Sep 2026 12:51:46 GMT Pragma: - no-cache RequestId: - - a6ca68c1-c21b-4146-b4d9-b276713603a8 + - 7efd543b-a0bb-4e17-93f4-f929dbb907ec Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -395,32 +370,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:00 GMT + - Wed, 09 Sep 2026 12:51:47 GMT Pragma: - no-cache RequestId: - - 6b277ca8-eb4e-428f-9c13-73550349862a + - 41e6c274-4735-440c-8132-afa5066810b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -446,75 +422,60 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "90331bfe-c9c6-4a23-8189-a95e39d769c7", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d2488e06-7060-4cc0-b62c-538cf8c30c12", "type": "SQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "11891a3e-ee53-411b-9db9-c1af56a5b308", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1060' + - '810' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:00 GMT + - Wed, 09 Sep 2026 12:51:48 GMT Pragma: - no-cache RequestId: - - e4474cdf-ce2c-4acb-9da0-b58d212886e6 + - f18578a8-18ee-4c26-ae96-cb1e4b9c9168 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -540,16 +501,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/d2488e06-7060-4cc0-b62c-538cf8c30c12 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/11891a3e-ee53-411b-9db9-c1af56a5b308 response: body: - string: '{"id": "d2488e06-7060-4cc0-b62c-538cf8c30c12", "type": "SQLDatabase", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "11891a3e-ee53-411b-9db9-c1af56a5b308", "type": "SQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -559,13 +520,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:01 GMT + - Wed, 09 Sep 2026 12:51:47 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ea7a8d59-d7e7-44f8-9e21-8b6ab5500256 + - 00eab2e0-a3d4-4fd0-b4fb-03f6b0becb90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,15 +554,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/d2488e06-7060-4cc0-b62c-538cf8c30c12/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/11891a3e-ee53-411b-9db9-c1af56a5b308/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -611,13 +572,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:01 GMT + - Wed, 09 Sep 2026 12:51:48 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20ec13ec-7465-42bf-8822-5bf89982507f + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b Pragma: - no-cache RequestId: - - f405cd2e-b6f8-4298-8c92-a85844a1b336 + - ffdb93a8-352b-426c-8fff-7e118545ac2c Retry-After: - '20' Strict-Transport-Security: @@ -631,7 +592,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 20ec13ec-7465-42bf-8822-5bf89982507f + - bc780fc9-e373-4402-bab4-93c052954d4b status: code: 202 message: Accepted @@ -647,33 +608,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20ec13ec-7465-42bf-8822-5bf89982507f + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-06-15T10:56:02.4913374", - "lastUpdatedTimeUtc": "2026-06-15T10:56:02.4913374", "percentComplete": null, - "error": null}' + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T12:51:48.9457043", + "lastUpdatedTimeUtc": "2026-09-09T12:51:48.9457043", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '123' + - '147' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:22 GMT + - Wed, 09 Sep 2026 12:52:08 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20ec13ec-7465-42bf-8822-5bf89982507f + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b Pragma: - no-cache RequestId: - - 027957f6-6b56-43b5-85c9-6df8d7dab507 + - abd31d78-661b-45b5-83d7-0d9802cdbfa8 Retry-After: - '20' Strict-Transport-Security: @@ -683,7 +644,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 20ec13ec-7465-42bf-8822-5bf89982507f + - bc780fc9-e373-4402-bab4-93c052954d4b status: code: 200 message: OK @@ -699,33 +660,35 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20ec13ec-7465-42bf-8822-5bf89982507f + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:56:02.4913374", - "lastUpdatedTimeUtc": "2026-06-15T10:56:31.3741567", "percentComplete": 100, - "error": null}' + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T12:51:48.9457043", + "lastUpdatedTimeUtc": "2026-09-09T12:51:48.9457043", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '147' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:43 GMT + - Wed, 09 Sep 2026 12:52:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20ec13ec-7465-42bf-8822-5bf89982507f/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b Pragma: - no-cache RequestId: - - c8a92514-4c9a-422c-8f58-ff0bf51095c3 + - c0c6808b-e885-4223-b098-789291916950 + Retry-After: + - '20' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -733,7 +696,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 20ec13ec-7465-42bf-8822-5bf89982507f + - bc780fc9-e373-4402-bab4-93c052954d4b status: code: 200 message: OK @@ -749,38 +712,41 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20ec13ec-7465-42bf-8822-5bf89982507f/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b response: body: - string: '{"definition": {"format": "dacpac", "parts": [{"path": "fabcli000001.dacpac", - "payload": "UEsDBBQAAAAIAAxXz1zG6qC/qQIAALwHAAAJAAAAbW9kZWwueG1spVVdb9pAEHxOpf4Hy++1+VCbqjKJIgNNJEhIbKWqqgot9gInne+cu3ME+fXdw2ATCCm0D0jmvDOz7M4cweUi484zKs2k6LhNr+E6KBKZMjHruIWZfvrqXl58/BB0wUCUzDGDoUyRO33GsS9VBuaxBrdcp6ypztreZ9fp6vwWMuy4Q5YoqeXUeJbOi6Xk2isRXvTE7ac76cNEscQWTEBj+Xak5DNLUblOKDkHQ9yDhKWk2Wi3tw5Di0ChmWHPpNcHrtF16CcK3XHnxuTffF+vGLWXVc0kMvP1E5UqGoSfQuJHqBhw9rIi9VuNZstvtFyaw1lwjUCN2MezICy0kZlt1QnB4EyqZce9IvnbgnO9qqeqIRpIbU05hPq98wi8oJNYFdSlX3L6Nek7IveFNJjepCgMmzIazNtae2X/IRnKLKd5TBhnZmlNcEBzv24j2jxvnKj5gFNU5EfiiJc5UZBDSkccELe2tE+VJm3aoPJoqTkkG/U92EDOWAL8H5C9BRUJ4CNQpt7orxL8+yAsKvJcodZDpjVFrYs5CtpSwlD3lJKqplp7+KSx0ZTCLH0EMvGEo94a3tbxmjPwa0cHq2yXxD2OGdmmhm4SeZfbUFTupmjmqMyy2v46itUPiO4H4wEdieb4OwpUwMfhqDkOb8ZXUT2fHZobvYlJF6dQcHMn3vTuO0B9GuQHKEGbOAWlmJlfTaQ6oblQigSMbe8nQ55q+3Q8OpZKjGCG9MJgYqe8hX1llDfAfZKKcWF6wm4/PU7TqtFlzqavk9w+CFivawBiVhC2QvwNsOnueOB9gWoZGakwhNwUCl/fNUfgIgMcV1/jOYVxLnk9lfaX84MMQ1h0ZV6VVpfaXmGMWS7J8NeMQqqWD2jsRSzF7gp2Mr6OXpnOTSQDf+cv+OIPUEsDBBQAAAAIAAxXz1zrFcMlpQAAAMgAAAAPAAAARGFjTWV0YWRhdGEueG1sNY5NCsIwFIT3gncI2dvXFkSRNN24dqO4f6apDeSnJlFqr+bCI3kFY1VmNwzffK/Hk9WD0eQmfVDOVrTIckqkFa5R9lzRa2wXa1rz+YxtURzuvSRpbkNFuxj7DUAQnTQYMqOEd8G1MRPOQLjoIH2CQoMC9tIr1GrEmC6gzIsS8pImJiFsh0byFk9Cq255VuNq0AUymOppcPya8ST2CYN/kZTg58TfUEsDBBQAAAAIAAxXz1x+1vi6LgIAAF0EAAAKAAAAT3JpZ2luLnhtbKVU0W6bMBR9n7R/QLyu2MZgMBFQpSGVpqlrpWZ7d42TWAGc2mZq+2t72CftF2YSQtcte9qj773nnuNzff3z+4/88qltvG9CG6m6wg8B8j3RcVXLblP4vV0H1L8s37/LK8ZvtdzIznOAzhT+1tr9DELDt6JlBrSSa2XU2gKuWmgeGyO0awtrxuG90JI18oVZRwIxCjFE2HddPS+/Y3zHNuJOq73QVgpzCLvE16OmMgJOFEA5PAXG/EJ1lsnOLJ/2SltRV8yycs0cbw7P5kbcvdWCtWOzE9srn3fMf2atKPwB55d44P9bwb8wYt+o51Z0dlCh5UNvlTZ+ebjFmXvAM4JyeN6W/NadDi6e0B9rRyTtc8kFpesHhgKC1jiIEcEBYzEJsjitKYm4ELTO4VQ+mcG0LTHCSYCSICSrEM1IMsMIJClKoxR/QGiGnOhj4YhadvUZDAERyZKIpifMUDYi3D3qntvBofJmeimDvWClVGPA/eEZgRUzO3d4bC680ZAiTA++AXThLfrG9loUneitZq7mrn9oJP8knldqJ7qCZjQmNa8poojzLHQ2/sb7VsppCkP7CGQRSKbqPwY0Ro8Ky/999hPL2O847rdzzRdbwXemb6dlOAW8L1oWPmxVLRrgFtEvq6tsvpxfxYt4TtOQphFK6HVWoUVGYhQusZtJllaLLMmqMJpfY7SkS3yNCcVpRubzyi3L2HuU8pY7vxmojlpfN5Lk8Ezc/RJw+ibKX1BLAwQUAAAACAAMV89c7aHT4I8AAACvAAAAEwAAAFtDb250ZW50X1R5cGVzXS54bWwljUsOgjAQhq/SzB4GXRhj2rpQb+AFmjo8IkwbOhg8mwuP5BUssPyf3+/z1ed56NWLxtQFNrArK1DEPjw6bgxMUhdHOFt9f0dKKlc5GWhF4gkx+ZYGl8oQiXNSh3FwkuXYYHT+6RrCfVUd0AcWYilk+QCrr1S7qRd1m7O9YfMc1GXrLSgDQrPgaqPVuOLtH1BLAQIUABQAAAAIAAxXz1zG6qC/qQIAALwHAAAJAAAAAAAAAAAAAAAAAAAAAABtb2RlbC54bWxQSwECFAAUAAAACAAMV89c6xXDJaUAAADIAAAADwAAAAAAAAAAAAAAAADQAgAARGFjTWV0YWRhdGEueG1sUEsBAhQAFAAAAAgADFfPXH7W+LouAgAAXQQAAAoAAAAAAAAAAAAAAAAAogMAAE9yaWdpbi54bWxQSwECFAAUAAAACAAMV89c7aHT4I8AAACvAAAAEwAAAAAAAAAAAAAAAAD4BQAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLBQYAAAAABAAEAO0AAAC4BgAAAAA=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}]}}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:51:48.9457043", + "lastUpdatedTimeUtc": "2026-09-09T12:52:38.0660072", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip + Content-Length: + - '159' Content-Type: - - application/json + - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:44 GMT + - Wed, 09 Sep 2026 12:52:50 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b/result Pragma: - no-cache RequestId: - - 123088f8-3303-45b3-a875-45266e6c328e + - 1da00321-a3b4-411d-a994-17a5aff6335b Strict-Transport-Security: - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - deny + x-ms-operation-id: + - bc780fc9-e373-4402-bab4-93c052954d4b status: code: 200 message: OK @@ -796,42 +762,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bc780fc9-e373-4402-bab4-93c052954d4b/result response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"definition": {"format": "dacpac", "parts": [{"path": "fabcli000001.dacpac", + "payload": "UEsDBBQAAAAIAJFmKV1KCMFpvAIAAAIIAAAJAAAAbW9kZWwueG1spVVhb9owEP3cSfsPUb4vATpt0xRadQE6JGhpgzpN04QO5wBrjp3aDi379TsTIKyUFrYPkSL73r3zu3d2dP6YCW+O2nAlm349qPkeSqZSLqdNv7CTd5/887O3b6IWWEjYDDPoqxSF1+ECO0pnYO8qcMP3ypjNWiN473stk19Bhk2/z5lWRk1s4NIFQ6WECUpEkNwL97XGHRhrzlzAGAyWuwOt5jxF7XuxEgIs5e4xnhJn7fR0azF2CJSGWz4nvg4Ig75HR5Sm6c+szT+HoVlmNEG2KYapLDT3FKpJiDAFFiaoOQj+e5k0bNTqjbDW8EmHk+grAhXifk+iuDBWZa5ULwaLU6UXTf+C6K8KIcwynqL6aCF1MaUI1b53B6KglaEuqMqwzBlWSV8guSmUxbSborR8wkmY57l2wv6DMlZZTnqMueB24Uywh3M3bk1a/1g7kvMWJ6jJj5RjuMgpBTmkdMQecmdL97fhpE5b1AE1NQe2Zt+B9dSUMxD/gGw/UpAEMQBtq47+KME/98KSIs81GtPnxtCotTBHSV1iHE1ba6WrVCsPHyUbqRRn6R2QiccCzZZ4W8urnFFYOTpaznaZuC0wI9tU0PVEXuduKDbuptHMUdvFpvurUdwcILnpjXq0JOujS5SoQYziQX0Ud0cXSaXPkzRdsx6TFk6gEPZaPuvdF4DmOMg30JI6cQxKczu7GCt9RHGxkgysK+87R5Ea93cEutBG6ZUiCaPdS6HGIA7FD5WWA5gibVhkrktb3H8Z7Rlwh0od4qNtS+ee9DBOukjnnOEXrX6hLp1TXQcvaSuEekgk5GambNeoJ5565Zy35Gi6hjJu6fZbZzkMvBK3B3JakFIb0GuAtTqHA2lcQajp7sDQK7oHMgQ9RXuLTNFDtRjyDAf0UKmqFx+2LtjVAJczvh7sKHzykJ/9AVBLAwQUAAAACACRZildK1poEKUAAADIAAAADwAAAERhY01ldGFkYXRhLnhtbDWOOw7CMBBEeyTuYLknm6QBIcdpqGlA9IvjgIM/wTYocDUKjsQVMAE03Wj05r0eT1YPRpOr9EE5W9EiyymRVrhG2UNFL7GdLWjNpxO2QrG99ZKkuQ0VPcbYLwGCOEqDITNKeBdcGzPhDISzDtInKDQoYCO9Qq3uGNMFlHlRQl7SxCSErdFI3uJeaIUnN+8GZbuSwViPg93XjCexTxj8i6QEPyf+BlBLAwQUAAAACACRZildT6BgIjECAABdBAAACgAAAE9yaWdpbi54bWylVMtu2zAQvBfoPwi6NiYp6klDUuBYNlAUaQzY7Z2hqISwJDokVST5tR76Sf2FUrak1o17KsALd3d2hrMkf37/kV4/N7XzjSstZJu5HkCuw1smS9E+ZG5nqlniXufv36UFZXdKPIjWsYBWZ+6jMYc5hJo98oZq0AimpJaVAUw2UD/VmivbFpaUwS1XgtbilRpLAjHyMETYtV0dJ91QtqcPfKPkgSsjuD6GbeLrSVPuAysKoBSOgSG/lK2hotWr54NUhpcFNTSvqOVN4cXcgNsaxWkzNBvZfvM5p/xn2vDM7XFujnv+twr+heGHWr40vDW9CiXuOyOVdvPjKS6cA14QlMLLtqR3dnd0cUR/LC2RMC95GWLmhffBrOQengWYVjMScD6L/YBEqKIBS6oUTuWTGVSZHCMczRCxa+fheYjnmIA4JGGM4w8IzZEVfSocUKu2fIvxA+AnmJAkGTF92YCw5yg7ZnqH8tvppvT2gp2UtQbb4zUCO6r3dvNUXzmDIZkXH30D6MpZdrXpFM9a3hlFbc2mu68F+8RfdnLP2ywhSRCWrExQghgjnrXxD95zKeMU+vY+ID6Ipuq/BjRETwrz/732E8vQ7zTu87mmy0fO9rprpscwBpwvSmQubGTJa2AfopuvbsKErIMFIWvse+ECFRFa+Di2s1sUS3TjJ+tVjItisVwEURIHXhGt/DjEBUJRtF6H9rEMvQcp59zpbU910jr6gkGQwgtx+0vA6ZvIfwFQSwMEFAAAAAgAkWYpXe2h0+CPAAAArwAAABMAAABbQ29udGVudF9UeXBlc10ueG1sJY1LDoIwEIav0sweBl0YY9q6UG/gBZo6PCJMGzoYPJsLj+QVLLD8n9/v89XneejVi8bUBTawKytQxD48Om4MTFIXRzhbfX9HSipXORloReIJMfmWBpfKEIlzUodxcJLl2GB0/ukawn1VHdAHFmIpZPkAq69Uu6kXdZuzvWHzHNRl6y0oA0Kz4Gqj1bji7R9QSwECFAAUAAAACACRZildSgjBabwCAAACCAAACQAAAAAAAAAAAAAAAAAAAAAAbW9kZWwueG1sUEsBAhQAFAAAAAgAkWYpXStaaBClAAAAyAAAAA8AAAAAAAAAAAAAAAAA4wIAAERhY01ldGFkYXRhLnhtbFBLAQIUABQAAAAIAJFmKV1PoGAiMQIAAF0EAAAKAAAAAAAAAAAAAAAAALUDAABPcmlnaW4ueG1sUEsBAhQAFAAAAAgAkWYpXe2h0+CPAAAArwAAABMAAAAAAAAAAAAAAAAADgYAAFtDb250ZW50X1R5cGVzXS54bWxQSwUGAAAAAAQABADtAAAAzgYAAAAA", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '3182' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Mon, 15 Jun 2026 10:56:45 GMT + - Wed, 09 Sep 2026 12:52:50 GMT Pragma: - no-cache RequestId: - - 6109adae-98f7-42f9-8b31-8e933182931e + - e4fdaacb-8f6d-46a9-ada2-778c3b9ffcc9 Strict-Transport-Security: - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' status: code: 200 message: OK @@ -847,75 +809,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "90331bfe-c9c6-4a23-8189-a95e39d769c7", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d2488e06-7060-4cc0-b62c-538cf8c30c12", "type": "SQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1060' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:46 GMT + - Wed, 09 Sep 2026 12:52:51 GMT Pragma: - no-cache RequestId: - - 1c1b8018-193c-4909-afe1-2b944caf0540 + - d8354954-4ca8-4568-804c-60bea761b3cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -941,75 +861,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "90331bfe-c9c6-4a23-8189-a95e39d769c7", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d2488e06-7060-4cc0-b62c-538cf8c30c12", "type": "SQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "961e7b0e-af1b-4fd9-9242-3ec17a35d1a2", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "11891a3e-ee53-411b-9db9-c1af56a5b308", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1060' + - '838' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:47 GMT + - Wed, 09 Sep 2026 12:52:51 GMT Pragma: - no-cache RequestId: - - 02438e6c-b8a8-42ae-b4aa-0ccc45d916da + - f6812433-9f15-4152-95f1-efd36eab0fed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1024,10 +931,7 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SQLDatabase", "folderId": null, "displayName": "fabcli000001_new_13", - "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", - "payloadType": "InlineBase64"}, {"path": "fabcli000001.dacpac", "payload": "UEsDBBQAAAAIAAxXz1zG6qC/qQIAALwHAAAJAAAAbW9kZWwueG1spVVdb9pAEHxOpf4Hy++1+VCbqjKJIgNNJEhIbKWqqgot9gInne+cu3ME+fXdw2ATCCm0D0jmvDOz7M4cweUi484zKs2k6LhNr+E6KBKZMjHruIWZfvrqXl58/BB0wUCUzDGDoUyRO33GsS9VBuaxBrdcp6ypztreZ9fp6vwWMuy4Q5YoqeXUeJbOi6Xk2isRXvTE7ac76cNEscQWTEBj+Xak5DNLUblOKDkHQ9yDhKWk2Wi3tw5Di0ChmWHPpNcHrtF16CcK3XHnxuTffF+vGLWXVc0kMvP1E5UqGoSfQuJHqBhw9rIi9VuNZstvtFyaw1lwjUCN2MezICy0kZlt1QnB4EyqZce9IvnbgnO9qqeqIRpIbU05hPq98wi8oJNYFdSlX3L6Nek7IveFNJjepCgMmzIazNtae2X/IRnKLKd5TBhnZmlNcEBzv24j2jxvnKj5gFNU5EfiiJc5UZBDSkccELe2tE+VJm3aoPJoqTkkG/U92EDOWAL8H5C9BRUJ4CNQpt7orxL8+yAsKvJcodZDpjVFrYs5CtpSwlD3lJKqplp7+KSx0ZTCLH0EMvGEo94a3tbxmjPwa0cHq2yXxD2OGdmmhm4SeZfbUFTupmjmqMyy2v46itUPiO4H4wEdieb4OwpUwMfhqDkOb8ZXUT2fHZobvYlJF6dQcHMn3vTuO0B9GuQHKEGbOAWlmJlfTaQ6oblQigSMbe8nQ55q+3Q8OpZKjGCG9MJgYqe8hX1llDfAfZKKcWF6wm4/PU7TqtFlzqavk9w+CFivawBiVhC2QvwNsOnueOB9gWoZGakwhNwUCl/fNUfgIgMcV1/jOYVxLnk9lfaX84MMQ1h0ZV6VVpfaXmGMWS7J8NeMQqqWD2jsRSzF7gp2Mr6OXpnOTSQDf+cv+OIPUEsDBBQAAAAIAAxXz1zrFcMlpQAAAMgAAAAPAAAARGFjTWV0YWRhdGEueG1sNY5NCsIwFIT3gncI2dvXFkSRNN24dqO4f6apDeSnJlFqr+bCI3kFY1VmNwzffK/Hk9WD0eQmfVDOVrTIckqkFa5R9lzRa2wXa1rz+YxtURzuvSRpbkNFuxj7DUAQnTQYMqOEd8G1MRPOQLjoIH2CQoMC9tIr1GrEmC6gzIsS8pImJiFsh0byFk9Cq255VuNq0AUymOppcPya8ST2CYN/kZTg58TfUEsDBBQAAAAIAAxXz1x+1vi6LgIAAF0EAAAKAAAAT3JpZ2luLnhtbKVU0W6bMBR9n7R/QLyu2MZgMBFQpSGVpqlrpWZ7d42TWAGc2mZq+2t72CftF2YSQtcte9qj773nnuNzff3z+4/88qltvG9CG6m6wg8B8j3RcVXLblP4vV0H1L8s37/LK8ZvtdzIznOAzhT+1tr9DELDt6JlBrSSa2XU2gKuWmgeGyO0awtrxuG90JI18oVZRwIxCjFE2HddPS+/Y3zHNuJOq73QVgpzCLvE16OmMgJOFEA5PAXG/EJ1lsnOLJ/2SltRV8yycs0cbw7P5kbcvdWCtWOzE9srn3fMf2atKPwB55d44P9bwb8wYt+o51Z0dlCh5UNvlTZ+ebjFmXvAM4JyeN6W/NadDi6e0B9rRyTtc8kFpesHhgKC1jiIEcEBYzEJsjitKYm4ELTO4VQ+mcG0LTHCSYCSICSrEM1IMsMIJClKoxR/QGiGnOhj4YhadvUZDAERyZKIpifMUDYi3D3qntvBofJmeimDvWClVGPA/eEZgRUzO3d4bC680ZAiTA++AXThLfrG9loUneitZq7mrn9oJP8knldqJ7qCZjQmNa8poojzLHQ2/sb7VsppCkP7CGQRSKbqPwY0Ro8Ky/999hPL2O847rdzzRdbwXemb6dlOAW8L1oWPmxVLRrgFtEvq6tsvpxfxYt4TtOQphFK6HVWoUVGYhQusZtJllaLLMmqMJpfY7SkS3yNCcVpRubzyi3L2HuU8pY7vxmojlpfN5Lk8Ezc/RJw+ibKX1BLAwQUAAAACAAMV89c7aHT4I8AAACvAAAAEwAAAFtDb250ZW50X1R5cGVzXS54bWwljUsOgjAQhq/SzB4GXRhj2rpQb+AFmjo8IkwbOhg8mwuP5BUssPyf3+/z1ed56NWLxtQFNrArK1DEPjw6bgxMUhdHOFt9f0dKKlc5GWhF4gkx+ZYGl8oQiXNSh3FwkuXYYHT+6RrCfVUd0AcWYilk+QCrr1S7qRd1m7O9YfMc1GXrLSgDQrPgaqPVuOLtH1BLAQIUABQAAAAIAAxXz1zG6qC/qQIAALwHAAAJAAAAAAAAAAAAAAAAAAAAAABtb2RlbC54bWxQSwECFAAUAAAACAAMV89c6xXDJaUAAADIAAAADwAAAAAAAAAAAAAAAADQAgAARGFjTWV0YWRhdGEueG1sUEsBAhQAFAAAAAgADFfPXH7W+LouAgAAXQQAAAoAAAAAAAAAAAAAAAAAogMAAE9yaWdpbi54bWxQSwECFAAUAAAACAAMV89c7aHT4I8AAACvAAAAEwAAAAAAAAAAAAAAAAD4BQAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLBQYAAAAABAAEAO0AAAC4BgAAAAA=", - "payloadType": "InlineBase64"}]}}' + body: null headers: Accept: - '*/*' @@ -1035,40 +939,65 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '3346' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: 'null' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "961e7b0e-af1b-4fd9-9242-3ec17a35d1a2", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "11891a3e-ee53-411b-9db9-c1af56a5b308", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '24' + - '838' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:56:49 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308 + - Wed, 09 Sep 2026 12:52:52 GMT Pragma: - no-cache RequestId: - - 0be9c2da-51c9-4c2d-be5d-fee2ae9bb1b8 - Retry-After: - - '20' + - 42c1065c-1775-409d-ab79-3aeac06c102d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1079,13 +1008,14 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' - x-ms-operation-id: - - ec247437-8dc5-43ae-b83a-72b5117ae308 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"type": "SQLDatabase", "folderId": null, "displayName": "fabcli000001_new_13", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "fabcli000001.dacpac", "payload": "UEsDBBQAAAAIAJFmKV1KCMFpvAIAAAIIAAAJAAAAbW9kZWwueG1spVVhb9owEP3cSfsPUb4vATpt0xRadQE6JGhpgzpN04QO5wBrjp3aDi379TsTIKyUFrYPkSL73r3zu3d2dP6YCW+O2nAlm349qPkeSqZSLqdNv7CTd5/887O3b6IWWEjYDDPoqxSF1+ECO0pnYO8qcMP3ypjNWiN473stk19Bhk2/z5lWRk1s4NIFQ6WECUpEkNwL97XGHRhrzlzAGAyWuwOt5jxF7XuxEgIs5e4xnhJn7fR0azF2CJSGWz4nvg4Ig75HR5Sm6c+szT+HoVlmNEG2KYapLDT3FKpJiDAFFiaoOQj+e5k0bNTqjbDW8EmHk+grAhXifk+iuDBWZa5ULwaLU6UXTf+C6K8KIcwynqL6aCF1MaUI1b53B6KglaEuqMqwzBlWSV8guSmUxbSborR8wkmY57l2wv6DMlZZTnqMueB24Uywh3M3bk1a/1g7kvMWJ6jJj5RjuMgpBTmkdMQecmdL97fhpE5b1AE1NQe2Zt+B9dSUMxD/gGw/UpAEMQBtq47+KME/98KSIs81GtPnxtCotTBHSV1iHE1ba6WrVCsPHyUbqRRn6R2QiccCzZZ4W8urnFFYOTpaznaZuC0wI9tU0PVEXuduKDbuptHMUdvFpvurUdwcILnpjXq0JOujS5SoQYziQX0Ud0cXSaXPkzRdsx6TFk6gEPZaPuvdF4DmOMg30JI6cQxKczu7GCt9RHGxkgysK+87R5Ea93cEutBG6ZUiCaPdS6HGIA7FD5WWA5gibVhkrktb3H8Z7Rlwh0od4qNtS+ee9DBOukjnnOEXrX6hLp1TXQcvaSuEekgk5GambNeoJ5565Zy35Gi6hjJu6fZbZzkMvBK3B3JakFIb0GuAtTqHA2lcQajp7sDQK7oHMgQ9RXuLTNFDtRjyDAf0UKmqFx+2LtjVAJczvh7sKHzykJ/9AVBLAwQUAAAACACRZildK1poEKUAAADIAAAADwAAAERhY01ldGFkYXRhLnhtbDWOOw7CMBBEeyTuYLknm6QBIcdpqGlA9IvjgIM/wTYocDUKjsQVMAE03Wj05r0eT1YPRpOr9EE5W9EiyymRVrhG2UNFL7GdLWjNpxO2QrG99ZKkuQ0VPcbYLwGCOEqDITNKeBdcGzPhDISzDtInKDQoYCO9Qq3uGNMFlHlRQl7SxCSErdFI3uJeaIUnN+8GZbuSwViPg93XjCexTxj8i6QEPyf+BlBLAwQUAAAACACRZildT6BgIjECAABdBAAACgAAAE9yaWdpbi54bWylVMtu2zAQvBfoPwi6NiYp6klDUuBYNlAUaQzY7Z2hqISwJDokVST5tR76Sf2FUrak1o17KsALd3d2hrMkf37/kV4/N7XzjSstZJu5HkCuw1smS9E+ZG5nqlniXufv36UFZXdKPIjWsYBWZ+6jMYc5hJo98oZq0AimpJaVAUw2UD/VmivbFpaUwS1XgtbilRpLAjHyMETYtV0dJ91QtqcPfKPkgSsjuD6GbeLrSVPuAysKoBSOgSG/lK2hotWr54NUhpcFNTSvqOVN4cXcgNsaxWkzNBvZfvM5p/xn2vDM7XFujnv+twr+heGHWr40vDW9CiXuOyOVdvPjKS6cA14QlMLLtqR3dnd0cUR/LC2RMC95GWLmhffBrOQengWYVjMScD6L/YBEqKIBS6oUTuWTGVSZHCMczRCxa+fheYjnmIA4JGGM4w8IzZEVfSocUKu2fIvxA+AnmJAkGTF92YCw5yg7ZnqH8tvppvT2gp2UtQbb4zUCO6r3dvNUXzmDIZkXH30D6MpZdrXpFM9a3hlFbc2mu68F+8RfdnLP2ywhSRCWrExQghgjnrXxD95zKeMU+vY+ID6Ipuq/BjRETwrz/732E8vQ7zTu87mmy0fO9rprpscwBpwvSmQubGTJa2AfopuvbsKErIMFIWvse+ECFRFa+Di2s1sUS3TjJ+tVjItisVwEURIHXhGt/DjEBUJRtF6H9rEMvQcp59zpbU910jr6gkGQwgtx+0vA6ZvIfwFQSwMEFAAAAAgAkWYpXe2h0+CPAAAArwAAABMAAABbQ29udGVudF9UeXBlc10ueG1sJY1LDoIwEIav0sweBl0YY9q6UG/gBZo6PCJMGzoYPJsLj+QVLLD8n9/v89XneejVi8bUBTawKytQxD48Om4MTFIXRzhbfX9HSipXORloReIJMfmWBpfKEIlzUodxcJLl2GB0/ukawn1VHdAHFmIpZPkAq69Uu6kXdZuzvWHzHNRl6y0oA0Kz4Gqj1bji7R9QSwECFAAUAAAACACRZildSgjBabwCAAACCAAACQAAAAAAAAAAAAAAAAAAAAAAbW9kZWwueG1sUEsBAhQAFAAAAAgAkWYpXStaaBClAAAAyAAAAA8AAAAAAAAAAAAAAAAA4wIAAERhY01ldGFkYXRhLnhtbFBLAQIUABQAAAAIAJFmKV1PoGAiMQIAAF0EAAAKAAAAAAAAAAAAAAAAALUDAABPcmlnaW4ueG1sUEsBAhQAFAAAAAgAkWYpXe2h0+CPAAAArwAAABMAAAAAAAAAAAAAAAAADgYAAFtDb250ZW50X1R5cGVzXS54bWxQSwUGAAAAAAQABADtAAAAzgYAAAAA", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -1093,36 +1023,38 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '3374' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308 + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-06-15T10:56:49.0332538", - "lastUpdatedTimeUtc": "2026-06-15T10:56:49.0332538", "percentComplete": null, - "error": null}' + string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '123' + - '24' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:10 GMT + - Wed, 09 Sep 2026 12:52:53 GMT + ETag: + - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c1bcdc31-39d0-44cf-90c9-51550917bca4 Pragma: - no-cache RequestId: - - 5820bc21-731a-4d1e-be64-b228c2108adc + - 66515aa2-17c3-4ed8-8091-5d108c58466c Retry-After: - '20' Strict-Transport-Security: @@ -1131,11 +1063,15 @@ interactions: - nosniff X-Frame-Options: - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' x-ms-operation-id: - - ec247437-8dc5-43ae-b83a-72b5117ae308 + - c1bcdc31-39d0-44cf-90c9-51550917bca4 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1148,33 +1084,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c1bcdc31-39d0-44cf-90c9-51550917bca4 response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-06-15T10:56:49.0332538", - "lastUpdatedTimeUtc": "2026-06-15T10:56:49.0332538", "percentComplete": null, - "error": null}' + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T12:52:53.5215885", + "lastUpdatedTimeUtc": "2026-09-09T12:52:53.5215885", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '123' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:30 GMT + - Wed, 09 Sep 2026 12:53:14 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c1bcdc31-39d0-44cf-90c9-51550917bca4 Pragma: - no-cache RequestId: - - f81e368d-f70b-41d0-b0be-33f46f49acb8 + - 6bd268b8-34b1-4603-9b8a-fda1b792d0f3 Retry-After: - '20' Strict-Transport-Security: @@ -1184,7 +1120,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ec247437-8dc5-43ae-b83a-72b5117ae308 + - c1bcdc31-39d0-44cf-90c9-51550917bca4 status: code: 200 message: OK @@ -1200,33 +1136,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c1bcdc31-39d0-44cf-90c9-51550917bca4 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:56:49.0332538", - "lastUpdatedTimeUtc": "2026-06-15T10:57:39.0754809", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:52:53.5215885", + "lastUpdatedTimeUtc": "2026-09-09T12:53:33.4344401", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:51 GMT + - Wed, 09 Sep 2026 12:53:34 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c1bcdc31-39d0-44cf-90c9-51550917bca4/result Pragma: - no-cache RequestId: - - 0d09ef51-3c67-4744-883f-bd2a8d354426 + - e6877fda-46a8-4f37-8e33-668adf7f0e68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1234,7 +1170,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ec247437-8dc5-43ae-b83a-72b5117ae308 + - c1bcdc31-39d0-44cf-90c9-51550917bca4 status: code: 200 message: OK @@ -1250,16 +1186,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec247437-8dc5-43ae-b83a-72b5117ae308/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c1bcdc31-39d0-44cf-90c9-51550917bca4/result response: body: - string: '{"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", - "displayName": "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", + "displayName": "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1267,11 +1203,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:57:52 GMT + - Wed, 09 Sep 2026 12:53:35 GMT Pragma: - no-cache RequestId: - - 7145b2f1-97f0-40fe-b973-c66690d12496 + - b026010a-aedc-478b-accd-a81db16189b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1295,32 +1231,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:53 GMT + - Wed, 09 Sep 2026 12:53:37 GMT Pragma: - no-cache RequestId: - - c6e3a746-6e05-4202-a310-9ed5fcc6b91b + - f5215720-8ac9-4bef-bb13-b9b164d57dfb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1346,79 +1283,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "90331bfe-c9c6-4a23-8189-a95e39d769c7", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d2488e06-7060-4cc0-b62c-538cf8c30c12", "type": "SQLDatabase", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "961e7b0e-af1b-4fd9-9242-3ec17a35d1a2", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "11891a3e-ee53-411b-9db9-c1af56a5b308", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1119' + - '896' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:57:53 GMT + - Wed, 09 Sep 2026 12:53:37 GMT Pragma: - no-cache RequestId: - - d5e5a8d4-68d4-4168-9cb0-8b0fd13b216e + - 8ee634d6-7a45-4819-9239-3db6b9a1b35f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1446,15 +1370,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/d2488e06-7060-4cc0-b62c-538cf8c30c12 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/11891a3e-ee53-411b-9db9-c1af56a5b308 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1464,11 +1388,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:57:54 GMT + - Wed, 09 Sep 2026 12:53:37 GMT Pragma: - no-cache RequestId: - - 7965b7f8-cf6e-4731-a974-9c98edc1e731 + - c431e433-23be-46b4-b5df-2e1ae743ad84 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml index 17b1169d3..0920d33ec 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:25 GMT + - Wed, 09 Sep 2026 12:46:08 GMT Pragma: - no-cache RequestId: - - 200ac6db-1650-45a2-80d6-d4b4f8d24ad6 + - 3c30e58b-4987-400f-874e-1613b09217e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,51 +63,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '599' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:26 GMT + - Wed, 09 Sep 2026 12:46:09 GMT Pragma: - no-cache RequestId: - - c737602e-f2ad-4a1d-a32f-3d5304402215 + - 29f79937-6bb5-479f-9d0e-c80db7cbb534 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -132,51 +120,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '599' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:27 GMT + - Wed, 09 Sep 2026 12:46:09 GMT Pragma: - no-cache RequestId: - - b097a4c7-575f-4d07-8629-c415f0f8057e + - a822b7d5-4c6a-4bc5-a5e3-d3f25e90a826 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,13 +167,13 @@ interactions: message: OK - request: body: '{"displayName": "fabcli000001", "type": "SemanticModel", "folderId": null, - "definition": {"parts": [{"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": - "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, - {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", + {"path": "definition/model.tmdl", "payload": "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", + "payloadType": "InlineBase64"}, {"path": "definition/tables/Table.tmdl", "payload": + "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -212,15 +187,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/semanticModels response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -230,13 +205,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:27 GMT + - Wed, 09 Sep 2026 12:46:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8fece3a-7cae-4af7-b891-90228cae085e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/309686ec-419e-4bf2-bdfe-e08a24ea651b Pragma: - no-cache RequestId: - - 0d695ef7-b979-4d41-9435-dc02d9121de9 + - ba39dc05-f44a-4a9e-8a08-33efd320e4b9 Retry-After: - '20' Strict-Transport-Security: @@ -250,7 +225,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f8fece3a-7cae-4af7-b891-90228cae085e + - 309686ec-419e-4bf2-bdfe-e08a24ea651b status: code: 202 message: Accepted @@ -266,33 +241,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8fece3a-7cae-4af7-b891-90228cae085e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/309686ec-419e-4bf2-bdfe-e08a24ea651b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:49:28.2420457", - "lastUpdatedTimeUtc": "2026-06-15T10:49:39.0561888", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:46:10.5448103", + "lastUpdatedTimeUtc": "2026-09-09T12:46:21.3930236", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:48 GMT + - Wed, 09 Sep 2026 12:46:30 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8fece3a-7cae-4af7-b891-90228cae085e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/309686ec-419e-4bf2-bdfe-e08a24ea651b/result Pragma: - no-cache RequestId: - - b8c49b1d-12f4-4a2c-a8d3-baa4fcb0bd92 + - 46afea3d-8161-4a87-a9a5-b5130acbffbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -300,7 +275,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f8fece3a-7cae-4af7-b891-90228cae085e + - 309686ec-419e-4bf2-bdfe-e08a24ea651b status: code: 200 message: OK @@ -316,16 +291,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8fece3a-7cae-4af7-b891-90228cae085e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/309686ec-419e-4bf2-bdfe-e08a24ea651b/result response: body: - string: '{"id": "0d4d2a07-c552-4fbd-8c9a-525c74b07566", "type": "SemanticModel", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "be7732ad-e899-4908-9ee2-436a97971515", "type": "SemanticModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -333,11 +308,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:49:49 GMT + - Wed, 09 Sep 2026 12:46:30 GMT Pragma: - no-cache RequestId: - - 9868e051-49bb-4777-b01e-247a030dbd96 + - 5490cca5-93d0-41a5-bce1-e8c3d344ed4e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -361,32 +336,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:50 GMT + - Wed, 09 Sep 2026 12:46:31 GMT Pragma: - no-cache RequestId: - - 8fb4808c-df25-4f0b-a7f8-00d4dadafd47 + - 5f5d0885-4e60-4e06-bfae-3734dac2da53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,53 +388,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "0d4d2a07-c552-4fbd-8c9a-525c74b07566", "type": "SemanticModel", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "be7732ad-e899-4908-9ee2-436a97971515", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '635' + - '402' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:50 GMT + - Wed, 09 Sep 2026 12:46:32 GMT Pragma: - no-cache RequestId: - - eb0e3449-da50-4aa5-a486-2d9f7d711e93 + - 7fb0478b-c0c1-4ef0-8184-be0bffc6d8b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -484,32 +447,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/0d4d2a07-c552-4fbd-8c9a-525c74b07566 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/be7732ad-e899-4908-9ee2-436a97971515 response: body: - string: '{"id": "0d4d2a07-c552-4fbd-8c9a-525c74b07566", "type": "SemanticModel", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "be7732ad-e899-4908-9ee2-436a97971515", "type": "SemanticModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '158' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:52 GMT + - Wed, 09 Sep 2026 12:46:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0cd07417-525e-43c5-9e91-21c95b9fcbc4 + - 6af777c3-139f-48f5-b332-9611e341a5ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -537,15 +500,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/0d4d2a07-c552-4fbd-8c9a-525c74b07566/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/be7732ad-e899-4908-9ee2-436a97971515/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -555,13 +518,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:49:52 GMT + - Wed, 09 Sep 2026 12:46:33 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/06671f8a-5d4c-441a-bff0-6243eb393bd7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65f7ca47-2cb0-46f2-897d-82866a73f2af Pragma: - no-cache RequestId: - - 21e49c6f-435e-4b2d-99a7-e6a67d320026 + - 76e948fe-688c-4c09-84c0-dc45443be47e Retry-After: - '20' Strict-Transport-Security: @@ -575,7 +538,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 06671f8a-5d4c-441a-bff0-6243eb393bd7 + - 65f7ca47-2cb0-46f2-897d-82866a73f2af status: code: 202 message: Accepted @@ -591,33 +554,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/06671f8a-5d4c-441a-bff0-6243eb393bd7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65f7ca47-2cb0-46f2-897d-82866a73f2af response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:49:53.1924495", - "lastUpdatedTimeUtc": "2026-06-15T10:49:53.6273503", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:46:33.7839091", + "lastUpdatedTimeUtc": "2026-09-09T12:46:34.2144023", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '129' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:13 GMT + - Wed, 09 Sep 2026 12:46:54 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/06671f8a-5d4c-441a-bff0-6243eb393bd7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65f7ca47-2cb0-46f2-897d-82866a73f2af/result Pragma: - no-cache RequestId: - - c348bc55-d6e4-4132-96b7-a0cf6a02fb54 + - 4354183d-321b-44fd-96b2-15a81cea4eb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -625,7 +588,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 06671f8a-5d4c-441a-bff0-6243eb393bd7 + - 65f7ca47-2cb0-46f2-897d-82866a73f2af status: code: 200 message: OK @@ -641,9 +604,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/06671f8a-5d4c-441a-bff0-6243eb393bd7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65f7ca47-2cb0-46f2-897d-82866a73f2af/result response: body: string: '{"definition": {"format": "TMDL", "parts": [{"path": "definition.pbism", @@ -658,7 +621,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -666,11 +629,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:50:14 GMT + - Wed, 09 Sep 2026 12:46:54 GMT Pragma: - no-cache RequestId: - - e5abcd24-eaa1-4144-8799-be793cd95afa + - dae271b3-a613-4769-9861-600e91e8df95 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -694,32 +657,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:15 GMT + - Wed, 09 Sep 2026 12:46:55 GMT Pragma: - no-cache RequestId: - - 5153d471-2daa-408a-9141-bd553f221484 + - 980fab12-c4af-40e4-b9e4-5e5c4d70b381 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -745,53 +709,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "0d4d2a07-c552-4fbd-8c9a-525c74b07566", "type": "SemanticModel", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "be7732ad-e899-4908-9ee2-436a97971515", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '635' + - '402' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:16 GMT + - Wed, 09 Sep 2026 12:46:56 GMT Pragma: - no-cache RequestId: - - aa7f3ef5-c76d-4b9f-9b16-8e64c4783aec + - 38e9c938-6ba4-4209-8633-e8f966179077 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -817,53 +768,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "0d4d2a07-c552-4fbd-8c9a-525c74b07566", "type": "SemanticModel", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "be7732ad-e899-4908-9ee2-436a97971515", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '635' + - '402' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:17 GMT + - Wed, 09 Sep 2026 12:46:56 GMT Pragma: - no-cache RequestId: - - 943c2aa4-26d2-494f-8129-b4089a5b30c1 + - 32222c71-fc13-4c9e-8b1d-9841c01a458b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -899,15 +837,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -917,13 +855,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:17 GMT + - Wed, 09 Sep 2026 12:46:56 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c23621c8-3da1-40fe-89c3-5592cc8d3c09 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bdff03d4-3a6c-4be1-9b20-d3a275489033 Pragma: - no-cache RequestId: - - 8eb2af7e-5348-4e7b-84c3-5b9ece2f812e + - a1d79e95-58ac-4810-84d3-f5fcdf92922d Retry-After: - '20' Strict-Transport-Security: @@ -937,7 +875,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c23621c8-3da1-40fe-89c3-5592cc8d3c09 + - bdff03d4-3a6c-4be1-9b20-d3a275489033 status: code: 202 message: Accepted @@ -953,33 +891,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c23621c8-3da1-40fe-89c3-5592cc8d3c09 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bdff03d4-3a6c-4be1-9b20-d3a275489033 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:50:18.4566368", - "lastUpdatedTimeUtc": "2026-06-15T10:50:29.2243283", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:46:57.1556713", + "lastUpdatedTimeUtc": "2026-09-09T12:47:08.3982317", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:39 GMT + - Wed, 09 Sep 2026 12:47:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c23621c8-3da1-40fe-89c3-5592cc8d3c09/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bdff03d4-3a6c-4be1-9b20-d3a275489033/result Pragma: - no-cache RequestId: - - 4c959b5c-e442-4b53-a7a5-7d66f3295ad9 + - fe796b6f-5ecd-4d7c-8b64-85073140bfe0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -987,7 +925,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c23621c8-3da1-40fe-89c3-5592cc8d3c09 + - bdff03d4-3a6c-4be1-9b20-d3a275489033 status: code: 200 message: OK @@ -1003,16 +941,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c23621c8-3da1-40fe-89c3-5592cc8d3c09/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bdff03d4-3a6c-4be1-9b20-d3a275489033/result response: body: - string: '{"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", - "displayName": "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", + "displayName": "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1020,11 +958,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:50:40 GMT + - Wed, 09 Sep 2026 12:47:17 GMT Pragma: - no-cache RequestId: - - 2aabb416-89ec-46e1-bea9-4e7979ab6e67 + - cf634ca0-ade7-44cf-b142-62ac9779285d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1048,32 +986,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:40 GMT + - Wed, 09 Sep 2026 12:47:18 GMT Pragma: - no-cache RequestId: - - e9126723-a8ae-40b9-b257-35070a3af735 + - 1fd614fb-7cd9-4b31-953a-0c4779de4723 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1099,55 +1038,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "0d4d2a07-c552-4fbd-8c9a-525c74b07566", "type": "SemanticModel", "displayName": - "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "be7732ad-e899-4908-9ee2-436a97971515", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '667' + - '430' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:50:41 GMT + - Wed, 09 Sep 2026 12:47:18 GMT Pragma: - no-cache RequestId: - - f139865b-2187-45aa-a8fd-0c3d871b9c08 + - 24eea226-d150-458e-a4c9-85185f68ff03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1175,15 +1101,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/0d4d2a07-c552-4fbd-8c9a-525c74b07566 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/be7732ad-e899-4908-9ee2-436a97971515 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1193,11 +1119,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:50:44 GMT + - Wed, 09 Sep 2026 12:47:20 GMT Pragma: - no-cache RequestId: - - 299d455b-fe60-438b-b1af-273a2a9e3334 + - 28f90f41-e9e9-4de4-a1cb-e5f0eeeaa447 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml index c7a9d7e47..7a60ba317 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:04 GMT + - Wed, 09 Sep 2026 12:44:06 GMT Pragma: - no-cache RequestId: - - 79d8870b-298b-44e5-b391-782d56cedf8f + - 859c0da5-0e31-467a-927b-a1a864bb4b13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,43 +63,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '420' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:04 GMT + - Wed, 09 Sep 2026 12:44:07 GMT Pragma: - no-cache RequestId: - - 4f1b3efb-8754-4d70-8583-e1d6045f8229 + - c97dd4e9-6664-42a6-bc04-e9d817be32bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -124,43 +112,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '420' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:05 GMT + - Wed, 09 Sep 2026 12:44:07 GMT Pragma: - no-cache RequestId: - - efaf2810-a684-4504-8ffc-733804141d2f + - 940c1028-fdb5-4049-868e-98a59be2955a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -189,32 +164,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/sparkJobDefinitions response: body: - string: '{"id": "352d8f95-f880-4bee-97fd-116cd142b186", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "d628a9d3-0521-494c-9b0d-e4ed2b05e207", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '165' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:07 GMT + - Wed, 09 Sep 2026 12:44:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5c43394b-8245-4dee-9cc6-ba1aa6fc6bb9 + - a181e9c8-13d5-485b-b84d-6361382391cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -240,32 +215,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:08 GMT + - Wed, 09 Sep 2026 12:44:09 GMT Pragma: - no-cache RequestId: - - 3043f02a-58ff-4bee-aa07-507cc89c7d59 + - 46cf81cf-b813-4e8c-bdb1-5031af868793 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -291,45 +267,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "352d8f95-f880-4bee-97fd-116cd142b186", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d628a9d3-0521-494c-9b0d-e4ed2b05e207", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '470' + - '231' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:09 GMT + - Wed, 09 Sep 2026 12:44:10 GMT Pragma: - no-cache RequestId: - - 1d6a15c3-e738-45c3-8649-966cfb469cc4 + - 199e3502-3055-49d0-a3ea-0c1ea2e054ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,32 +318,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/352d8f95-f880-4bee-97fd-116cd142b186 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/d628a9d3-0521-494c-9b0d-e4ed2b05e207 response: body: - string: '{"id": "352d8f95-f880-4bee-97fd-116cd142b186", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "d628a9d3-0521-494c-9b0d-e4ed2b05e207", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '165' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:10 GMT + - Wed, 09 Sep 2026 12:44:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - af84237a-2aef-4f09-8083-b9ed8a223388 + - 1105f661-75a2-4a3e-92d2-1acf842aad0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -408,9 +371,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/352d8f95-f880-4bee-97fd-116cd142b186/getDefinition?format=SparkJobDefinitionV1 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/d628a9d3-0521-494c-9b0d-e4ed2b05e207/getDefinition?format=SparkJobDefinitionV1 response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": @@ -419,21 +382,21 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '585' + - '584' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:11 GMT + - Wed, 09 Sep 2026 12:44:11 GMT Pragma: - no-cache RequestId: - - 6ecff7f3-0476-4179-8744-5535e461c437 + - f7d7ee35-f993-44b0-ae91-b82b81cb2617 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -459,32 +422,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:12 GMT + - Wed, 09 Sep 2026 12:44:11 GMT Pragma: - no-cache RequestId: - - a0b66692-b536-4a33-982b-832b64bca770 + - 8b5e92bb-2c6f-449d-8a5f-dca4956f1a37 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -510,45 +474,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "352d8f95-f880-4bee-97fd-116cd142b186", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d628a9d3-0521-494c-9b0d-e4ed2b05e207", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '470' + - '231' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:13 GMT + - Wed, 09 Sep 2026 12:44:12 GMT Pragma: - no-cache RequestId: - - 2ed8e5f6-3b09-46b3-abe2-6c871db184a8 + - 67d1b75c-c053-4347-841f-bc40579da377 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -574,45 +525,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "352d8f95-f880-4bee-97fd-116cd142b186", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d628a9d3-0521-494c-9b0d-e4ed2b05e207", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '470' + - '231' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:14 GMT + - Wed, 09 Sep 2026 12:44:12 GMT Pragma: - no-cache RequestId: - - 57de169c-4dcc-4eb0-9bc5-281c76761fdb + - 395a8f83-14a2-423b-8bc2-606b1f7c23f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -644,16 +582,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", "type": "SparkJobDefinition", - "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -663,13 +601,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:16 GMT + - Wed, 09 Sep 2026 12:44:14 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6be6fa54-879f-442e-a54e-7076eed4d84f + - 78764244-d1a7-4f88-b37b-672395d87582 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -695,32 +633,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:17 GMT + - Wed, 09 Sep 2026 12:44:15 GMT Pragma: - no-cache RequestId: - - e73cf356-cbda-4aea-948b-bf8f4275996d + - 107da3ac-cc38-4a12-b409-ce11528a03bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -746,47 +685,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "352d8f95-f880-4bee-97fd-116cd142b186", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "d628a9d3-0521-494c-9b0d-e4ed2b05e207", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '500' + - '261' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:47:17 GMT + - Wed, 09 Sep 2026 12:44:15 GMT Pragma: - no-cache RequestId: - - e1a7f8e5-c9d9-4ef2-a066-0da1f59e7a0f + - e8e443a7-c936-404c-b06e-3e142e9fa46b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -814,15 +740,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/352d8f95-f880-4bee-97fd-116cd142b186 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/d628a9d3-0521-494c-9b0d-e4ed2b05e207 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -832,11 +758,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 10:47:18 GMT + - Wed, 09 Sep 2026 12:44:16 GMT Pragma: - no-cache RequestId: - - ce528a23-80f1-432f-8036-0d87659076a4 + - c91129a7-3c7f-4c6d-8e32-674ef8e197fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml index 08e167b67..312f292ca 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:18 GMT + - Wed, 09 Sep 2026 12:54:50 GMT Pragma: - no-cache RequestId: - - ba4e8ed1-cf79-43ca-aacb-2291679a7ec1 + - d3a04c47-7755-450f-929a-121a008c7a74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,79 +63,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1142' + - '917' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:18 GMT + - Wed, 09 Sep 2026 12:54:52 GMT Pragma: - no-cache RequestId: - - 65a515b4-30f5-4ba6-ae98-515318beaf8d + - e7d7343b-b548-4183-a285-6d073030e443 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,79 +148,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1142' + - '917' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:19 GMT + - Wed, 09 Sep 2026 12:54:51 GMT Pragma: - no-cache RequestId: - - 58804e85-610b-41b3-8e63-ace5cbb4daf4 + - 3435e0dc-7dc8-43e4-9b22-105340a2d193 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -261,32 +236,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/userdatafunctions response: body: - string: '{"id": "c9407c8c-c738-4bef-9d91-ea245b3471fa", "type": "UserDataFunction", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "bb789eec-0ae9-4a99-809c-a841793e9589", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:23 GMT + - Wed, 09 Sep 2026 12:54:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0646f93b-fd5d-41c4-8cf8-281ccb8b863b + - 1afa93c2-72b0-47a5-bca7-4a978e47a0d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,32 +287,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:24 GMT + - Wed, 09 Sep 2026 12:54:54 GMT Pragma: - no-cache RequestId: - - f7c976b2-87c5-4b71-8f01-aec690a292b5 + - f40882cc-990f-4d48-8d6d-de55d46dc8ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -363,81 +339,68 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c9407c8c-c738-4bef-9d91-ea245b3471fa", "type": "UserDataFunction", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bb789eec-0ae9-4a99-809c-a841793e9589", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1189' + - '965' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:25 GMT + - Wed, 09 Sep 2026 12:54:54 GMT Pragma: - no-cache RequestId: - - d0f0424d-368b-44fa-9519-a5814e53dfb8 + - 5cb24928-4687-4cba-9292-df1e40f6e21f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -463,32 +426,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/c9407c8c-c738-4bef-9d91-ea245b3471fa + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/bb789eec-0ae9-4a99-809c-a841793e9589 response: body: - string: '{"id": "c9407c8c-c738-4bef-9d91-ea245b3471fa", "type": "UserDataFunction", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "bb789eec-0ae9-4a99-809c-a841793e9589", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:25 GMT + - Wed, 09 Sep 2026 12:54:56 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 28e4615a-4d88-41da-8e15-cddc8a88ea9f + - d8e27297-d656-4667-b748-c5b2e277dc10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -516,15 +479,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/c9407c8c-c738-4bef-9d91-ea245b3471fa/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/bb789eec-0ae9-4a99-809c-a841793e9589/getDefinition response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -534,13 +497,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:27 GMT + - Wed, 09 Sep 2026 12:54:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e6e04ff8-5b39-4a40-8133-0b8e919143f3 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca638cb1-0b5c-47d9-8df0-83b490b60418 Pragma: - no-cache RequestId: - - 9fae87be-a352-48f2-bbf0-b05223ef55cc + - 6024ede6-0161-4c31-900b-b5f0035de3ca Retry-After: - '20' Strict-Transport-Security: @@ -554,7 +517,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - e6e04ff8-5b39-4a40-8133-0b8e919143f3 + - ca638cb1-0b5c-47d9-8df0-83b490b60418 status: code: 202 message: Accepted @@ -570,33 +533,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e6e04ff8-5b39-4a40-8133-0b8e919143f3 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca638cb1-0b5c-47d9-8df0-83b490b60418 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:59:27.8278813", - "lastUpdatedTimeUtc": "2026-06-15T10:59:28.1334424", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:54:57.0169641", + "lastUpdatedTimeUtc": "2026-09-09T12:54:57.2815347", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:47 GMT + - Wed, 09 Sep 2026 12:55:16 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e6e04ff8-5b39-4a40-8133-0b8e919143f3/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca638cb1-0b5c-47d9-8df0-83b490b60418/result Pragma: - no-cache RequestId: - - 5cb4f989-fcc5-42bd-8ffd-d857370cd01e + - c88d4610-3ab8-4762-aa43-f108aa47c021 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -604,7 +567,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - e6e04ff8-5b39-4a40-8133-0b8e919143f3 + - ca638cb1-0b5c-47d9-8df0-83b490b60418 status: code: 200 message: OK @@ -620,9 +583,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e6e04ff8-5b39-4a40-8133-0b8e919143f3/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ca638cb1-0b5c-47d9-8df0-83b490b60418/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", @@ -630,7 +593,7 @@ interactions: "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -638,11 +601,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 10:59:49 GMT + - Wed, 09 Sep 2026 12:55:17 GMT Pragma: - no-cache RequestId: - - e8b1e0ad-ffae-4842-b42c-ed6f6169dc29 + - e7363b13-fb39-4d78-a8e5-eea15e284d2b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -666,32 +629,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:49 GMT + - Wed, 09 Sep 2026 12:55:18 GMT Pragma: - no-cache RequestId: - - b31b32c2-9395-49a4-858a-16710e8f4b5e + - 3be54dfc-cee6-44e2-9022-8b310cbdd1df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -717,81 +681,68 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c9407c8c-c738-4bef-9d91-ea245b3471fa", "type": "UserDataFunction", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bb789eec-0ae9-4a99-809c-a841793e9589", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1189' + - '965' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:51 GMT + - Wed, 09 Sep 2026 12:55:19 GMT Pragma: - no-cache RequestId: - - f7e42bd9-6624-4cca-a882-2c49277f301a + - 213aad57-e2e2-470a-9fd8-07c51206406a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -817,81 +768,68 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c9407c8c-c738-4bef-9d91-ea245b3471fa", "type": "UserDataFunction", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bb789eec-0ae9-4a99-809c-a841793e9589", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1189' + - '965' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:51 GMT + - Wed, 09 Sep 2026 12:55:19 GMT Pragma: - no-cache RequestId: - - 7f4d30d6-0fd4-4094-b2f4-9b2ca4cdfcd1 + - 1305831f-ed99-48c5-a893-1cdb29357f0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,15 +860,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -940,15 +878,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 10:59:52 GMT + - Wed, 09 Sep 2026 12:55:20 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73d061cd-8960-4b8c-9efa-4e4458215eee + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e3bafc22-7d98-415d-8de8-90a3208bffca Pragma: - no-cache RequestId: - - 778257be-22c5-4e6a-b865-edabee580ca2 + - 6798eab1-3ae2-4c6f-a11d-dc29f6b0ae01 Retry-After: - '20' Strict-Transport-Security: @@ -962,7 +900,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 73d061cd-8960-4b8c-9efa-4e4458215eee + - e3bafc22-7d98-415d-8de8-90a3208bffca status: code: 202 message: Accepted @@ -978,33 +916,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73d061cd-8960-4b8c-9efa-4e4458215eee + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e3bafc22-7d98-415d-8de8-90a3208bffca response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T10:59:52.3389195", - "lastUpdatedTimeUtc": "2026-06-15T10:59:55.2848464", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T12:55:20.3783018", + "lastUpdatedTimeUtc": "2026-09-09T12:55:23.235387", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:13 GMT + - Wed, 09 Sep 2026 12:55:40 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73d061cd-8960-4b8c-9efa-4e4458215eee/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e3bafc22-7d98-415d-8de8-90a3208bffca/result Pragma: - no-cache RequestId: - - 11c1e236-5cbc-42f0-a0f8-f2e2c6677cd0 + - 77ee74ab-a96a-43b8-8f66-2d89f93b2d50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1012,7 +950,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 73d061cd-8960-4b8c-9efa-4e4458215eee + - e3bafc22-7d98-415d-8de8-90a3208bffca status: code: 200 message: OK @@ -1028,16 +966,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73d061cd-8960-4b8c-9efa-4e4458215eee/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e3bafc22-7d98-415d-8de8-90a3208bffca/result response: body: - string: '{"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1045,11 +983,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:00:14 GMT + - Wed, 09 Sep 2026 12:55:41 GMT Pragma: - no-cache RequestId: - - 8f60212e-8a54-4403-85a5-945b84405833 + - 3279fce6-b664-4e5f-b69b-7db0639afac8 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1073,32 +1011,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:14 GMT + - Wed, 09 Sep 2026 12:55:42 GMT Pragma: - no-cache RequestId: - - 1238198b-2050-4619-b8d8-48992176d5d9 + - a973b5da-5e18-4c68-a19c-ca9fa8dd5fe5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1124,83 +1063,70 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", - "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", - "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c9407c8c-c738-4bef-9d91-ea245b3471fa", "type": "UserDataFunction", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bb789eec-0ae9-4a99-809c-a841793e9589", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1218' + - '997' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:00:15 GMT + - Wed, 09 Sep 2026 12:55:42 GMT Pragma: - no-cache RequestId: - - 374a42f6-2063-4aa9-9209-23ba87094d25 + - 22d6b133-2425-4746-a342-300dbc9f1844 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1228,15 +1154,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/c9407c8c-c738-4bef-9d91-ea245b3471fa + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/bb789eec-0ae9-4a99-809c-a841793e9589 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1246,11 +1172,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 11:00:17 GMT + - Wed, 09 Sep 2026 12:55:42 GMT Pragma: - no-cache RequestId: - - 5c24287f-d6c8-4da5-9d72-89b57120394b + - 2d60e05f-37f7-477c-abb1-4619a7f01efe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml index 90554a8bc..1eaa4afb5 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml @@ -11,32 +11,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:30 GMT + - Wed, 09 Sep 2026 13:03:33 GMT Pragma: - no-cache RequestId: - - fe38bf4c-fab8-4c5c-a05f-818563d8b53c + - 02ca847c-fc13-469c-8baf-86901886acd9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,104 +63,102 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", - "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1559' + - '1572' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:30 GMT + - Wed, 09 Sep 2026 13:03:33 GMT Pragma: - no-cache RequestId: - - ab0e7b10-a47d-4d57-b68d-4e665cdf84ed + - 577dc3d1-4cfe-47b3-bb85-9695beafb683 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -185,104 +184,102 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", - "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1559' + - '1572' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:31 GMT + - Wed, 09 Sep 2026 13:03:34 GMT Pragma: - no-cache RequestId: - - 46343226-f978-4f1c-868c-a832efb1ae06 + - f09f85af-d798-46a1-9508-dbe816e9bb24 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,15 +309,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/notebooks response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -330,15 +327,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:34 GMT + - Wed, 09 Sep 2026 13:03:36 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fd52a586-068a-48b9-8bcc-c30179f61c9a + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bbf22d7-9884-47fa-a81c-ee9f4412a04a Pragma: - no-cache RequestId: - - 6c92009c-a881-4dc4-aa1c-d543766bbf0b + - cd82cfa1-2461-435d-9183-a4ac75fa8723 Retry-After: - '20' Strict-Transport-Security: @@ -352,7 +349,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - fd52a586-068a-48b9-8bcc-c30179f61c9a + - 2bbf22d7-9884-47fa-a81c-ee9f4412a04a status: code: 202 message: Accepted @@ -368,33 +365,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fd52a586-068a-48b9-8bcc-c30179f61c9a + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bbf22d7-9884-47fa-a81c-ee9f4412a04a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:05:34.1802456", - "lastUpdatedTimeUtc": "2026-06-15T11:05:35.4352924", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:03:35.7635562", + "lastUpdatedTimeUtc": "2026-09-09T13:03:37.2317964", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '131' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:55 GMT + - Wed, 09 Sep 2026 13:03:56 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fd52a586-068a-48b9-8bcc-c30179f61c9a/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bbf22d7-9884-47fa-a81c-ee9f4412a04a/result Pragma: - no-cache RequestId: - - b591c9dd-9a10-42f3-9b54-24e3a2c4710f + - 3f53a20b-8080-4f0f-bfd0-b5d18614c714 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -402,7 +399,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - fd52a586-068a-48b9-8bcc-c30179f61c9a + - 2bbf22d7-9884-47fa-a81c-ee9f4412a04a status: code: 200 message: OK @@ -418,16 +415,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fd52a586-068a-48b9-8bcc-c30179f61c9a/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bbf22d7-9884-47fa-a81c-ee9f4412a04a/result response: body: - string: '{"id": "c501bfd0-7a11-4e4d-b5a1-fced4b5030d0", "type": "Notebook", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "5c7c30a8-77bb-41e7-9740-ff0e37667f37", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -435,11 +432,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:05:56 GMT + - Wed, 09 Sep 2026 13:03:57 GMT Pragma: - no-cache RequestId: - - f50e868c-8a4c-4ec3-817c-a485ec756edb + - 9ccec4c3-ce85-4d78-a440-3d2164a53181 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -463,32 +460,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:57 GMT + - Wed, 09 Sep 2026 13:03:57 GMT Pragma: - no-cache RequestId: - - 8abb6292-2744-4e57-8ff7-dfc6f2f984f4 + - 8fab2c2f-3eb7-4df8-b213-15aea81ddd5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -514,106 +512,104 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", - "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c501bfd0-7a11-4e4d-b5a1-fced4b5030d0", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5c7c30a8-77bb-41e7-9740-ff0e37667f37", "type": "Notebook", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1594' + - '1612' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:57 GMT + - Wed, 09 Sep 2026 13:03:57 GMT Pragma: - no-cache RequestId: - - 537a650d-6652-41f1-9e97-3e57795d5ac5 + - 4a8baed1-76a9-4ae5-afb8-ba14c0357074 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -639,32 +635,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/c501bfd0-7a11-4e4d-b5a1-fced4b5030d0 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/5c7c30a8-77bb-41e7-9740-ff0e37667f37 response: body: - string: '{"id": "c501bfd0-7a11-4e4d-b5a1-fced4b5030d0", "type": "Notebook", - "displayName": "fabcli000001", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "5c7c30a8-77bb-41e7-9740-ff0e37667f37", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,ETag,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '154' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:58 GMT + - Wed, 09 Sep 2026 13:03:58 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6ca83c06-c416-4691-a401-352f24528c63 + - 0fd8a213-00f8-4d4d-8750-fc81addfb4ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -692,15 +688,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/c501bfd0-7a11-4e4d-b5a1-fced4b5030d0/getDefinition?format=ipynb + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/5c7c30a8-77bb-41e7-9740-ff0e37667f37/getDefinition?format=ipynb response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId,Location,Retry-After,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -710,13 +706,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:05:58 GMT + - Wed, 09 Sep 2026 13:03:59 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5de6283-208b-4863-be35-83017acb385a + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f8032d9-f283-47d5-99b3-c38165d1406f Pragma: - no-cache RequestId: - - 03607f38-b1a0-415c-96da-ca8a84b2044f + - d8101b21-6772-4f5f-986c-5369f8d09605 Retry-After: - '20' Strict-Transport-Security: @@ -730,7 +726,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c5de6283-208b-4863-be35-83017acb385a + - 1f8032d9-f283-47d5-99b3-c38165d1406f status: code: 202 message: Accepted @@ -746,33 +742,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5de6283-208b-4863-be35-83017acb385a + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f8032d9-f283-47d5-99b3-c38165d1406f response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:05:59.4160034", - "lastUpdatedTimeUtc": "2026-06-15T11:06:00.154434", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:03:59.5214803", + "lastUpdatedTimeUtc": "2026-09-09T13:03:59.8563301", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:20 GMT + - Wed, 09 Sep 2026 13:04:19 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5de6283-208b-4863-be35-83017acb385a/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f8032d9-f283-47d5-99b3-c38165d1406f/result Pragma: - no-cache RequestId: - - e485606d-5397-486d-b0fc-fa95d60b0bf0 + - 82189851-cf22-405d-9610-d4f1f623b0a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -780,7 +776,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c5de6283-208b-4863-be35-83017acb385a + - 1f8032d9-f283-47d5-99b3-c38165d1406f status: code: 200 message: OK @@ -796,18 +792,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5de6283-208b-4863-be35-83017acb385a/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f8032d9-f283-47d5-99b3-c38165d1406f/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.ipynb", "payload": - "eyJuYmZvcm1hdCI6NCwibmJmb3JtYXRfbWlub3IiOjUsIm1ldGFkYXRhIjp7Imxhbmd1YWdlX2luZm8iOnsibmFtZSI6InB5dGhvbiJ9LCJrZXJuZWxfaW5mbyI6eyJuYW1lIjoic3luYXBzZV9weXNwYXJrIiwianVweXRlcl9rZXJuZWxfbmFtZSI6bnVsbH0sImEzNjVDb21wdXRlT3B0aW9ucyI6bnVsbCwic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOjAsImRlcGVuZGVuY2llcyI6eyJsYWtlaG91c2UiOm51bGx9fSwiY2VsbHMiOlt7ImNlbGxfdHlwZSI6ImNvZGUiLCJtZXRhZGF0YSI6eyJtaWNyb3NvZnQiOnsibGFuZ3VhZ2UiOiJweXRob24iLCJsYW5ndWFnZV9ncm91cCI6InN5bmFwc2VfcHlzcGFyayJ9fSwic291cmNlIjpbIiMgV2VsY29tZSB0byB5b3VyIG5ldyBub3RlYm9va1xuIiwiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIl0sIm91dHB1dHMiOltdfV19", + "eyJuYmZvcm1hdCI6NCwibmJmb3JtYXRfbWlub3IiOjUsIm1ldGFkYXRhIjp7ImRlcGVuZGVuY2llcyI6eyJsYWtlaG91c2UiOm51bGx9LCJsYW5ndWFnZV9pbmZvIjp7Im5hbWUiOiJweXRob24ifSwia2VybmVsX2luZm8iOnsibmFtZSI6InN5bmFwc2VfcHlzcGFyayIsImp1cHl0ZXJfa2VybmVsX25hbWUiOm51bGx9LCJhMzY1Q29tcHV0ZU9wdGlvbnMiOm51bGwsInNlc3Npb25LZWVwQWxpdmVUaW1lb3V0IjowfSwiY2VsbHMiOlt7ImNlbGxfdHlwZSI6ImNvZGUiLCJtZXRhZGF0YSI6eyJtaWNyb3NvZnQiOnsibGFuZ3VhZ2UiOiJweXRob24iLCJsYW5ndWFnZV9ncm91cCI6InN5bmFwc2VfcHlzcGFyayJ9fSwic291cmNlIjpbIiMgV2VsY29tZSB0byB5b3VyIG5ldyBub3RlYm9va1xuIiwiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIl0sIm91dHB1dHMiOltdfV19", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -815,11 +811,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:06:20 GMT + - Wed, 09 Sep 2026 13:04:20 GMT Pragma: - no-cache RequestId: - - f8478017-7511-4b36-be54-8a80a66caaeb + - a94ac3e7-ea83-45ca-a567-fbd66bad5cf9 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -843,32 +839,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:21 GMT + - Wed, 09 Sep 2026 13:04:20 GMT Pragma: - no-cache RequestId: - - a1ab2e9c-ee46-4b44-abf1-ff99f06b89ac + - 88121430-a682-4f9b-adc9-74b5a447cc69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -894,106 +891,104 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", - "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c501bfd0-7a11-4e4d-b5a1-fced4b5030d0", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5c7c30a8-77bb-41e7-9740-ff0e37667f37", "type": "Notebook", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1594' + - '1612' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:22 GMT + - Wed, 09 Sep 2026 13:04:21 GMT Pragma: - no-cache RequestId: - - 525a4053-af59-4cf2-881e-d501ba5f8401 + - 969d454e-896c-4f82-81b7-c67aeacdd6ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1019,106 +1014,104 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", - "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c501bfd0-7a11-4e4d-b5a1-fced4b5030d0", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5c7c30a8-77bb-41e7-9740-ff0e37667f37", "type": "Notebook", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1594' + - '1612' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:23 GMT + - Wed, 09 Sep 2026 13:04:22 GMT Pragma: - no-cache RequestId: - - 1b781f50-08b4-4aa4-aafa-82553e760807 + - 99392efb-919e-442d-8548-3091355963e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1144,32 +1137,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:24 GMT + - Wed, 09 Sep 2026 13:04:21 GMT Pragma: - no-cache RequestId: - - 0d935ff7-aa18-424f-b68e-fb8d9732e65f + - ef4f30f0-fbb0-43d8-acdf-1a3a4512c606 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1195,32 +1189,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:25 GMT + - Wed, 09 Sep 2026 13:04:22 GMT Pragma: - no-cache RequestId: - - 858c039b-7648-4193-93a7-ae12a9c76a99 + - de52895e-7ade-4505-921d-4effd39d1187 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1235,10 +1230,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "folderId": null, "displayName": "fabcli000001_new_20", + body: '{"type": "Notebook", "folderId": null, "displayName": "fabcli000001_new_22", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}, {"path": "notebook-content.ipynb", "payload": - "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImxhbmd1YWdlX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInB5dGhvbiIKICAgICAgICB9LAogICAgICAgICJrZXJuZWxfaW5mbyI6IHsKICAgICAgICAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIiwKICAgICAgICAgICAgImp1cHl0ZXJfa2VybmVsX25hbWUiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAiYTM2NUNvbXB1dGVPcHRpb25zIjogbnVsbCwKICAgICAgICAic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOiAwLAogICAgICAgICJkZXBlbmRlbmNpZXMiOiB7CiAgICAgICAgICAgICJsYWtlaG91c2UiOiBudWxsCiAgICAgICAgfQogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", + "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImRlcGVuZGVuY2llcyI6IHsKICAgICAgICAgICAgImxha2Vob3VzZSI6IG51bGwKICAgICAgICB9LAogICAgICAgICJsYW5ndWFnZV9pbmZvIjogewogICAgICAgICAgICAibmFtZSI6ICJweXRob24iCiAgICAgICAgfSwKICAgICAgICAia2VybmVsX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInN5bmFwc2VfcHlzcGFyayIsCiAgICAgICAgICAgICJqdXB5dGVyX2tlcm5lbF9uYW1lIjogbnVsbAogICAgICAgIH0sCiAgICAgICAgImEzNjVDb21wdXRlT3B0aW9ucyI6IG51bGwsCiAgICAgICAgInNlc3Npb25LZWVwQWxpdmVUaW1lb3V0IjogMAogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", "payloadType": "InlineBase64"}], "format": "ipynb"}}' headers: Accept: @@ -1252,15 +1247,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1270,15 +1265,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:26 GMT + - Wed, 09 Sep 2026 13:04:23 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7792399c-b9bc-4616-a2e8-42c2d35d07a8 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b4854c0-279c-481f-bfd2-135cb46d384d Pragma: - no-cache RequestId: - - cfa35714-8a47-48dc-a6be-4b4a6f2108e6 + - 645e7556-f3e7-4a6c-8a6e-ac411a35bf3b Retry-After: - '20' Strict-Transport-Security: @@ -1292,7 +1287,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7792399c-b9bc-4616-a2e8-42c2d35d07a8 + - 3b4854c0-279c-481f-bfd2-135cb46d384d status: code: 202 message: Accepted @@ -1308,33 +1303,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7792399c-b9bc-4616-a2e8-42c2d35d07a8 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b4854c0-279c-481f-bfd2-135cb46d384d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-15T11:06:26.5643281", - "lastUpdatedTimeUtc": "2026-06-15T11:06:27.4081955", "percentComplete": 100, - "error": null}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:04:23.7290202", + "lastUpdatedTimeUtc": "2026-09-09T13:04:25.201425", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' headers: Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id + - RequestId,Location,x-ms-operation-id,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '132' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:46 GMT + - Wed, 09 Sep 2026 13:04:44 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7792399c-b9bc-4616-a2e8-42c2d35d07a8/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b4854c0-279c-481f-bfd2-135cb46d384d/result Pragma: - no-cache RequestId: - - 5eb8c74a-58fa-4a2c-ac79-a8b4caca8c89 + - 8ceccc5f-613e-48e8-9cbf-38b264017082 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1342,7 +1337,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7792399c-b9bc-4616-a2e8-42c2d35d07a8 + - 3b4854c0-279c-481f-bfd2-135cb46d384d status: code: 200 message: OK @@ -1358,16 +1353,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7792399c-b9bc-4616-a2e8-42c2d35d07a8/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b4854c0-279c-481f-bfd2-135cb46d384d/result response: body: - string: '{"id": "bde7261c-50a0-4606-bd87-22278e1478ad", "type": "Notebook", - "displayName": "fabcli000001_new_20", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}' + string: '{"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", + "displayName": "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1375,11 +1370,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 15 Jun 2026 11:06:48 GMT + - Wed, 09 Sep 2026 13:04:44 GMT Pragma: - no-cache RequestId: - - fc233ae6-add4-4af8-9c67-02ceea6d6e45 + - c745b4b4-bb46-4a36-81b4-3763a8d39a84 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1403,32 +1398,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12", + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3182' + - '3484' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:49 GMT + - Wed, 09 Sep 2026 13:04:45 GMT Pragma: - no-cache RequestId: - - 8740b963-47af-4fd9-b687-a924eadd2b8c + - 4cf068ed-97fa-48c2-b186-77ea1964bf2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1454,108 +1450,106 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items response: body: - string: '{"value": [{"id": "f47e5509-3340-4a11-b74d-1aebd6df265f", "type": "Report", - "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ac5ffa01-a77c-43de-9fdc-d50b60c86a89", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "06d3a5bb-4d62-4374-a312-0822a7ce9c89", "type": "SemanticModel", "displayName": - "fabcli000001_new_6", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "76f8755e-0f57-4b80-9b65-a25bd486e81c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d912d01-9073-4dda-9c14-ee3993fbd3a8", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "83d190c8-2b43-4123-ae1e-ae22b422052c", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "ba176319-79a7-4a20-9357-11738e6503d9", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c20bba97-49e0-4a5e-9e58-baae4d1e8913", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "34f25514-1efe-4070-86b5-b2678fb89c48", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "d3683fd1-87d2-4fb9-8538-dd761a30b472", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7942a85d-190e-40b3-9659-bb31a02c4112", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "7612d813-64c5-4ca8-a261-f441d6ad2312", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "2d93ab4d-78f0-4a86-8d44-d6776f1ee22d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "17cd2571-9f61-4ea9-9cf4-7d82a7a88062", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "5e0d591e-e5cd-4fae-bdfb-e8d473d2a8bf", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ee9853a-91c9-483b-8340-00f4f70a8ecb", + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "9a1e4344-3f15-4de7-b2cb-87c4c7abe887", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "70701dd3-9eb5-44bf-bf52-0fcfd679ce11", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "a674edaa-c914-4afc-9f00-cf305b87d978", + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "4ec4dcb7-f7fb-444c-926b-dda2d6cb2dd2", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": - "fabcli000001_auto", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "abbf809b-f343-4444-a082-756c2b144c45", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "953e3291-3cc4-4ff5-89b4-bee5bc41acad", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "93275b39-2921-42a0-9474-e1a07d413978", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "871d1cc4-b5ff-4d8f-8b9a-a36c31f15cd3", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "115a5d28-08e8-414c-82ed-d91b031c40b3", "type": "Reflex", "displayName": - "fabcli000001_new_11", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "c31599c1-0ddd-4589-84ce-a1fbaab4d6be", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "eb08b743-d5c0-423a-9eb6-cf1a2a9d12e8", "type": "SQLDatabase", "displayName": - "fabcli000001_new_13", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "a1759c75-9fc7-49a9-9baf-e3f589448c8d", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "11d849a9-cb68-45cc-b9f2-8c1c497a8a36", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "6ab6b053-0b13-49d0-911c-60a67f123b88", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "736c4d6e-4d68-44d7-91c9-4ef016f32bb6", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "8e65abdc-476c-4d56-9594-d2775b579945", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "4afad2d3-e2d2-429f-aa79-3e9ee5b11b94", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, - {"id": "744e3236-87fe-460b-a23c-c03fe34c6d0a", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "5c084a30-12f0-4185-bbda-024be855d623", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "d37bfb77-762c-4afc-af66-9072f7d2ff23", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c490858f-0333-499e-9fa3-b229b9d2d87d", - "type": "Environment", "displayName": "fabcli000001_new_19", "description": - "", "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "c501bfd0-7a11-4e4d-b5a1-fced4b5030d0", - "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}, {"id": "bde7261c-50a0-4606-bd87-22278e1478ad", - "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", - "workspaceId": "e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12"}]}' + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5c7c30a8-77bb-41e7-9740-ff0e37667f37", "type": "Notebook", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '1627' + - '1643' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 15 Jun 2026 11:06:50 GMT + - Wed, 09 Sep 2026 13:04:46 GMT Pragma: - no-cache RequestId: - - b39781c8-d253-4f8a-87f1-8328c0eec1e8 + - 53c17c89-a08e-47a3-90c0-8f5798ed65d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1583,15 +1577,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.6.1 + - ms-fabric-cli-test/1.7.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e4cb3f71-1a22-4bf7-8ff9-747f9c39ce12/items/c501bfd0-7a11-4e4d-b5a1-fced4b5030d0 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/5c7c30a8-77bb-41e7-9740-ff0e37667f37 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -1601,11 +1595,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 15 Jun 2026 11:06:52 GMT + - Wed, 09 Sep 2026 13:04:46 GMT Pragma: - no-cache RequestId: - - c0129b3a-e2a5-4a84-9a88-cbbaaebc5f5c + - 84a517d1-51a5-413c-b734-7aaee3fa76fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[GraphModel].yaml new file mode 100644 index 000000000..e30a29b8a --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[GraphModel].yaml @@ -0,0 +1,1403 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:04:47 GMT + Pragma: + - no-cache + RequestId: + - a647d8f6-e7c7-4c8f-aca6-38fe969d1af1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1616' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:04:47 GMT + Pragma: + - no-cache + RequestId: + - 18277039-b336-40ae-bbbf-060aa8ea5d09 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1616' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:04:48 GMT + Pragma: + - no-cache + RequestId: + - fa25b0a8-3d7e-4253-9515-89462cc97c03 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:04:48 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfe226a1-dd47-4151-8813-5988b165ed71 + Pragma: + - no-cache + RequestId: + - 8f3ec5f1-a253-45a9-a96d-b31d49d1d4c1 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - cfe226a1-dd47-4151-8813-5988b165ed71 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfe226a1-dd47-4151-8813-5988b165ed71 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:04:49.2027094", + "lastUpdatedTimeUtc": "2026-09-09T13:05:01.4466178", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:10 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfe226a1-dd47-4151-8813-5988b165ed71/result + Pragma: + - no-cache + RequestId: + - 5a9d2669-c474-4d1b-a6c9-8b4eda61e966 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - cfe226a1-dd47-4151-8813-5988b165ed71 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfe226a1-dd47-4151-8813-5988b165ed71/result + response: + body: + string: '{"id": "805871fe-8b9d-4f05-8d0f-af3aa6bbfec8", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:05:09 GMT + Pragma: + - no-cache + RequestId: + - d8e17d40-c483-487d-9664-bc9110404e09 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:10 GMT + Pragma: + - no-cache + RequestId: + - 2ca8990b-209d-43af-838e-92016300a76a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "805871fe-8b9d-4f05-8d0f-af3aa6bbfec8", "type": "GraphModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1653' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:11 GMT + Pragma: + - no-cache + RequestId: + - 548c9256-bee9-4ba0-aef7-3e64d68fe46f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/805871fe-8b9d-4f05-8d0f-af3aa6bbfec8 + response: + body: + string: '{"id": "805871fe-8b9d-4f05-8d0f-af3aa6bbfec8", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:11 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 936df4a6-5708-410e-9407-635953bc2012 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/805871fe-8b9d-4f05-8d0f-af3aa6bbfec8/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:12 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5dad511-4a28-408d-9b68-f837e8c3f032 + Pragma: + - no-cache + RequestId: + - 8ed6b94c-8d29-4c5a-95b6-2017ebfb5a10 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - e5dad511-4a28-408d-9b68-f837e8c3f032 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5dad511-4a28-408d-9b68-f837e8c3f032 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:05:12.9415413", + "lastUpdatedTimeUtc": "2026-09-09T13:05:17.5348806", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:33 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5dad511-4a28-408d-9b68-f837e8c3f032/result + Pragma: + - no-cache + RequestId: + - afea31ef-a168-4fbc-bb2d-5283263de5c6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - e5dad511-4a28-408d-9b68-f837e8c3f032 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5dad511-4a28-408d-9b68-f837e8c3f032/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:05:34 GMT + Pragma: + - no-cache + RequestId: + - 7f920dea-d07e-43f3-b43c-e18c95bef544 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:34 GMT + Pragma: + - no-cache + RequestId: + - 97e08c0d-cbf2-4f75-990a-b1918cdc0104 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "805871fe-8b9d-4f05-8d0f-af3aa6bbfec8", "type": "GraphModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1653' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:34 GMT + Pragma: + - no-cache + RequestId: + - 12c4e8af-3b7e-4b07-8882-89b0b67a67a6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiR3JhcGhNb2RlbCIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2RhdGFTb3VyY2VzLzEuMC4wL3NjaGVtYS5qc29uIiwKICAgICJkYXRhU291cmNlcyI6IG51bGwKfQ==", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2dyYXBoRGVmaW5pdGlvbi8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibm9kZVRhYmxlcyI6IG51bGwsCiAgICAiZWRnZVRhYmxlcyI6IG51bGwKfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2dyYXBoU2V0dGluZ3MvMS4wLjAvc2NoZW1hLmpzb24iCn0=", + "payloadType": "InlineBase64"}, {"path": "graphType.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL2dyYXBoVHlwZS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibm9kZVR5cGVzIjogbnVsbCwKICAgICJlZGdlVHlwZXMiOiBudWxsCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vZ3JhcGhJbmRleC9kZWZpbml0aW9uL3N0eWxpbmdDb25maWd1cmF0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwKICAgICJtb2RlbExheW91dCI6IG51bGwsCiAgICAidmlzdWFsRm9ybWF0IjogbnVsbAp9", + "payloadType": "InlineBase64"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2041' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/805871fe-8b9d-4f05-8d0f-af3aa6bbfec8/updateDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:35 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/460fab15-5ac7-4dac-a0ef-0e75a1e980be + Pragma: + - no-cache + RequestId: + - ad1b6932-ebf9-482d-aa58-4be223434322 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 460fab15-5ac7-4dac-a0ef-0e75a1e980be + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/460fab15-5ac7-4dac-a0ef-0e75a1e980be + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:05:36.2071785", + "lastUpdatedTimeUtc": "2026-09-09T13:05:38.6242615", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:56 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/460fab15-5ac7-4dac-a0ef-0e75a1e980be/result + Pragma: + - no-cache + RequestId: + - 009658ea-8f7f-45f8-b349-4e19c3f9c231 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 460fab15-5ac7-4dac-a0ef-0e75a1e980be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/460fab15-5ac7-4dac-a0ef-0e75a1e980be/result + response: + body: + string: '{"id": "805871fe-8b9d-4f05-8d0f-af3aa6bbfec8", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:05:56 GMT + Pragma: + - no-cache + RequestId: + - 6dfbdfca-e610-4b8d-9b0b-7cfce9b18e50 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:57 GMT + Pragma: + - no-cache + RequestId: + - 3db3dc12-6c01-4ca8-9aab-299c5dc76181 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "805871fe-8b9d-4f05-8d0f-af3aa6bbfec8", "type": "GraphModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1653' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:57 GMT + Pragma: + - no-cache + RequestId: + - 140203e1-c672-43a7-8475-838892ce0c63 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/805871fe-8b9d-4f05-8d0f-af3aa6bbfec8 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 13:05:58 GMT + Pragma: + - no-cache + RequestId: + - a7e162c4-64cf-4247-bc63-0f186efb4b0c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Ontology].yaml new file mode 100644 index 000000000..cb1d4be9c --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Ontology].yaml @@ -0,0 +1,1265 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:59 GMT + Pragma: + - no-cache + RequestId: + - 978eb721-5342-4a3a-9783-2f38d0bce119 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1616' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:05:59 GMT + Pragma: + - no-cache + RequestId: + - cf4879a8-e6e9-4513-b1e9-104912ae547d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", + "type": "KQLDatabase", "displayName": "fabcli000001_new_7", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", + "type": "KQLQueryset", "displayName": "fabcli000001_new_8", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", + "type": "Eventhouse", "displayName": "fabcli000001_new_9", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", + "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", + "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", + "type": "KQLDashboard", "displayName": "fabcli000001_new_12", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", + "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", + "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", + "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2da361be-8f33-4d4a-bb51-25db95047770", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_new_16", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2ac9b642-a539-4c88-812e-a87858d79103", + "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", + "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "611a7d1b-0592-467f-9013-56bf1729784a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", "type": "Lakehouse", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", "type": "Environment", "displayName": + "fabcli000001_new_19", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "3b59253d-6fb9-4249-8635-31e023915863", "type": "GraphModel", "displayName": + "fabcli000001_new_20", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", "type": "Ontology", "displayName": + "fabcli000001_new_21", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", "type": "Lakehouse", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2846102d-cdaa-42a6-924c-8864141e2795", + "type": "GraphModel", "displayName": "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", "type": "Notebook", "displayName": + "fabcli000001_new_22", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1616' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:00 GMT + Pragma: + - no-cache + RequestId: + - 35eb78c3-ef26-4180-9644-43209cc2456d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:02 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ad0a906-bd39-4c4d-851d-129cfbd16968 + Pragma: + - no-cache + RequestId: + - 1faede89-5df7-4760-aa42-65645b32fd4d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 6ad0a906-bd39-4c4d-851d-129cfbd16968 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ad0a906-bd39-4c4d-851d-129cfbd16968 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T13:06:01.6087438", + "lastUpdatedTimeUtc": "2026-09-09T13:06:01.6087438", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:23 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ad0a906-bd39-4c4d-851d-129cfbd16968 + Pragma: + - no-cache + RequestId: + - 732ece66-0e7b-47d2-bf94-b6ae8735d13b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6ad0a906-bd39-4c4d-851d-129cfbd16968 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ad0a906-bd39-4c4d-851d-129cfbd16968 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T13:06:01.6087438", + "lastUpdatedTimeUtc": "2026-09-09T13:06:40.8461644", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:43 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ad0a906-bd39-4c4d-851d-129cfbd16968/result + Pragma: + - no-cache + RequestId: + - 0cccfda5-10ec-4010-aacb-fd376e86f830 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6ad0a906-bd39-4c4d-851d-129cfbd16968 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ad0a906-bd39-4c4d-851d-129cfbd16968/result + response: + body: + string: '{"id": "3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 13:06:44 GMT + Pragma: + - no-cache + RequestId: + - 3309f866-f164-4085-8366-746a56eaed75 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:45 GMT + Pragma: + - no-cache + RequestId: + - 68a5a327-7e46-4e01-bf6d-e70ae9777456 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca10dd6f-3496-434d-9d9a-539d913f6464", + "type": "SQLEndpoint", "displayName": "fabcli000001_lh_3fb433fdad6c4cba8fe9ad93f5694dbf", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", + "type": "Ontology", "displayName": "fabcli000001_new_21", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", + "type": "Lakehouse", "displayName": "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2846102d-cdaa-42a6-924c-8864141e2795", "type": "GraphModel", "displayName": + "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", + "type": "Notebook", "displayName": "fabcli000001_new_22", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5abb44e3-26f0-42e7-9dec-3a5ca28c1cde", + "type": "Lakehouse", "displayName": "fabcli000001_lh_3fb433fdad6c4cba8fe9ad93f5694dbf", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a0e9f9a-d00f-4238-b8ce-f8d568894745", "type": "GraphModel", "displayName": + "fabcli000001_graph_3fb433fdad6c4cba8fe9ad93f5694dbf", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1758' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:45 GMT + Pragma: + - no-cache + RequestId: + - f9159943-c97f-4610-b420-a6e3e8c3e59b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf + response: + body: + string: '{"id": "3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:46 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 59fa7227-9196-47a1-ac4f-e4cc421ef276 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '384' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:47 GMT + Pragma: + - no-cache + RequestId: + - 5227cc19-9893-479a-9f72-b4116ef32417 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:47 GMT + Pragma: + - no-cache + RequestId: + - 89ad226b-f20f-4f26-9e06-db22ac7e27c8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca10dd6f-3496-434d-9d9a-539d913f6464", + "type": "SQLEndpoint", "displayName": "fabcli000001_lh_3fb433fdad6c4cba8fe9ad93f5694dbf", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", + "type": "Ontology", "displayName": "fabcli000001_new_21", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", + "type": "Lakehouse", "displayName": "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2846102d-cdaa-42a6-924c-8864141e2795", "type": "GraphModel", "displayName": + "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", + "type": "Notebook", "displayName": "fabcli000001_new_22", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5abb44e3-26f0-42e7-9dec-3a5ca28c1cde", + "type": "Lakehouse", "displayName": "fabcli000001_lh_3fb433fdad6c4cba8fe9ad93f5694dbf", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a0e9f9a-d00f-4238-b8ce-f8d568894745", "type": "GraphModel", "displayName": + "fabcli000001_graph_3fb433fdad6c4cba8fe9ad93f5694dbf", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1758' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:48 GMT + Pragma: + - no-cache + RequestId: + - 733cccce-2d40-4d20-a00b-3c7a0698c627 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiT250b2xvZ3kiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '615' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf/updateDefinition + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 13:06:49 GMT + Pragma: + - no-cache + RequestId: + - 97c28745-5831-4a2a-9cc7-04cc5108ee14 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "2c67d953-d1f0-441b-9227-600c2de5fffc", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3484' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:50 GMT + Pragma: + - no-cache + RequestId: + - c526762a-35bf-4ea3-a0c7-3e036c4cc4ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items + response: + body: + string: '{"value": [{"id": "a271c4c9-33ff-420d-91aa-ee267b965976", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8f078318-7350-46a5-96ea-a839e1ba244e", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "698aafe0-fa35-47a0-b93b-449963e9d637", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "f8021e51-3cb5-4100-b52f-dca25dafca30", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5cea2c44-64cb-425b-b715-2491b09406fa", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c4d3d350-c83a-489e-a375-8126b8e8f3dc", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a22c9a4-6d3d-4323-9b84-321e0a0989da", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "6e7547d0-30cb-44cb-a1bb-b98d985c9187", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2d91e9ba-b10f-444c-b55c-c82085bcefc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "c6a25710-4374-419b-920f-84c9435f9fc0", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ca10dd6f-3496-434d-9d9a-539d913f6464", + "type": "SQLEndpoint", "displayName": "fabcli000001_lh_3fb433fdad6c4cba8fe9ad93f5694dbf", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "b106ed9f-e3ef-4343-a425-2ed64c5ed6e0", "type": "Notebook", "displayName": + "fabcli000001_new_2", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0991129d-1c7d-4ae0-a343-f71b1c1473b1", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "a42279f9-e8e9-44f7-a4fd-2f17b4c73923", "type": "DataPipeline", "displayName": + "fabcli000001_new_4", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "96f1d3b3-526f-4a40-8a3b-391e19049077", "type": "Eventhouse", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ff7412e2-b9be-495e-bfd4-183ee6919c7b", "type": "KQLDatabase", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "35c8be5a-6129-4564-bd67-997e45b86efa", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "9fbd5f36-b2d7-4dc4-8feb-6e8c37bf505e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "67122b49-92fc-4f46-857b-5300630dd4ed", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "4d8d29c9-61dd-46a7-b02a-79e1bf589a7a", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "0d4bd8bd-2218-4c92-b24c-89b67b7bfc47", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2596b49a-9c82-477d-ac20-82ddc560e7a3", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "e8a724b7-c11f-48db-81c9-e9a1c1e4667a", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ef1f55a8-9066-4143-add7-b5019b5e6840", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "bdecb667-84a4-46a1-b6f1-a36ca55bd0cb", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2da361be-8f33-4d4a-bb51-25db95047770", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "5db2c1f7-e1c9-4859-b98d-f353b86092aa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2ac9b642-a539-4c88-812e-a87858d79103", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "ca569afc-5f3d-41f6-addd-9b0a23d6abaf", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "611a7d1b-0592-467f-9013-56bf1729784a", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "ed135923-dcbe-4891-bb03-48de8b4a74af", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "92e8d387-1b02-42f5-b39c-06bf9618f43b", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "65d8ab67-4d7c-4d66-9e45-38c40326d919", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3b59253d-6fb9-4249-8635-31e023915863", + "type": "GraphModel", "displayName": "fabcli000001_new_20", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2df90a4c-323e-44fb-98b6-a4fb826452ed", + "type": "Ontology", "displayName": "fabcli000001_new_21", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "2c2e96bc-8cd6-49eb-888a-4cc669438ab2", + "type": "Lakehouse", "displayName": "fabcli000001_new_21_lh_2df90a4c323e44fb98b6a4fb826452ed", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "2846102d-cdaa-42a6-924c-8864141e2795", "type": "GraphModel", "displayName": + "fabcli000001_new_21_graph_2df90a4c323e44fb98b6a4fb826452ed", "description": + "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "9c8ac37d-6532-4c6f-9bc9-3c68e1bddb3c", + "type": "Notebook", "displayName": "fabcli000001_new_22", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "2c67d953-d1f0-441b-9227-600c2de5fffc"}, {"id": "5abb44e3-26f0-42e7-9dec-3a5ca28c1cde", + "type": "Lakehouse", "displayName": "fabcli000001_lh_3fb433fdad6c4cba8fe9ad93f5694dbf", + "description": "", "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}, + {"id": "8a0e9f9a-d00f-4238-b8ce-f8d568894745", "type": "GraphModel", "displayName": + "fabcli000001_graph_3fb433fdad6c4cba8fe9ad93f5694dbf", "description": "", + "workspaceId": "2c67d953-d1f0-441b-9227-600c2de5fffc"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1758' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 13:06:51 GMT + Pragma: + - no-cache + RequestId: + - cff522c6-3df2-4acc-805d-7e47063daba9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/2c67d953-d1f0-441b-9227-600c2de5fffc/items/3fb433fd-ad6c-4cba-8fe9-ad93f5694dbf + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 13:06:51 GMT + Pragma: + - no-cache + RequestId: + - b2316cef-1e90-4624-9743-2e814a836811 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml index 5ab59b6e1..f86a0c0a6 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:03:30 GMT + - Wed, 09 Sep 2026 07:10:43 GMT Pragma: - no-cache RequestId: - - 746144c2-b100-48d2-9ade-05fa36455807 + - 6e4f101b-cb4f-4ce7-9788-5746fc43c620 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:03:32 GMT + - Wed, 09 Sep 2026 07:10:43 GMT Pragma: - no-cache RequestId: - - df81ce69-8dd4-4840-9216-6bb819f2d062 + - a54c439b-9547-408c-8847-0a6cc11b6330 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,21 +119,21 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '424' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:03:35 GMT + - Wed, 09 Sep 2026 07:10:48 GMT Pragma: - no-cache RequestId: - - 1259c26c-e67d-4a58-bce1-00d7fce3a048 + - db86dd17-c7df-4bc9-8344-f5086361e15e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "4cb4cf65-b25e-450e-8afc-8f600b1ce932", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "5761b945-b707-4180-b20d-5f0615d2295a", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '177' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:03:44 GMT + - Wed, 09 Sep 2026 07:10:55 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/4cb4cf65-b25e-450e-8afc-8f600b1ce932 + - https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a Pragma: - no-cache RequestId: - - 5b9978be-694f-4425-9154-7960c63ffba2 + - 34f9a45c-2515-4057-8e8c-8d0bb1bc731e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (dir; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "4cb4cf65-b25e-450e-8afc-8f600b1ce932", + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2524' + - '3453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:05:09 GMT + - Wed, 09 Sep 2026 07:19:01 GMT Pragma: - no-cache RequestId: - - b5c40cb2-d709-4d6c-8851-b4a41acd5a8b + - ea89c0ab-c869-42c3-90f6-a2575604d827 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,41 +266,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (dir; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/4cb4cf65-b25e-450e-8afc-8f600b1ce932/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items response: body: - string: '{"value": [{"id": "34c117de-d833-4e68-8069-e5712d633225", "type": "SQLEndpoint", - "displayName": "fabcli000001_autodtdm", "description": "", "workspaceId": - "4cb4cf65-b25e-450e-8afc-8f600b1ce932"}, {"id": "ed222b2a-79c3-46de-b29f-3f24a65fa8b1", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "4cb4cf65-b25e-450e-8afc-8f600b1ce932"}, {"id": "1151b062-a0d0-4724-9e6d-2b8b3070790b", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "4cb4cf65-b25e-450e-8afc-8f600b1ce932"}, {"id": "32017f84-6075-4b47-8413-5b20e99217ff", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "4cb4cf65-b25e-450e-8afc-8f600b1ce932"}, {"id": "f37226ea-badf-4318-8607-452763087720", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "4cb4cf65-b25e-450e-8afc-8f600b1ce932"}, - {"id": "5f487d0f-c741-4749-8ddb-0dbfcad1db79", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "4cb4cf65-b25e-450e-8afc-8f600b1ce932"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '369' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:05:09 GMT + - Wed, 09 Sep 2026 07:19:01 GMT Pragma: - no-cache RequestId: - - 335758d5-02b3-4d1c-8c54-59812d201e88 + - 1b310e58-6a0c-4bd1-aab4-09cb9a530a6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -326,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (dir; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/4cb4cf65-b25e-450e-8afc-8f600b1ce932 + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -344,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 07:05:10 GMT + - Wed, 09 Sep 2026 07:19:02 GMT Pragma: - no-cache RequestId: - - 4ec75bdf-29f7-4dc1-94c5-fc683c46b5ea + - efa1f472-400d-4fe3-bb3d-85e53f677afd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,4 +352,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[GraphModel].yaml new file mode 100644 index 000000000..377f3a78a --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[GraphModel].yaml @@ -0,0 +1,2394 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:10:57 GMT + Pragma: + - no-cache + RequestId: + - 219ef9bb-2131-4138-b722-daa636fdb20e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:10:56 GMT + Pragma: + - no-cache + RequestId: + - a05e93b2-e3b4-4efd-8c6a-65035e268743 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:10:57 GMT + Pragma: + - no-cache + RequestId: + - a1549587-df2b-4727-a143-58cb93b1b3dd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:10:59 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/19c4476b-de9c-449c-874b-0d157a2f795d + Pragma: + - no-cache + RequestId: + - 9504f95c-750b-4c53-b19d-a79aaff547c8 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 19c4476b-de9c-449c-874b-0d157a2f795d + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/19c4476b-de9c-449c-874b-0d157a2f795d + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:10:58.8710855", + "lastUpdatedTimeUtc": "2026-09-09T07:10:58.8710855", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:11:19 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/19c4476b-de9c-449c-874b-0d157a2f795d + Pragma: + - no-cache + RequestId: + - c56a7ccd-5b6b-4ddf-a36d-7674d7f58a2b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 19c4476b-de9c-449c-874b-0d157a2f795d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/19c4476b-de9c-449c-874b-0d157a2f795d + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:10:58.8710855", + "lastUpdatedTimeUtc": "2026-09-09T07:11:22.1070978", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:11:39 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/19c4476b-de9c-449c-874b-0d157a2f795d/result + Pragma: + - no-cache + RequestId: + - 984e0b3c-c0da-485b-9c7e-2c778305749b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 19c4476b-de9c-449c-874b-0d157a2f795d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/19c4476b-de9c-449c-874b-0d157a2f795d/result + response: + body: + string: '{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:11:40 GMT + Pragma: + - no-cache + RequestId: + - b8a950b8-7ee7-47f5-8e20-a54d4d544cd5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:11:41 GMT + Pragma: + - no-cache + RequestId: + - c6a44862-ffea-4ddb-b654-f4b84f961e17 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:11:41 GMT + Pragma: + - no-cache + RequestId: + - a88da564-710e-4f49-b6e6-0c76d7f4f700 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:11:42 GMT + Pragma: + - no-cache + RequestId: + - 45b8a8a1-9c70-4d03-aea1-8da0561b3dd7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:11:43 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + Pragma: + - no-cache + RequestId: + - ba6b48b1-1e30-47b0-a170-638327e3b00d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:11:43.0782034", + "lastUpdatedTimeUtc": "2026-09-09T07:11:43.0782034", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + Pragma: + - no-cache + RequestId: + - c07f5b9f-468e-4049-9987-57da297a9e07 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:11:43.0782034", + "lastUpdatedTimeUtc": "2026-09-09T07:12:05.4282485", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:23 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7661d421-54ec-4d19-b8bd-c5fe4a859fa1/result + Pragma: + - no-cache + RequestId: + - 6fcb65c9-c4f2-4708-acbf-c98e74319ad5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 7661d421-54ec-4d19-b8bd-c5fe4a859fa1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7661d421-54ec-4d19-b8bd-c5fe4a859fa1/result + response: + body: + string: '{"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:12:24 GMT + Pragma: + - no-cache + RequestId: + - f42784fd-a1ec-4ba6-b0e5-32ee586798b2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:25 GMT + Pragma: + - no-cache + RequestId: + - a278090c-fa78-42e6-a14d-8fcec9e5c99e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '212' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:26 GMT + Pragma: + - no-cache + RequestId: + - 5b3d640e-95d2-4942-bcc2-0e626771c2e6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '212' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:26 GMT + Pragma: + - no-cache + RequestId: + - 4f407b44-807e-4a1e-93fb-e44f0bb64346 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000003", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:27 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/032be42a-dfa9-4c89-9f1a-59020ea7bea2 + Pragma: + - no-cache + RequestId: + - b050ca05-13db-4a91-b5b0-a6da317bc493 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 032be42a-dfa9-4c89-9f1a-59020ea7bea2 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/032be42a-dfa9-4c89-9f1a-59020ea7bea2 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:12:27.4757253", + "lastUpdatedTimeUtc": "2026-09-09T07:12:39.5490786", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:47 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/032be42a-dfa9-4c89-9f1a-59020ea7bea2/result + Pragma: + - no-cache + RequestId: + - 18a9cde0-7643-4181-b21d-a1d83a98283b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 032be42a-dfa9-4c89-9f1a-59020ea7bea2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/032be42a-dfa9-4c89-9f1a-59020ea7bea2/result + response: + body: + string: '{"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", + "displayName": "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:12:48 GMT + Pragma: + - no-cache + RequestId: + - 9f97e9ff-71bb-4671-90c9-9e1f32318234 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:49 GMT + Pragma: + - no-cache + RequestId: + - 5dd89f44-12dc-494e-b42e-d447edbe548a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:50 GMT + Pragma: + - no-cache + RequestId: + - 46911840-cafb-4101-bee3-5a2d322d28af + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:50 GMT + Pragma: + - no-cache + RequestId: + - 9329b29f-f894-45d9-9b0d-e97b7decb58c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:50 GMT + Pragma: + - no-cache + RequestId: + - 69d4f847-6e28-455a-ad89-363d49b68326 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:50 GMT + Pragma: + - no-cache + RequestId: + - 7cf6e1bc-f9a1-4f00-8525-f31cb7031151 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:51 GMT + Pragma: + - no-cache + RequestId: + - bbe76372-6969-4b48-b68d-605836191e42 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:52 GMT + Pragma: + - no-cache + RequestId: + - b724b9df-d51a-4a81-951b-f4ed1f317260 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:52 GMT + Pragma: + - no-cache + RequestId: + - 42cb1d18-875a-4bf1-9596-7022d3f8e43a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:53 GMT + Pragma: + - no-cache + RequestId: + - ef52e01f-fb91-404c-ab4e-eef0cf6aaa86 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:53 GMT + Pragma: + - no-cache + RequestId: + - 98fcf082-f21c-4265-af07-50881d8eb8e9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:54 GMT + Pragma: + - no-cache + RequestId: + - 86534f41-844f-4da8-a20f-7254b762ea70 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:54 GMT + Pragma: + - no-cache + RequestId: + - 59e7a17f-6aa2-48c2-92bf-05c3830a589e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:55 GMT + Pragma: + - no-cache + RequestId: + - 4afbaaf6-8b94-4f11-a090-388fd62243e5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:56 GMT + Pragma: + - no-cache + RequestId: + - 84e2bf7b-bff1-4cc8-9f6b-8fe7c3cb6469 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:56 GMT + Pragma: + - no-cache + RequestId: + - ffca0c06-fda7-4156-9ee4-4f4c65a73239 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:56 GMT + Pragma: + - no-cache + RequestId: + - 53126955-61f7-4bca-8efb-2f836e7c50d0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:57 GMT + Pragma: + - no-cache + RequestId: + - f5ada674-5364-4b1d-bc0e-c3f3d5a91f11 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:57 GMT + Pragma: + - no-cache + RequestId: + - 265f9611-d9b1-437f-9e2f-85858d1eb652 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:57 GMT + Pragma: + - no-cache + RequestId: + - 55b20939-f648-44ef-af7a-eed30df14362 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "49a7e0e2-208c-4063-b63e-c8ea177ef4e4", "type": "GraphModel", "displayName": + "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:58 GMT + Pragma: + - no-cache + RequestId: + - c2d293da-cdc4-428a-a4ac-81aef32efb03 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/49a7e0e2-208c-4063-b63e-c8ea177ef4e4 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:12:58 GMT + Pragma: + - no-cache + RequestId: + - 8cd109a3-0c3b-45a6-aee1-f6f5e6807047 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:58 GMT + Pragma: + - no-cache + RequestId: + - f8836e41-9e4e-472f-b022-657e3ea9961c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "912834a5-65c5-469f-a219-885f1fecc6e9", "type": "GraphModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '212' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:12:59 GMT + Pragma: + - no-cache + RequestId: + - 6ef5cff5-f2a3-4e48-acf6-e0ee13a24acb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/912834a5-65c5-469f-a219-885f1fecc6e9 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:12:59 GMT + Pragma: + - no-cache + RequestId: + - 7c3beec1-1a3f-4f96-84ff-6a6f959ea1cc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:00 GMT + Pragma: + - no-cache + RequestId: + - 2a1c495c-dfd8-48e8-ada0-99ae15814a73 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "e992b602-7b2d-4ad2-ba30-47b3bff649bb", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:00 GMT + Pragma: + - no-cache + RequestId: + - 9ca7ffd4-552a-4fff-841e-517c94027e71 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/e992b602-7b2d-4ad2-ba30-47b3bff649bb + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:13:01 GMT + Pragma: + - no-cache + RequestId: + - 75ff91d0-e1dc-4e6f-a11b-0f73f1eac277 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Ontology].yaml new file mode 100644 index 000000000..5c26263b6 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Ontology].yaml @@ -0,0 +1,2676 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:01 GMT + Pragma: + - no-cache + RequestId: + - e5b62baf-8387-4326-9054-abfbb9a5417e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:02 GMT + Pragma: + - no-cache + RequestId: + - a8e0fea9-262a-47c5-ac24-ea841d6c192f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:02 GMT + Pragma: + - no-cache + RequestId: + - 1c7812da-a8d3-45e2-a439-2254a7e57ef4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:09 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ecbfc555-c9e0-44d7-a822-5653e275d6ba + Pragma: + - no-cache + RequestId: + - 3c47c8e8-31a6-4523-928a-d08cfd884ad0 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - ecbfc555-c9e0-44d7-a822-5653e275d6ba + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ecbfc555-c9e0-44d7-a822-5653e275d6ba + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:13:05.7399487", + "lastUpdatedTimeUtc": "2026-09-09T07:13:05.7399487", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ecbfc555-c9e0-44d7-a822-5653e275d6ba + Pragma: + - no-cache + RequestId: + - 4009be54-e502-4f00-b692-0a6b5f86de2b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ecbfc555-c9e0-44d7-a822-5653e275d6ba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ecbfc555-c9e0-44d7-a822-5653e275d6ba + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:13:05.7399487", + "lastUpdatedTimeUtc": "2026-09-09T07:13:49.7203688", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ecbfc555-c9e0-44d7-a822-5653e275d6ba/result + Pragma: + - no-cache + RequestId: + - d936946a-31ea-42d4-ba77-76546032ed4a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ecbfc555-c9e0-44d7-a822-5653e275d6ba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ecbfc555-c9e0-44d7-a822-5653e275d6ba/result + response: + body: + string: '{"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:13:50 GMT + Pragma: + - no-cache + RequestId: + - 4072da64-dbfb-4a9e-a2e7-5a90b3a31c1d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:51 GMT + Pragma: + - no-cache + RequestId: + - c216423f-744b-44f4-b7fc-6785c4070393 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:51 GMT + Pragma: + - no-cache + RequestId: + - 13c486be-cc3f-40c4-a0c4-3387f3d590fe + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:51 GMT + Pragma: + - no-cache + RequestId: + - 7b91e1c8-deeb-4cad-9381-4ba418a72bae + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:13:55 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/046e748f-3e9f-401f-9b05-292ebff93cf4 + Pragma: + - no-cache + RequestId: + - 5a2b5377-bb6b-4f37-83e2-92301d9dd88e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 046e748f-3e9f-401f-9b05-292ebff93cf4 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/046e748f-3e9f-401f-9b05-292ebff93cf4 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:13:52.881486", + "lastUpdatedTimeUtc": "2026-09-09T07:14:15.7005656", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:14:15 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/046e748f-3e9f-401f-9b05-292ebff93cf4/result + Pragma: + - no-cache + RequestId: + - d26fc31e-28a0-4e35-9bef-7797b96a5092 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 046e748f-3e9f-401f-9b05-292ebff93cf4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/046e748f-3e9f-401f-9b05-292ebff93cf4/result + response: + body: + string: '{"id": "a226365a-4672-4853-858e-92fa1f745e82", "type": "Ontology", + "displayName": "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:14:16 GMT + Pragma: + - no-cache + RequestId: + - 6622412d-f724-4fef-be11-7aecc31ef479 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:14:16 GMT + Pragma: + - no-cache + RequestId: + - eb2774a2-9cf2-403f-9d0a-cbd35b519bd4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", "type": "Ontology", "displayName": + "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", "type": "Lakehouse", "displayName": + "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", + "type": "GraphModel", "displayName": "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "a226365a-4672-4853-858e-92fa1f745e82", "type": "Ontology", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "375198a1-6341-4da4-bd40-afa83037fb18", "type": "Lakehouse", "displayName": + "fabcli000002_lh_a226365a46724853858e92fa1f745e82", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", + "type": "GraphModel", "displayName": "fabcli000002_graph_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '446' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:14:17 GMT + Pragma: + - no-cache + RequestId: + - 94c1f312-2419-4698-9efa-14137c3d6c06 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", "type": "Ontology", "displayName": + "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", "type": "Lakehouse", "displayName": + "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", + "type": "GraphModel", "displayName": "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "a226365a-4672-4853-858e-92fa1f745e82", "type": "Ontology", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "375198a1-6341-4da4-bd40-afa83037fb18", "type": "Lakehouse", "displayName": + "fabcli000002_lh_a226365a46724853858e92fa1f745e82", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", + "type": "GraphModel", "displayName": "fabcli000002_graph_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '446' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:14:17 GMT + Pragma: + - no-cache + RequestId: + - 359c81a0-b54d-41d2-a9c1-bb946cb032aa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000003", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:14:19 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + Pragma: + - no-cache + RequestId: + - 04a4b478-feb5-41ca-b2a7-de1d685b3cdc + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:14:18.5140765", + "lastUpdatedTimeUtc": "2026-09-09T07:14:18.5140765", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:14:40 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + Pragma: + - no-cache + RequestId: + - 1f0e2a59-6090-4c0e-bd3c-d9b680aee561 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:14:18.5140765", + "lastUpdatedTimeUtc": "2026-09-09T07:14:18.5140765", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:01 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + Pragma: + - no-cache + RequestId: + - 22c43f8d-1524-48e0-9af9-f999fddccd74 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:14:18.5140765", + "lastUpdatedTimeUtc": "2026-09-09T07:15:02.4578092", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:21 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60/result + Pragma: + - no-cache + RequestId: + - 779189aa-649e-4fdc-9b18-30e1cf6f7be3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 1cc6b6ac-b92e-4e64-bba6-7c47f2244e60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1cc6b6ac-b92e-4e64-bba6-7c47f2244e60/result + response: + body: + string: '{"id": "b2c98efd-9747-435c-a7ea-794667f37060", "type": "Ontology", + "displayName": "fabcli000003", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:15:22 GMT + Pragma: + - no-cache + RequestId: + - e74b5202-2d97-4a42-85ba-d62bc9bf9300 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:22 GMT + Pragma: + - no-cache + RequestId: + - 7f30c551-1906-470c-93f2-530bf3e7ef9a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:22 GMT + Pragma: + - no-cache + RequestId: + - 08e1c77e-b66f-4d5c-8d1e-90c65668e30c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:23 GMT + Pragma: + - no-cache + RequestId: + - 54e0eff7-f21d-480a-8e8a-bea2a3613ae4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:23 GMT + Pragma: + - no-cache + RequestId: + - b51907c8-1fe4-4a8f-a5b6-8a9a736b27be + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:24 GMT + Pragma: + - no-cache + RequestId: + - 606e7536-b1d4-4192-a858-82e03b246e6e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:24 GMT + Pragma: + - no-cache + RequestId: + - 8f0946f7-4b22-430f-abe7-4f1928461040 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:25 GMT + Pragma: + - no-cache + RequestId: + - 366ba35d-45b7-4719-b8a3-c311fb78585f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:26 GMT + Pragma: + - no-cache + RequestId: + - 8c0f9799-1192-402f-a317-65db996e32f5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:26 GMT + Pragma: + - no-cache + RequestId: + - 527d6b8e-2a60-49c6-b2ff-0d4e527b6e95 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:26 GMT + Pragma: + - no-cache + RequestId: + - 9d28e9a9-3431-47a6-bfd8-5dfa6ae95e61 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:27 GMT + Pragma: + - no-cache + RequestId: + - 55b2b39f-2a57-4f75-bead-2d315674c6d0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:28 GMT + Pragma: + - no-cache + RequestId: + - 23cc3589-0c02-43ac-bb64-940585fe4ce9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:28 GMT + Pragma: + - no-cache + RequestId: + - 712faf3e-7696-4264-90e0-89bea13e320a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:28 GMT + Pragma: + - no-cache + RequestId: + - 4a3676d5-a8aa-4332-91e5-e9c4f8c9eb5c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:28 GMT + Pragma: + - no-cache + RequestId: + - 51036790-a2ca-42a7-b17a-eed9e7579360 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:29 GMT + Pragma: + - no-cache + RequestId: + - 2d05a469-ec53-4f20-a5c8-be46d3340558 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:29 GMT + Pragma: + - no-cache + RequestId: + - 4df51e06-961e-431a-8215-a26765de7216 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:30 GMT + Pragma: + - no-cache + RequestId: + - a4c1860f-2ff0-4778-8d3e-8e00a2eb9e16 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:31 GMT + Pragma: + - no-cache + RequestId: + - b97a493a-bd5c-4a5e-b299-5fe88c539ab7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9c2d1bd2-0f3e-4b69-9270-45741debdfb4", "type": "SQLEndpoint", "displayName": + "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a226365a-4672-4853-858e-92fa1f745e82", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "375198a1-6341-4da4-bd40-afa83037fb18", + "type": "Lakehouse", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", "type": "GraphModel", "displayName": + "fabcli000002_graph_a226365a46724853858e92fa1f745e82", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b2c98efd-9747-435c-a7ea-794667f37060", + "type": "Ontology", "displayName": "fabcli000003", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "7e06177f-5bea-4805-a03e-75bccc2d63ef", + "type": "Lakehouse", "displayName": "fabcli000003_lh_b2c98efd9747435ca7ea794667f37060", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "12fd1bf3-8096-4020-9aab-44465f93ebbf", "type": "GraphModel", "displayName": + "fabcli000003_graph_b2c98efd9747435ca7ea794667f37060", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:31 GMT + Pragma: + - no-cache + RequestId: + - 8a36e99f-d1d9-4620-a848-20f5d6061cc0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/b2c98efd-9747-435c-a7ea-794667f37060 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:15:32 GMT + Pragma: + - no-cache + RequestId: + - 1d6b0f05-88b5-423c-808d-b7c5314d06e5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:32 GMT + Pragma: + - no-cache + RequestId: + - b5253ab6-6ecb-4012-8e5c-7440efb0cd98 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "b34cdb6a-fade-470b-aa04-dacbee053a26", + "type": "SQLEndpoint", "displayName": "fabcli000002_lh_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", "type": "Ontology", "displayName": + "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", "type": "Lakehouse", "displayName": + "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", + "type": "GraphModel", "displayName": "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "a226365a-4672-4853-858e-92fa1f745e82", "type": "Ontology", "displayName": + "fabcli000002", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "375198a1-6341-4da4-bd40-afa83037fb18", "type": "Lakehouse", "displayName": + "fabcli000002_lh_a226365a46724853858e92fa1f745e82", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6d6b1103-67f9-4cc1-a859-3917dce7bd52", + "type": "GraphModel", "displayName": "fabcli000002_graph_a226365a46724853858e92fa1f745e82", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '446' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:32 GMT + Pragma: + - no-cache + RequestId: + - fe36aa62-5c23-4728-bbd8-adc389b8edff + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/a226365a-4672-4853-858e-92fa1f745e82 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:15:33 GMT + Pragma: + - no-cache + RequestId: + - 92756cea-1168-4d76-80e4-472827c63116 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:33 GMT + Pragma: + - no-cache + RequestId: + - 4eea3eb4-2602-4ca5-9e28-e7753fe15d4c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "b1212b19-86ca-4a6e-8b97-7c5f9fc11a07", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "6b24bd78-8e6f-49ae-a43f-63bc2d925f98", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "2c6a55bd-9d1b-414e-954c-25b5e4576a4f", + "type": "Lakehouse", "displayName": "fabcli000001_lh_6b24bd788e6f49aea43f63bc2d925f98", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "af7eef0c-0859-47ef-a7e1-890ae225d813", "type": "GraphModel", "displayName": + "fabcli000001_graph_6b24bd788e6f49aea43f63bc2d925f98", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:34 GMT + Pragma: + - no-cache + RequestId: + - 9951f3c2-2892-48ea-8f38-18a805810f6a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/6b24bd78-8e6f-49ae-a43f-63bc2d925f98 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:15:35 GMT + Pragma: + - no-cache + RequestId: + - 9813c082-a1b7-410e-a008-a6893faffae0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-GraphModel].yaml new file mode 100644 index 000000000..cd5fd83ea --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-GraphModel].yaml @@ -0,0 +1,1050 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:57 GMT + Pragma: + - no-cache + RequestId: + - 4f41a94b-fdf1-46f8-8bac-42870a7a7c0d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:57 GMT + Pragma: + - no-cache + RequestId: + - 30288a8f-405a-4187-b189-3de1d3591a2f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:57 GMT + Pragma: + - no-cache + RequestId: + - 520a24f1-0600-4bdb-aa78-c4b084a65977 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:58 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42e80a72-9ad8-41b1-b11a-525a0f123c8b + Pragma: + - no-cache + RequestId: + - 709b2ef5-261c-44bd-8f11-abe0b2b75e93 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 42e80a72-9ad8-41b1-b11a-525a0f123c8b + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42e80a72-9ad8-41b1-b11a-525a0f123c8b + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:16:59.1940149", + "lastUpdatedTimeUtc": "2026-09-09T07:17:10.9816774", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:19 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42e80a72-9ad8-41b1-b11a-525a0f123c8b/result + Pragma: + - no-cache + RequestId: + - ba895c7a-8f9d-48b4-a995-c3bc50e796ce + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 42e80a72-9ad8-41b1-b11a-525a0f123c8b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42e80a72-9ad8-41b1-b11a-525a0f123c8b/result + response: + body: + string: '{"id": "dd90a39d-ad2c-4efd-a7c6-185ba3988d79", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:17:19 GMT + Pragma: + - no-cache + RequestId: + - 6cad1db7-d15c-46ae-a47a-b3df1a66212f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:20 GMT + Pragma: + - no-cache + RequestId: + - e634f974-a1e6-498a-8ae6-873fd94402b2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "dd90a39d-ad2c-4efd-a7c6-185ba3988d79", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:21 GMT + Pragma: + - no-cache + RequestId: + - dacf3ad6-239d-4dd7-976a-ac38cddf6a50 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:21 GMT + Pragma: + - no-cache + RequestId: + - ed4a5145-b684-4f6f-88a3-88a1ffca6852 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:21 GMT + Pragma: + - no-cache + RequestId: + - ec0b543c-38e2-4f20-97ec-4e5913339b50 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "dd90a39d-ad2c-4efd-a7c6-185ba3988d79", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:23 GMT + Pragma: + - no-cache + RequestId: + - 842d816d-cf2d-4644-868c-3422d9c8010d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:23 GMT + Pragma: + - no-cache + RequestId: + - 260e5621-8c35-44f5-a538-ac59c7829b75 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:23 GMT + Pragma: + - no-cache + RequestId: + - e539c33e-e5e2-4a93-b700-d8861418e67f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "dd90a39d-ad2c-4efd-a7c6-185ba3988d79", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:24 GMT + Pragma: + - no-cache + RequestId: + - b24be26f-2add-4ca2-b5e1-1cb07ee4a6bf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:24 GMT + Pragma: + - no-cache + RequestId: + - 5521b878-04b7-4ecf-a642-72a08b062abc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:25 GMT + Pragma: + - no-cache + RequestId: + - 0a456a54-d557-4b48-b969-c532b9d00fe5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "dd90a39d-ad2c-4efd-a7c6-185ba3988d79", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:25 GMT + Pragma: + - no-cache + RequestId: + - 237d7885-c265-4097-a557-b13dd162365c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:26 GMT + Pragma: + - no-cache + RequestId: + - c65caf75-f50b-4e3d-8d3f-5e74268425c6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:26 GMT + Pragma: + - no-cache + RequestId: + - 499ddea2-c63b-4c5a-ab2e-f7d28d9668a2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "dd90a39d-ad2c-4efd-a7c6-185ba3988d79", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:27 GMT + Pragma: + - no-cache + RequestId: + - 1ad201dc-17e5-4291-ae72-65782abb4a83 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/dd90a39d-ad2c-4efd-a7c6-185ba3988d79 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:17:27 GMT + Pragma: + - no-cache + RequestId: + - fed3f6c1-bb58-43dd-a526-3236a5ed21e5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Ontology].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Ontology].yaml new file mode 100644 index 000000000..72ab796cf --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Ontology].yaml @@ -0,0 +1,1246 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:27 GMT + Pragma: + - no-cache + RequestId: + - 96ded2fc-0062-4ca0-a667-0df0519db539 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:28 GMT + Pragma: + - no-cache + RequestId: + - 58e3f283-ea3b-46f8-91e3-0cbb756fc528 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:28 GMT + Pragma: + - no-cache + RequestId: + - 25822ba2-e20c-4685-882b-2c838ddbe72f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:30 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + Pragma: + - no-cache + RequestId: + - 21a54add-a6f5-447e-afab-0574f48fecd5 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 501122ff-a5fc-4f2d-8106-bd796293f0f7 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:17:29.7686368", + "lastUpdatedTimeUtc": "2026-09-09T07:17:29.7686368", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:17:51 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + Pragma: + - no-cache + RequestId: + - a5014878-5c88-4f70-81be-2e5c4c6e4cf8 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 501122ff-a5fc-4f2d-8106-bd796293f0f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:17:29.7686368", + "lastUpdatedTimeUtc": "2026-09-09T07:17:29.7686368", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:12 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + Pragma: + - no-cache + RequestId: + - bc9cc320-9a17-4626-a169-480c7f1bae2d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 501122ff-a5fc-4f2d-8106-bd796293f0f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:17:29.7686368", + "lastUpdatedTimeUtc": "2026-09-09T07:17:29.7686368", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:32 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + Pragma: + - no-cache + RequestId: + - 015e20fe-2b9e-4818-8dc1-900cbbd679ed + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 501122ff-a5fc-4f2d-8106-bd796293f0f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:17:29.7686368", + "lastUpdatedTimeUtc": "2026-09-09T07:18:36.6335046", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:52 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7/result + Pragma: + - no-cache + RequestId: + - a90de834-d07f-458b-85fc-4fa63c6c09b9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 501122ff-a5fc-4f2d-8106-bd796293f0f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/501122ff-a5fc-4f2d-8106-bd796293f0f7/result + response: + body: + string: '{"id": "5f566387-1dd0-49a6-b4e3-5f31c7f32e0e", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:18:53 GMT + Pragma: + - no-cache + RequestId: + - 663351fc-1d30-434a-94d4-d7023f49147e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:53 GMT + Pragma: + - no-cache + RequestId: + - 93e487f5-0a2a-4ec5-8168-689684774972 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "9d3ff26b-3af4-4da5-b41e-d975b105287a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5f566387-1dd0-49a6-b4e3-5f31c7f32e0e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "06ff2817-b16d-4e05-9934-4c8fb845bd72", + "type": "Lakehouse", "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "75d44f16-adf4-4f71-a3e4-e6eff637b420", "type": "GraphModel", "displayName": + "fabcli000001_graph_5f5663871dd049a6b4e35f31c7f32e0e", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:54 GMT + Pragma: + - no-cache + RequestId: + - f8a433bb-f57f-49a5-8425-4d58cf8515f2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:54 GMT + Pragma: + - no-cache + RequestId: + - ac74fc6c-b28f-4b05-bf6c-0174a9daf51e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:55 GMT + Pragma: + - no-cache + RequestId: + - 27acd5d0-fe38-443d-90b0-39bfa9ca18b1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "9d3ff26b-3af4-4da5-b41e-d975b105287a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5f566387-1dd0-49a6-b4e3-5f31c7f32e0e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "06ff2817-b16d-4e05-9934-4c8fb845bd72", + "type": "Lakehouse", "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "75d44f16-adf4-4f71-a3e4-e6eff637b420", "type": "GraphModel", "displayName": + "fabcli000001_graph_5f5663871dd049a6b4e35f31c7f32e0e", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:55 GMT + Pragma: + - no-cache + RequestId: + - 19fba1f3-92da-4e17-aa59-02c91c614eb7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:56 GMT + Pragma: + - no-cache + RequestId: + - 3fdd73f5-c10e-4dcb-b565-f65c0b8656c9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:56 GMT + Pragma: + - no-cache + RequestId: + - 071600cd-b3d1-449c-858b-10e5d81a1c46 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "9d3ff26b-3af4-4da5-b41e-d975b105287a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5f566387-1dd0-49a6-b4e3-5f31c7f32e0e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "06ff2817-b16d-4e05-9934-4c8fb845bd72", + "type": "Lakehouse", "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "75d44f16-adf4-4f71-a3e4-e6eff637b420", "type": "GraphModel", "displayName": + "fabcli000001_graph_5f5663871dd049a6b4e35f31c7f32e0e", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:57 GMT + Pragma: + - no-cache + RequestId: + - 9b27355e-828d-4f20-a2f7-e7f3703be123 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:57 GMT + Pragma: + - no-cache + RequestId: + - 782cb24a-8161-4948-aec7-ae05e2969708 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:58 GMT + Pragma: + - no-cache + RequestId: + - eeaf1100-f7e6-423a-ba64-f2afce9c962f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "9d3ff26b-3af4-4da5-b41e-d975b105287a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5f566387-1dd0-49a6-b4e3-5f31c7f32e0e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "06ff2817-b16d-4e05-9934-4c8fb845bd72", + "type": "Lakehouse", "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "75d44f16-adf4-4f71-a3e4-e6eff637b420", "type": "GraphModel", "displayName": + "fabcli000001_graph_5f5663871dd049a6b4e35f31c7f32e0e", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:58 GMT + Pragma: + - no-cache + RequestId: + - f6e02f4b-1f16-4a6d-8512-82f39dd2f33f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:58 GMT + Pragma: + - no-cache + RequestId: + - 69257e7a-bf7f-40e1-b50b-a517a9cf1dd9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:18:59 GMT + Pragma: + - no-cache + RequestId: + - 7f742e8a-8c83-42e9-9831-c99b5b61c369 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "9d3ff26b-3af4-4da5-b41e-d975b105287a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5f566387-1dd0-49a6-b4e3-5f31c7f32e0e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "06ff2817-b16d-4e05-9934-4c8fb845bd72", + "type": "Lakehouse", "displayName": "fabcli000001_lh_5f5663871dd049a6b4e35f31c7f32e0e", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "75d44f16-adf4-4f71-a3e4-e6eff637b420", "type": "GraphModel", "displayName": + "fabcli000001_graph_5f5663871dd049a6b4e35f31c7f32e0e", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:19:00 GMT + Pragma: + - no-cache + RequestId: + - f581ae75-ab00-43f2-a17e-60f4c5f0a459 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/5f566387-1dd0-49a6-b4e3-5f31c7f32e0e + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:19:01 GMT + Pragma: + - no-cache + RequestId: + - b17535eb-6d41-4b68-803c-dd04f6e46614 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-GraphModel].yaml new file mode 100644 index 000000000..1b020b9ec --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-GraphModel].yaml @@ -0,0 +1,1050 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:36 GMT + Pragma: + - no-cache + RequestId: + - 6d8a3abd-128c-4107-919e-4e7fe86ce057 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:35 GMT + Pragma: + - no-cache + RequestId: + - 990ea84a-2fa3-49a6-b79b-08f2f5bc87fe + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:36 GMT + Pragma: + - no-cache + RequestId: + - 29930752-db88-453d-ba39-a92c3ffc9ea8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:36 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f74d0d8-1154-4ba1-b34a-33f1a2f2e22e + Pragma: + - no-cache + RequestId: + - a905d967-acdc-493b-8978-faa261238e5c + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 6f74d0d8-1154-4ba1-b34a-33f1a2f2e22e + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f74d0d8-1154-4ba1-b34a-33f1a2f2e22e + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:15:37.362148", + "lastUpdatedTimeUtc": "2026-09-09T07:15:49.3510721", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:57 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f74d0d8-1154-4ba1-b34a-33f1a2f2e22e/result + Pragma: + - no-cache + RequestId: + - 7686d376-7de9-47f1-9cf3-bef7e0196dac + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6f74d0d8-1154-4ba1-b34a-33f1a2f2e22e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f74d0d8-1154-4ba1-b34a-33f1a2f2e22e/result + response: + body: + string: '{"id": "a73f6dba-f21d-4e06-ad6f-676a5e089d92", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:15:58 GMT + Pragma: + - no-cache + RequestId: + - 4aafb2f2-8ed1-4cb8-bd0d-46d8102cddad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:59 GMT + Pragma: + - no-cache + RequestId: + - 94b5f23f-b48c-43ba-8d93-26e144dc8dd2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "a73f6dba-f21d-4e06-ad6f-676a5e089d92", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:59 GMT + Pragma: + - no-cache + RequestId: + - a97c085b-ec39-4300-9029-8a83cf662bbe + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:00 GMT + Pragma: + - no-cache + RequestId: + - ff07f7f2-6a46-4ead-a445-10a7143b747c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:15:59 GMT + Pragma: + - no-cache + RequestId: + - bbdb29bf-d434-4133-85f9-21c0a515bf95 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "a73f6dba-f21d-4e06-ad6f-676a5e089d92", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:00 GMT + Pragma: + - no-cache + RequestId: + - 475e6ff6-0669-4f63-a270-e8427f08310c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:00 GMT + Pragma: + - no-cache + RequestId: + - 439841b2-b248-4adb-b275-5f2fd2d34844 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:00 GMT + Pragma: + - no-cache + RequestId: + - 8f8b40ba-c8b1-48f9-9164-332ce156b272 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "a73f6dba-f21d-4e06-ad6f-676a5e089d92", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:00 GMT + Pragma: + - no-cache + RequestId: + - 1aa9b12b-24ca-4cd8-b802-849d25a37ca0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:01 GMT + Pragma: + - no-cache + RequestId: + - ca16383b-b3c8-437d-90b3-8e73397bae9d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:01 GMT + Pragma: + - no-cache + RequestId: + - 249fd547-2580-47fc-a32d-6b865b199b63 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "a73f6dba-f21d-4e06-ad6f-676a5e089d92", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:02 GMT + Pragma: + - no-cache + RequestId: + - bcc0df65-665a-4109-a9a2-e46e32041cba + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:03 GMT + Pragma: + - no-cache + RequestId: + - 29f53d44-6be3-4fb3-a528-f7e3ca015eb2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:03 GMT + Pragma: + - no-cache + RequestId: + - db458227-7d18-469c-9d7d-8c2147db7d80 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "a73f6dba-f21d-4e06-ad6f-676a5e089d92", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:03 GMT + Pragma: + - no-cache + RequestId: + - 725d79fb-2024-4ffc-add6-55c8f062d1f9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/a73f6dba-f21d-4e06-ad6f-676a5e089d92 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:16:04 GMT + Pragma: + - no-cache + RequestId: + - bc0cf338-4027-416f-8cad-6a6ee0202a66 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Ontology].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Ontology].yaml new file mode 100644 index 000000000..1865a02e8 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Ontology].yaml @@ -0,0 +1,1142 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:05 GMT + Pragma: + - no-cache + RequestId: + - d7ca7a3d-1ac5-4204-ae25-5aa1ba9133e0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:05 GMT + Pragma: + - no-cache + RequestId: + - 01f02ba7-2172-484a-8f52-59217e871b79 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:06 GMT + Pragma: + - no-cache + RequestId: + - 9ebcec30-1c03-491b-aa87-4156bbd73ee2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:07 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb13fef8-2679-420c-8a0e-2aa03bda9b52 + Pragma: + - no-cache + RequestId: + - e2951eeb-5716-4be4-abe6-8c331b7744b6 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - cb13fef8-2679-420c-8a0e-2aa03bda9b52 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb13fef8-2679-420c-8a0e-2aa03bda9b52 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:16:07.1817065", + "lastUpdatedTimeUtc": "2026-09-09T07:16:07.1817065", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb13fef8-2679-420c-8a0e-2aa03bda9b52 + Pragma: + - no-cache + RequestId: + - f5869e85-5dcc-49ab-95f1-90aae2bf03d3 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - cb13fef8-2679-420c-8a0e-2aa03bda9b52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb13fef8-2679-420c-8a0e-2aa03bda9b52 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:16:07.1817065", + "lastUpdatedTimeUtc": "2026-09-09T07:16:44.9600391", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb13fef8-2679-420c-8a0e-2aa03bda9b52/result + Pragma: + - no-cache + RequestId: + - c311a200-812c-445d-9e1f-89c7c2b86efc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - cb13fef8-2679-420c-8a0e-2aa03bda9b52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb13fef8-2679-420c-8a0e-2aa03bda9b52/result + response: + body: + string: '{"id": "a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:16:49 GMT + Pragma: + - no-cache + RequestId: + - 63e7341f-89bc-4b62-a9c3-7d25bf35b3db + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:50 GMT + Pragma: + - no-cache + RequestId: + - b79f9cd3-e96c-4fd6-a02e-3643964d15dd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "df4f091a-e31a-40ca-81de-bdd807424bc4", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5ff8846f-716f-4e80-bb72-befff48e98ae", + "type": "Lakehouse", "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9f886b4a-99db-4a35-b467-6a121fc5f364", "type": "GraphModel", "displayName": + "fabcli000001_graph_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:50 GMT + Pragma: + - no-cache + RequestId: + - 76dad1b6-df33-4962-b29f-e2940d1c543d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:51 GMT + Pragma: + - no-cache + RequestId: + - d461f9d0-b401-414f-b946-bcaefa7d4ac7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:51 GMT + Pragma: + - no-cache + RequestId: + - 92f68d42-0e2b-45ce-a7f2-3985f9af619d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "df4f091a-e31a-40ca-81de-bdd807424bc4", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5ff8846f-716f-4e80-bb72-befff48e98ae", + "type": "Lakehouse", "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9f886b4a-99db-4a35-b467-6a121fc5f364", "type": "GraphModel", "displayName": + "fabcli000001_graph_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:52 GMT + Pragma: + - no-cache + RequestId: + - 7290523e-24a6-449d-b4af-43ed062ad5f6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:52 GMT + Pragma: + - no-cache + RequestId: + - b4b8a553-a4b1-4c05-9997-006ea6765c4b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:52 GMT + Pragma: + - no-cache + RequestId: + - 37392005-a895-43de-b530-926401cf2ac0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "df4f091a-e31a-40ca-81de-bdd807424bc4", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5ff8846f-716f-4e80-bb72-befff48e98ae", + "type": "Lakehouse", "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9f886b4a-99db-4a35-b467-6a121fc5f364", "type": "GraphModel", "displayName": + "fabcli000001_graph_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:53 GMT + Pragma: + - no-cache + RequestId: + - 33a91f14-c6e8-4db0-a330-9a5b466e5e6d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:54 GMT + Pragma: + - no-cache + RequestId: + - 6ac90391-7154-4dc7-9630-9c8162459ec6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:54 GMT + Pragma: + - no-cache + RequestId: + - 4d8de3bd-7399-4453-9056-74129470b31b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "df4f091a-e31a-40ca-81de-bdd807424bc4", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5ff8846f-716f-4e80-bb72-befff48e98ae", + "type": "Lakehouse", "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9f886b4a-99db-4a35-b467-6a121fc5f364", "type": "GraphModel", "displayName": + "fabcli000001_graph_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:54 GMT + Pragma: + - no-cache + RequestId: + - 89238d51-e5a1-47be-b76b-744f4d595b23 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:54 GMT + Pragma: + - no-cache + RequestId: + - 5b949850-8192-4cec-a07f-eb9f8241cefb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "5761b945-b707-4180-b20d-5f0615d2295a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:55 GMT + Pragma: + - no-cache + RequestId: + - 77466823-4381-4a5e-8988-850c76d4df3a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items + response: + body: + string: '{"value": [{"id": "df4f091a-e31a-40ca-81de-bdd807424bc4", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": + "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "5761b945-b707-4180-b20d-5f0615d2295a"}, {"id": "5ff8846f-716f-4e80-bb72-befff48e98ae", + "type": "Lakehouse", "displayName": "fabcli000001_lh_a13de5f97e8d4fcc9b6b5423d2b25b58", + "description": "", "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}, + {"id": "9f886b4a-99db-4a35-b467-6a121fc5f364", "type": "GraphModel", "displayName": + "fabcli000001_graph_a13de5f97e8d4fcc9b6b5423d2b25b58", "description": "", + "workspaceId": "5761b945-b707-4180-b20d-5f0615d2295a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:16:56 GMT + Pragma: + - no-cache + RequestId: + - ab8a9b09-1806-4794-bf85-f6f1969c42e0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/5761b945-b707-4180-b20d-5f0615d2295a/items/a13de5f9-7e8d-4fcc-9b6b-5423d2b25b58 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:16:57 GMT + Pragma: + - no-cache + RequestId: + - 4cd074f8-6634-4144-8336-2a67657b39d3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml index 68793034c..249216d7a 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3467' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 01 Jul 2026 19:12:35 GMT + - Wed, 09 Sep 2026 07:04:19 GMT Pragma: - no-cache RequestId: - - 4b9b4fe1-1e75-4960-92c1-057599bf87c5 + - a9ee894b-cdaf-41b7-9723-604239f0eb85 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3467' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 01 Jul 2026 19:12:36 GMT + - Wed, 09 Sep 2026 07:04:19 GMT Pragma: - no-cache RequestId: - - 56b58f16-dd3d-4b8f-9c90-77a2d13b1077 + - 4835d6c1-f132-4791-beb0-a9c613dadeeb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,7 +119,7 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 01 Jul 2026 19:12:40 GMT + - Wed, 09 Sep 2026 07:04:25 GMT Pragma: - no-cache RequestId: - - 12132078-71c1-48f2-89fc-361417ae2b27 + - b4975db1-9544-4126-9be8-6f77ba8c3686 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,33 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "f54ac349-b5a9-41bd-acd1-81f9ed9ec0f3", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '196' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 01 Jul 2026 19:12:45 GMT + - Wed, 09 Sep 2026 07:04:31 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f54ac349-b5a9-41bd-acd1-81f9ed9ec0f3 + - https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86 Pragma: - no-cache RequestId: - - 69736420-636d-43f1-9f6b-9170a88f51e8 + - eb23affd-3b04-4115-b84b-14aff1572f74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,33 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (mkdir; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (mkdir; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f54ac349-b5a9-41bd-acd1-81f9ed9ec0f3", + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '3500' + - '3453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 01 Jul 2026 19:43:10 GMT + - Wed, 09 Sep 2026 07:08:37 GMT Pragma: - no-cache RequestId: - - 4a3e7063-a634-4061-9c9a-b2d7693272cc + - e8a79ce8-af7f-49ff-b18c-9651f0b8311d 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/1.6.1 (mkdir; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (mkdir; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f54ac349-b5a9-41bd-acd1-81f9ed9ec0f3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items response: body: string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -284,11 +284,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 01 Jul 2026 19:43:10 GMT + - Wed, 09 Sep 2026 07:08:37 GMT Pragma: - no-cache RequestId: - - 098c0e59-ef2c-4b31-a534-bc752bf28bef + - baf35b07-b2d9-4849-8e47-b19a465b43e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (mkdir; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.7.0 (mkdir; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f54ac349-b5a9-41bd-acd1-81f9ed9ec0f3 + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -334,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 01 Jul 2026 19:43:10 GMT + - Wed, 09 Sep 2026 07:08:38 GMT Pragma: - no-cache RequestId: - - c862cc56-bcd3-4573-ba39-175c3d756ba3 + - 59b4e000-05e5-45a6-9d7d-dba3926c54d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[GraphModel].yaml new file mode 100644 index 000000000..bae1b4534 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[GraphModel].yaml @@ -0,0 +1,607 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:04:31 GMT + Pragma: + - no-cache + RequestId: + - 40c47254-4006-42ef-a143-6f613f68a833 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:04:32 GMT + Pragma: + - no-cache + RequestId: + - 14ae9a1c-78c2-4e2c-8d2d-54846abf5dd5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:04:33 GMT + Pragma: + - no-cache + RequestId: + - 89e3e1c5-1cf0-4700-ad85-3e5e166318d8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:04:36 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66aaed23-2395-45b1-a982-4078fc347c30 + Pragma: + - no-cache + RequestId: + - bf7b7219-56ac-4ac9-9b12-a651b1332a00 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 66aaed23-2395-45b1-a982-4078fc347c30 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66aaed23-2395-45b1-a982-4078fc347c30 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:04:33.8844032", + "lastUpdatedTimeUtc": "2026-09-09T07:04:33.8844032", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:04:57 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66aaed23-2395-45b1-a982-4078fc347c30 + Pragma: + - no-cache + RequestId: + - 4063090d-0e40-422c-9d16-2a65dd967c94 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 66aaed23-2395-45b1-a982-4078fc347c30 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66aaed23-2395-45b1-a982-4078fc347c30 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:04:33.8844032", + "lastUpdatedTimeUtc": "2026-09-09T07:04:59.8458284", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:17 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66aaed23-2395-45b1-a982-4078fc347c30/result + Pragma: + - no-cache + RequestId: + - 310fcda0-96ae-427e-9fd4-3fa79f7b7a78 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 66aaed23-2395-45b1-a982-4078fc347c30 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66aaed23-2395-45b1-a982-4078fc347c30/result + response: + body: + string: '{"id": "f72fa8e8-f007-4b4f-9cb9-642c11b4394d", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:05:18 GMT + Pragma: + - no-cache + RequestId: + - 2ac74e98-d5f9-4a42-98ed-784f98d2108a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:19 GMT + Pragma: + - no-cache + RequestId: + - ada5fe58-9a9a-4f55-b901-f78e57db27cd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "f72fa8e8-f007-4b4f-9cb9-642c11b4394d", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:19 GMT + Pragma: + - no-cache + RequestId: + - 7662c276-76e4-4057-9f35-d3ebdf25cbe8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:20 GMT + Pragma: + - no-cache + RequestId: + - e88953b4-b701-42a3-b66b-c394bfda4411 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "f72fa8e8-f007-4b4f-9cb9-642c11b4394d", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:20 GMT + Pragma: + - no-cache + RequestId: + - dd747100-31ec-41d9-a64a-e5907f758f28 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/f72fa8e8-f007-4b4f-9cb9-642c11b4394d + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:05:21 GMT + Pragma: + - no-cache + RequestId: + - 4870ddc2-e5a1-4521-97f3-ea273a372744 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[Ontology].yaml new file mode 100644 index 000000000..19e945603 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[Ontology].yaml @@ -0,0 +1,727 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:21 GMT + Pragma: + - no-cache + RequestId: + - c30c15b5-7e99-40ce-942c-86a3c9a811c8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:22 GMT + Pragma: + - no-cache + RequestId: + - 7d255447-cd4c-4964-bbae-b171ee89445e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:22 GMT + Pragma: + - no-cache + RequestId: + - 22d9ac47-2a9a-4c40-a388-28e671302928 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:26 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + Pragma: + - no-cache + RequestId: + - edbffded-5609-4504-a964-e9f8575a4474 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - c68f7352-753c-465f-944f-af082730c922 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:05:23.8591385", + "lastUpdatedTimeUtc": "2026-09-09T07:05:23.8591385", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:05:46 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + Pragma: + - no-cache + RequestId: + - 84592350-e727-4d49-b353-6bc810161f88 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - c68f7352-753c-465f-944f-af082730c922 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:05:23.8591385", + "lastUpdatedTimeUtc": "2026-09-09T07:05:23.8591385", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + Pragma: + - no-cache + RequestId: + - 0b9c42e9-d9f1-455b-96b7-47a9cc99149b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - c68f7352-753c-465f-944f-af082730c922 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:05:23.8591385", + "lastUpdatedTimeUtc": "2026-09-09T07:05:23.8591385", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '147' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + Pragma: + - no-cache + RequestId: + - aedc93eb-7103-47f1-a66f-658d62b1ef0e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - c68f7352-753c-465f-944f-af082730c922 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:05:23.8591385", + "lastUpdatedTimeUtc": "2026-09-09T07:06:36.8200795", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922/result + Pragma: + - no-cache + RequestId: + - 8a1a61c6-19e5-494e-afcc-3f6935845873 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - c68f7352-753c-465f-944f-af082730c922 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c68f7352-753c-465f-944f-af082730c922/result + response: + body: + string: '{"id": "bf5db425-9f09-43fe-b3eb-5b30a8b52558", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:06:49 GMT + Pragma: + - no-cache + RequestId: + - b805537c-6de7-4b76-a3e9-be76f782c435 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:49 GMT + Pragma: + - no-cache + RequestId: + - d7336152-8db7-462c-b117-e548f75336ab + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "572a1ce8-a66d-4064-9e76-e492c2210b51", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_bf5db4259f0943feb3eb5b30a8b52558", "description": + "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "bf5db425-9f09-43fe-b3eb-5b30a8b52558", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "1d344fb0-f2b3-4049-affb-00cf2ece3099", + "type": "Lakehouse", "displayName": "fabcli000001_lh_bf5db4259f0943feb3eb5b30a8b52558", + "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, + {"id": "b0ceb15b-86f5-4789-816d-17cdf6594925", "type": "GraphModel", "displayName": + "fabcli000001_graph_bf5db4259f0943feb3eb5b30a8b52558", "description": "", + "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:50 GMT + Pragma: + - no-cache + RequestId: + - 919612d0-10de-457d-8c3e-58bbb54fab05 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:51 GMT + Pragma: + - no-cache + RequestId: + - b059f2e2-99f4-4c38-b5d6-9f114dda4a71 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "572a1ce8-a66d-4064-9e76-e492c2210b51", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_bf5db4259f0943feb3eb5b30a8b52558", "description": + "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "bf5db425-9f09-43fe-b3eb-5b30a8b52558", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "1d344fb0-f2b3-4049-affb-00cf2ece3099", + "type": "Lakehouse", "displayName": "fabcli000001_lh_bf5db4259f0943feb3eb5b30a8b52558", + "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, + {"id": "b0ceb15b-86f5-4789-816d-17cdf6594925", "type": "GraphModel", "displayName": + "fabcli000001_graph_bf5db4259f0943feb3eb5b30a8b52558", "description": "", + "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:52 GMT + Pragma: + - no-cache + RequestId: + - 117a8dfa-d504-40e3-baee-6eef3124c618 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/bf5db425-9f09-43fe-b3eb-5b30a8b52558 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:06:51 GMT + Pragma: + - no-cache + RequestId: + - 9958e402-28e9-48f8-ab04-ab2d59266009 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[GraphModel].yaml new file mode 100644 index 000000000..ac739702c --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[GraphModel].yaml @@ -0,0 +1,861 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:52 GMT + Pragma: + - no-cache + RequestId: + - a156ccbc-45f8-4a26-b1c7-8a36e8d83a7a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:52 GMT + Pragma: + - no-cache + RequestId: + - 713efec5-81fb-466e-a047-09ed73882bc8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:53 GMT + Pragma: + - no-cache + RequestId: + - b9637eae-0c15-49bf-b5d5-b9db47d1010c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:06:55 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ee682dc-d45f-4300-a8ad-11b989e74044 + Pragma: + - no-cache + RequestId: + - 6539d09a-d8b4-4737-a935-3c8977181720 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 7ee682dc-d45f-4300-a8ad-11b989e74044 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ee682dc-d45f-4300-a8ad-11b989e74044 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:06:54.4783732", + "lastUpdatedTimeUtc": "2026-09-09T07:07:07.615266", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:14 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ee682dc-d45f-4300-a8ad-11b989e74044/result + Pragma: + - no-cache + RequestId: + - e483caa5-6886-43fc-a2aa-977d39bca3c5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 7ee682dc-d45f-4300-a8ad-11b989e74044 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ee682dc-d45f-4300-a8ad-11b989e74044/result + response: + body: + string: '{"id": "b3c70911-3502-4b70-a0d2-013afd20f1be", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:07:16 GMT + Pragma: + - no-cache + RequestId: + - 8f542407-a481-49df-830e-02e12dd0f0fc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:16 GMT + Pragma: + - no-cache + RequestId: + - 59f6a7cc-29f6-4279-8744-f3160bc6b942 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "b3c70911-3502-4b70-a0d2-013afd20f1be", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:17 GMT + Pragma: + - no-cache + RequestId: + - 15169769-9969-47dc-a4ca-acefbb81c91a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/graphModels/b3c70911-3502-4b70-a0d2-013afd20f1be + response: + body: + string: '{"id": "b3c70911-3502-4b70-a0d2-013afd20f1be", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:17 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - e380167a-3faa-4d6e-a3f2-0544381cf130 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/b3c70911-3502-4b70-a0d2-013afd20f1be/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:18 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36efa3c0-47cd-4775-89af-33c5a9e1f38f + Pragma: + - no-cache + RequestId: + - 63609f93-d7c6-4698-bbf0-22f9952c3025 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 36efa3c0-47cd-4775-89af-33c5a9e1f38f + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36efa3c0-47cd-4775-89af-33c5a9e1f38f + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:07:18.9178045", + "lastUpdatedTimeUtc": "2026-09-09T07:07:19.5454561", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:38 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36efa3c0-47cd-4775-89af-33c5a9e1f38f/result + Pragma: + - no-cache + RequestId: + - eac209f6-8b8b-4720-a2ea-3fe9542f9394 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 36efa3c0-47cd-4775-89af-33c5a9e1f38f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36efa3c0-47cd-4775-89af-33c5a9e1f38f/result + response: + body: + string: '{"definition": {"parts": [{"path": "graphType.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhUeXBlLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUeXBlcyI6IG51bGwsDQogICJlZGdlVHlwZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "dataSources.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZGF0YVNvdXJjZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAiZGF0YVNvdXJjZXMiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": "graphDefinition.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhEZWZpbml0aW9uLzEuMC4wL3NjaGVtYS5qc29uIiwNCiAgIm5vZGVUYWJsZXMiOiBudWxsLA0KICAiZWRnZVRhYmxlcyI6IG51bGwNCn0=", + "payloadType": "InlineBase64"}, {"path": "stylingConfiguration.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vc3R5bGluZ0NvbmZpZ3VyYXRpb24vMS4wLjAvc2NoZW1hLmpzb24iLA0KICAibW9kZWxMYXlvdXQiOiBudWxsLA0KICAidmlzdWFsRm9ybWF0IjogbnVsbA0KfQ==", + "payloadType": "InlineBase64"}, {"path": "graphSettings.json", "payload": + "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9ncmFwaEluZGV4L2RlZmluaXRpb24vZ3JhcGhTZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiINCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkdyYXBoTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:07:40 GMT + Pragma: + - no-cache + RequestId: + - bfddda08-d1a7-41f9-9a88-446c4eee34c2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/b3c70911-3502-4b70-a0d2-013afd20f1be/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:40 GMT + Pragma: + - no-cache + RequestId: + - 5d97088d-c424-40d5-9ca5-0e0b5548bd32 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/b3c70911-3502-4b70-a0d2-013afd20f1be/jobs/refreshGraph/schedules + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:40 GMT + Pragma: + - no-cache + RequestId: + - fbc855c2-4ee0-406a-a708-39ac72416a5f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:41 GMT + Pragma: + - no-cache + RequestId: + - 731ad097-8d04-4baf-8f54-8a96b2076b53 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "b3c70911-3502-4b70-a0d2-013afd20f1be", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:41 GMT + Pragma: + - no-cache + RequestId: + - ea394f25-f40b-4690-bc97-e1074964f262 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/b3c70911-3502-4b70-a0d2-013afd20f1be + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:07:42 GMT + Pragma: + - no-cache + RequestId: + - aed81a81-3947-49d8-9d84-2bc0c0a32b91 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[Ontology].yaml new file mode 100644 index 000000000..cf0ec6186 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[Ontology].yaml @@ -0,0 +1,774 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:42 GMT + Pragma: + - no-cache + RequestId: + - 5e3e30f5-9901-4747-9857-ff731c04cf57 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:43 GMT + Pragma: + - no-cache + RequestId: + - ab591694-5fb3-44a4-9fac-19c00ec83ac3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:43 GMT + Pragma: + - no-cache + RequestId: + - 3900ed57-cf16-401f-92cc-6004b5d9134f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:07:48 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/162c77b2-afe8-48eb-b263-4b34f06a7c7f + Pragma: + - no-cache + RequestId: + - 24eb54d6-a3c4-41ec-bccf-cc4b4d085762 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 162c77b2-afe8-48eb-b263-4b34f06a7c7f + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/162c77b2-afe8-48eb-b263-4b34f06a7c7f + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:07:44.8642509", + "lastUpdatedTimeUtc": "2026-09-09T07:07:44.8642509", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/162c77b2-afe8-48eb-b263-4b34f06a7c7f + Pragma: + - no-cache + RequestId: + - b6695c65-c6da-45e4-a0c9-ce732dda2d0d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 162c77b2-afe8-48eb-b263-4b34f06a7c7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/162c77b2-afe8-48eb-b263-4b34f06a7c7f + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:07:44.8642509", + "lastUpdatedTimeUtc": "2026-09-09T07:08:24.5807004", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/162c77b2-afe8-48eb-b263-4b34f06a7c7f/result + Pragma: + - no-cache + RequestId: + - 52890cec-5956-4008-83a1-17fcc4728de5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 162c77b2-afe8-48eb-b263-4b34f06a7c7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/162c77b2-afe8-48eb-b263-4b34f06a7c7f/result + response: + body: + string: '{"id": "592a09bc-2b62-488d-97a8-30d40b70d92e", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:08:29 GMT + Pragma: + - no-cache + RequestId: + - e5c8dee5-a919-477a-91dc-44aedecfae6d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:29 GMT + Pragma: + - no-cache + RequestId: + - e037e144-9242-4f37-b7b1-009889a3aef8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "6e194b06-3774-48a0-8e2e-9bc418d5821a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_592a09bc2b62488d97a830d40b70d92e", "description": + "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "592a09bc-2b62-488d-97a8-30d40b70d92e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "b834b6d2-45b2-49eb-b8cd-eb21ffbf40f0", + "type": "Lakehouse", "displayName": "fabcli000001_lh_592a09bc2b62488d97a830d40b70d92e", + "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, + {"id": "e6eee260-9cc0-40e5-9d25-9eb9c79b9def", "type": "GraphModel", "displayName": + "fabcli000001_graph_592a09bc2b62488d97a830d40b70d92e", "description": "", + "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:30 GMT + Pragma: + - no-cache + RequestId: + - 475b6a7b-af75-458a-88ee-33d6d267f86b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/ontologies/592a09bc-2b62-488d-97a8-30d40b70d92e + response: + body: + string: '{"id": "592a09bc-2b62-488d-97a8-30d40b70d92e", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:30 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 845f4eba-c75d-4fdf-aa05-ccd97363c22a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/592a09bc-2b62-488d-97a8-30d40b70d92e/getDefinition + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk9udG9sb2d5IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '385' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:34 GMT + Pragma: + - no-cache + RequestId: + - aaac4ea6-a223-4340-a2bb-01892f169287 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/592a09bc-2b62-488d-97a8-30d40b70d92e/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:35 GMT + Pragma: + - no-cache + RequestId: + - 63ab254e-d2a7-47d2-892a-851e60086fee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "830037cf-ab64-4b71-bf07-5a63108b6f86", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3453' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:36 GMT + Pragma: + - no-cache + RequestId: + - e418f3f9-3c30-4646-aaed-d289f7e6a1b9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items + response: + body: + string: '{"value": [{"id": "6e194b06-3774-48a0-8e2e-9bc418d5821a", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_592a09bc2b62488d97a830d40b70d92e", "description": + "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "592a09bc-2b62-488d-97a8-30d40b70d92e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "830037cf-ab64-4b71-bf07-5a63108b6f86"}, {"id": "b834b6d2-45b2-49eb-b8cd-eb21ffbf40f0", + "type": "Lakehouse", "displayName": "fabcli000001_lh_592a09bc2b62488d97a830d40b70d92e", + "description": "", "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}, + {"id": "e6eee260-9cc0-40e5-9d25-9eb9c79b9def", "type": "GraphModel", "displayName": + "fabcli000001_graph_592a09bc2b62488d97a830d40b70d92e", "description": "", + "workspaceId": "830037cf-ab64-4b71-bf07-5a63108b6f86"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:08:36 GMT + Pragma: + - no-cache + RequestId: + - 24303576-dbe0-4dab-bbd5-058ce08ae496 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/830037cf-ab64-4b71-bf07-5a63108b6f86/items/592a09bc-2b62-488d-97a8-30d40b70d92e + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:08:37 GMT + Pragma: + - no-cache + RequestId: + - 5506c930-5937-47e5-bba6-5991a21cd99f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml index a570e379a..430d16836 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:40:27 GMT + - Wed, 09 Sep 2026 07:00:46 GMT Pragma: - no-cache RequestId: - - f1105dd7-ba59-417c-9ef6-c952cede067a + - c228d761-e804-40a8-8991-ac1351e52c9a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2490' + - '3419' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:40:27 GMT + - Wed, 09 Sep 2026 07:00:47 GMT Pragma: - no-cache RequestId: - - 1922c3fa-94e3-46e2-aff0-3ec496e33b1b + - c76a05c1-04c1-4d3c-8742-1dc2e81516ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,21 +119,21 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '424' + - '466' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:40:31 GMT + - Wed, 09 Sep 2026 07:00:52 GMT Pragma: - no-cache RequestId: - - 1e72f11e-46f4-4fec-8f62-d60f16387f76 + - 3030583c-7c7a-4231-9e5e-b09c9798aa1a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "b5405a94-0497-4c26-b834-bfc92b0088bd", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "3a543a45-29e9-4a66-a271-6c6795d96394", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '177' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:40:39 GMT + - Wed, 09 Sep 2026 07:00:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/b5405a94-0497-4c26-b834-bfc92b0088bd + - https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394 Pragma: - no-cache RequestId: - - 6bfbf2af-deee-4497-9fc2-97cd7751d668 + - 3ce8b301-f6c6-40be-be1c-3e435f4a07df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (rm; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (rm; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b5405a94-0497-4c26-b834-bfc92b0088bd", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2526' + - '3454' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:41:46 GMT + - Wed, 09 Sep 2026 07:02:19 GMT Pragma: - no-cache RequestId: - - 36ee2553-cbe4-49a2-b641-999c5da6b9a6 + - 882fd919-c01e-49ee-ae43-0f0768f09524 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,41 +266,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (rm; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (rm; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b5405a94-0497-4c26-b834-bfc92b0088bd/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items response: body: - string: '{"value": [{"id": "93cd3f2c-fa07-483b-94b6-911477553fb0", "type": "SQLEndpoint", - "displayName": "fabcli000001_autodtdm", "description": "", "workspaceId": - "b5405a94-0497-4c26-b834-bfc92b0088bd"}, {"id": "a3e71151-f940-4c58-8d05-ac3b29303df9", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b5405a94-0497-4c26-b834-bfc92b0088bd"}, {"id": "f65dcabd-26b3-41ff-9ae3-89ffbabeb081", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "b5405a94-0497-4c26-b834-bfc92b0088bd"}, {"id": "3862434a-00b0-4d20-a6f1-eab3447fb960", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "b5405a94-0497-4c26-b834-bfc92b0088bd"}, {"id": "0ef2917f-75ed-4fd0-bcf5-2edccf85c961", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "b5405a94-0497-4c26-b834-bfc92b0088bd"}, - {"id": "944746a8-2cf9-4ebd-b5bc-2de1882379e8", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b5405a94-0497-4c26-b834-bfc92b0088bd"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '371' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:41:47 GMT + - Wed, 09 Sep 2026 07:02:20 GMT Pragma: - no-cache RequestId: - - 8f87f4d4-fd38-4de1-a51b-f39c7fab001c + - 4f61f833-1550-4950-a6b8-1a2fa2502d4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -326,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (rm; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (rm; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/b5405a94-0497-4c26-b834-bfc92b0088bd + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394 response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -344,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 07:41:47 GMT + - Wed, 09 Sep 2026 07:02:20 GMT Pragma: - no-cache RequestId: - - ca1e548a-3c13-4f19-a5bf-ce8aa4fcbd4b + - e2336461-e900-4d8d-bcd6-0aafbab419e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[GraphModel].yaml new file mode 100644 index 000000000..36f0c4c90 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[GraphModel].yaml @@ -0,0 +1,602 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:46:39 GMT + Pragma: + - no-cache + RequestId: + - d0a7b883-a849-4f2f-b594-a4c9fcf91792 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:46:40 GMT + Pragma: + - no-cache + RequestId: + - f6ac47ce-09dc-4f16-acd3-cbc5632277a8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:46:40 GMT + Pragma: + - no-cache + RequestId: + - 1cfa20a0-5fdf-444b-b70f-34cf7d611d8d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:46:47 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/49d58b08-5e7b-4375-8d03-050eda42f837 + Pragma: + - no-cache + RequestId: + - e3beaf25-5b23-4fd9-a6b0-52fd77cd7cba + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 49d58b08-5e7b-4375-8d03-050eda42f837 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/49d58b08-5e7b-4375-8d03-050eda42f837 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:46:46.2745048", + "lastUpdatedTimeUtc": "2026-09-03T12:46:59.3104033", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:06 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/49d58b08-5e7b-4375-8d03-050eda42f837/result + Pragma: + - no-cache + RequestId: + - 9d21dba3-70bb-4d0f-aa3f-4bb08d610510 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 49d58b08-5e7b-4375-8d03-050eda42f837 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/49d58b08-5e7b-4375-8d03-050eda42f837/result + response: + body: + string: '{"id": "14811e74-3ecb-4105-b764-df2501689d9e", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:47:07 GMT + Pragma: + - no-cache + RequestId: + - a1402e74-93a3-4cf8-8712-4e5c2faa7975 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:08 GMT + Pragma: + - no-cache + RequestId: + - 15e67146-2585-4207-80a5-01933671cb45 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "14811e74-3ecb-4105-b764-df2501689d9e", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '171' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:09 GMT + Pragma: + - no-cache + RequestId: + - 3b959ccd-87fd-444d-ba5b-8233b6e3a508 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items/14811e74-3ecb-4105-b764-df2501689d9e + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:47:09 GMT + Pragma: + - no-cache + RequestId: + - a360f612-84e9-45b9-b313-1c8d2a2ddd7f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:09 GMT + Pragma: + - no-cache + RequestId: + - e7c30fb9-ae85-41a2-bb13-aeaef65fb31a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:11 GMT + Pragma: + - no-cache + RequestId: + - 8452adfb-3754-4b3e-bab7-12f84699ba6d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:11 GMT + Pragma: + - no-cache + RequestId: + - f09efd4e-56df-4621-a0f0-b21572e82a85 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[Ontology].yaml new file mode 100644 index 000000000..6c4affb97 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[Ontology].yaml @@ -0,0 +1,662 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:11 GMT + Pragma: + - no-cache + RequestId: + - eccd90aa-468f-4288-a238-c23776a70458 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:12 GMT + Pragma: + - no-cache + RequestId: + - 586b39f1-b86b-4471-a740-d80d4dbfd5fb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:12 GMT + Pragma: + - no-cache + RequestId: + - 2cc866e7-594a-4acd-b48a-fb0f4cff50ca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:14 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/97817634-d87e-47a5-8718-41338aeaa782 + Pragma: + - no-cache + RequestId: + - 3a75eeca-2879-4516-982f-6d1968c3254b + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 97817634-d87e-47a5-8718-41338aeaa782 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/97817634-d87e-47a5-8718-41338aeaa782 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:47:13.3274156", + "lastUpdatedTimeUtc": "2026-09-03T12:47:13.3274156", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:35 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/97817634-d87e-47a5-8718-41338aeaa782 + Pragma: + - no-cache + RequestId: + - 6d7b9e03-09c3-4c9a-a3a4-6ca29c37605e + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 97817634-d87e-47a5-8718-41338aeaa782 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/97817634-d87e-47a5-8718-41338aeaa782 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:47:13.3274156", + "lastUpdatedTimeUtc": "2026-09-03T12:47:51.4644312", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:56 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/97817634-d87e-47a5-8718-41338aeaa782/result + Pragma: + - no-cache + RequestId: + - 72d51214-f873-425d-850b-8ce703b30a96 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 97817634-d87e-47a5-8718-41338aeaa782 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/97817634-d87e-47a5-8718-41338aeaa782/result + response: + body: + string: '{"id": "e2898360-3f78-465b-8c2e-4b54b543c9a4", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:47:56 GMT + Pragma: + - no-cache + RequestId: + - 020293d3-ab27-4af9-aea7-8a9f821cddb9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:57 GMT + Pragma: + - no-cache + RequestId: + - d470393a-c4f2-43a2-b091-0aa4e6298766 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "7ced600c-8565-4ac3-96ec-69902a667534", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_e28983603f78465b8c2e4b54b543c9a4", "description": + "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "e2898360-3f78-465b-8c2e-4b54b543c9a4", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "f611908e-cc1f-474d-a224-5ad16b06b4b3", + "type": "Lakehouse", "displayName": "fabcli000001_lh_e28983603f78465b8c2e4b54b543c9a4", + "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, + {"id": "444b2993-a544-4a82-b087-650868e8c465", "type": "GraphModel", "displayName": + "fabcli000001_graph_e28983603f78465b8c2e4b54b543c9a4", "description": "", + "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:57 GMT + Pragma: + - no-cache + RequestId: + - bb76794b-4a81-4704-8d50-a1d797cea424 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items/e2898360-3f78-465b-8c2e-4b54b543c9a4 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:47:58 GMT + Pragma: + - no-cache + RequestId: + - 64153de5-8fdb-4359-9bf4-6599fad757d8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:58 GMT + Pragma: + - no-cache + RequestId: + - e68b9dc1-1ef0-4607-8d83-0fb4fa9c0e2a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:58 GMT + Pragma: + - no-cache + RequestId: + - f1e6c86e-c798-41e8-a5c4-d6adda5a11ca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:47:58 GMT + Pragma: + - no-cache + RequestId: + - e5e1b800-3bbf-4a0c-bf23-1ef9d2906517 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_success[GraphModel].yaml new file mode 100644 index 000000000..395c6ed47 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_success[GraphModel].yaml @@ -0,0 +1,654 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:00 GMT + Pragma: + - no-cache + RequestId: + - 2c12266b-9bf7-4b8d-aace-0fd917e06f79 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:00 GMT + Pragma: + - no-cache + RequestId: + - 776dcbd3-145e-44cc-a072-08669faa2b0b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:00 GMT + Pragma: + - no-cache + RequestId: + - e1b78c70-2577-42d0-ad6f-92404614798e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:01 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93b67070-9ace-4ea7-bf30-54739e7299c2 + Pragma: + - no-cache + RequestId: + - 136d3306-abfb-4fc6-9569-ae2fce5e2b12 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 93b67070-9ace-4ea7-bf30-54739e7299c2 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93b67070-9ace-4ea7-bf30-54739e7299c2 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:48:01.8104327", + "lastUpdatedTimeUtc": "2026-09-03T12:48:01.8104327", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:21 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93b67070-9ace-4ea7-bf30-54739e7299c2 + Pragma: + - no-cache + RequestId: + - b1c9a08e-e25b-41dd-86ed-674d9a42b7a2 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 93b67070-9ace-4ea7-bf30-54739e7299c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93b67070-9ace-4ea7-bf30-54739e7299c2 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:48:01.8104327", + "lastUpdatedTimeUtc": "2026-09-03T12:48:23.6361589", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:43 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93b67070-9ace-4ea7-bf30-54739e7299c2/result + Pragma: + - no-cache + RequestId: + - 6f9f4128-4070-435a-b1bf-79cbcd2caec5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 93b67070-9ace-4ea7-bf30-54739e7299c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93b67070-9ace-4ea7-bf30-54739e7299c2/result + response: + body: + string: '{"id": "8bf5d9d7-db52-48fb-999f-5ba41eac3ef7", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:48:43 GMT + Pragma: + - no-cache + RequestId: + - fbf1bc60-de7a-4813-88e1-9a15d3a5c223 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:44 GMT + Pragma: + - no-cache + RequestId: + - 684d88b1-ce3d-4808-96ea-344c5bb2eb5c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "8bf5d9d7-db52-48fb-999f-5ba41eac3ef7", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:44 GMT + Pragma: + - no-cache + RequestId: + - 6461d041-4f67-495c-9b62-df37732d199e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items/8bf5d9d7-db52-48fb-999f-5ba41eac3ef7?hardDelete=true + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:48:44 GMT + Pragma: + - no-cache + RequestId: + - 8bfe540b-60e0-4c3b-9729-2a440b7a668f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:45 GMT + Pragma: + - no-cache + RequestId: + - 06afafa0-0636-4069-ac17-2db730eb6d08 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:45 GMT + Pragma: + - no-cache + RequestId: + - d8d8311f-fbcd-4004-beef-e3fd4349e989 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:46 GMT + Pragma: + - no-cache + RequestId: + - eed981c9-e666-4fdd-b5f3-9b58fe094fbd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_success[Ontology].yaml new file mode 100644 index 000000000..ca5f9013f --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_success[Ontology].yaml @@ -0,0 +1,662 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:46 GMT + Pragma: + - no-cache + RequestId: + - c191509d-7a19-44cb-84cd-90581eafaa8c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:47 GMT + Pragma: + - no-cache + RequestId: + - 23ea0af7-207e-45f2-b2d7-6365c47b881b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:48 GMT + Pragma: + - no-cache + RequestId: + - 4ff75fe1-0120-4518-ad7f-8a641f6fcb3d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:48:51 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + Pragma: + - no-cache + RequestId: + - 748135b2-414d-4efa-9d0c-4658739f1cc2 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:48:49.0971394", + "lastUpdatedTimeUtc": "2026-09-03T12:48:49.0971394", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:11 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + Pragma: + - no-cache + RequestId: + - 5c81786b-2b85-4122-bc34-e94ad7fc8c19 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:48:49.0971394", + "lastUpdatedTimeUtc": "2026-09-03T12:49:28.2987135", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:31 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be/result + Pragma: + - no-cache + RequestId: + - aa599058-2cde-4b37-8a06-c061e9990d00 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3d1f4d9e-1b7f-4b0e-885d-5a7cc17dc1be/result + response: + body: + string: '{"id": "9ff3f0a7-8c0b-408c-a156-54a15b64231e", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:49:32 GMT + Pragma: + - no-cache + RequestId: + - 25aac2d2-3010-441e-8d54-0da4d745dffe + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:33 GMT + Pragma: + - no-cache + RequestId: + - 2df2e951-7647-41b5-b522-9fe791e89287 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "f97d8d8c-033f-44e1-8718-9aa0f0905375", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_9ff3f0a78c0b408ca15654a15b64231e", "description": + "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "9ff3f0a7-8c0b-408c-a156-54a15b64231e", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "5bf10881-15e7-4cf1-b91f-cdd117724a64", + "type": "Lakehouse", "displayName": "fabcli000001_lh_9ff3f0a78c0b408ca15654a15b64231e", + "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, + {"id": "ab3813f2-c715-4252-806f-84ef081f9353", "type": "GraphModel", "displayName": + "fabcli000001_graph_9ff3f0a78c0b408ca15654a15b64231e", "description": "", + "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '307' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:33 GMT + Pragma: + - no-cache + RequestId: + - cc3688be-6b5b-4c13-988a-eb3e8bb87ae8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items/9ff3f0a7-8c0b-408c-a156-54a15b64231e?hardDelete=true + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:49:34 GMT + Pragma: + - no-cache + RequestId: + - e5f8d9d2-41ff-45dd-9ca9-a83c4b0c8325 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:34 GMT + Pragma: + - no-cache + RequestId: + - 5944a394-788e-488b-be22-9bc6f4979770 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:34 GMT + Pragma: + - no-cache + RequestId: + - 6387bd0d-bb65-4d54-9606-b45c0a1a6bf5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:35 GMT + Pragma: + - no-cache + RequestId: + - fa01cbd7-ffc6-4c0e-858d-ef68e814bca5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_without_force_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_without_force_success[GraphModel].yaml new file mode 100644 index 000000000..10023f028 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_without_force_success[GraphModel].yaml @@ -0,0 +1,602 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:35 GMT + Pragma: + - no-cache + RequestId: + - 97e87e22-bc53-4a58-9b3a-654cd02d2c52 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:36 GMT + Pragma: + - no-cache + RequestId: + - 303409b1-ed9d-4a12-bfb6-0c2d2f39bee0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:37 GMT + Pragma: + - no-cache + RequestId: + - 83b36f17-aae7-4b2e-a169-5313fe035f38 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:38 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d09862ae-d5a0-4fc9-80ae-f2e820d3c0b8 + Pragma: + - no-cache + RequestId: + - 830f7ff2-410e-4686-9618-9b3042243b00 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - d09862ae-d5a0-4fc9-80ae-f2e820d3c0b8 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d09862ae-d5a0-4fc9-80ae-f2e820d3c0b8 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:49:37.9979602", + "lastUpdatedTimeUtc": "2026-09-03T12:49:50.0828789", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:58 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d09862ae-d5a0-4fc9-80ae-f2e820d3c0b8/result + Pragma: + - no-cache + RequestId: + - 24716e0e-eae6-4351-bee6-050e9b72b180 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - d09862ae-d5a0-4fc9-80ae-f2e820d3c0b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d09862ae-d5a0-4fc9-80ae-f2e820d3c0b8/result + response: + body: + string: '{"id": "f03019f1-24bf-4504-991b-778ae6ab80cd", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:49:58 GMT + Pragma: + - no-cache + RequestId: + - a74e487b-22a2-484d-9957-a24c01bb76ac + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:49:58 GMT + Pragma: + - no-cache + RequestId: + - c4492faa-aec1-4e28-b293-d10542448288 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "f03019f1-24bf-4504-991b-778ae6ab80cd", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:00 GMT + Pragma: + - no-cache + RequestId: + - c07cbca2-cf3d-4494-b235-1653a6021b86 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items/f03019f1-24bf-4504-991b-778ae6ab80cd?hardDelete=true + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:50:01 GMT + Pragma: + - no-cache + RequestId: + - 5ac7fa9d-279d-4a58-abfe-666473b7568e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:01 GMT + Pragma: + - no-cache + RequestId: + - e268c15e-6f28-4540-a521-88b850ad39ad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:01 GMT + Pragma: + - no-cache + RequestId: + - 488db19b-85cb-4924-a3eb-4805f57c00ff + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:02 GMT + Pragma: + - no-cache + RequestId: + - 234c5497-5814-4590-855b-20d142382509 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_without_force_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_without_force_success[Ontology].yaml new file mode 100644 index 000000000..716f7fee5 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_with_hard_delete_without_force_success[Ontology].yaml @@ -0,0 +1,662 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:03 GMT + Pragma: + - no-cache + RequestId: + - 3050301c-2d7a-4517-b31c-ea0f57120b28 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:03 GMT + Pragma: + - no-cache + RequestId: + - b3ec65b9-668f-45ac-ae46-351ae26e5639 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:04 GMT + Pragma: + - no-cache + RequestId: + - d3153b93-95f9-427c-914a-cc1426d2cb89 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:05 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/baeede09-a6d5-4bce-aa61-4fd22050aa19 + Pragma: + - no-cache + RequestId: + - 80c076a2-ba61-474d-8b12-deac01e10cfe + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - baeede09-a6d5-4bce-aa61-4fd22050aa19 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/baeede09-a6d5-4bce-aa61-4fd22050aa19 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:50:04.8694692", + "lastUpdatedTimeUtc": "2026-09-03T12:50:04.8694692", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:26 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/baeede09-a6d5-4bce-aa61-4fd22050aa19 + Pragma: + - no-cache + RequestId: + - 2b30b4d7-e438-4231-8676-d8fdbf71f3c5 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - baeede09-a6d5-4bce-aa61-4fd22050aa19 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/baeede09-a6d5-4bce-aa61-4fd22050aa19 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:50:04.8694692", + "lastUpdatedTimeUtc": "2026-09-03T12:50:42.783661", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:46 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/baeede09-a6d5-4bce-aa61-4fd22050aa19/result + Pragma: + - no-cache + RequestId: + - 872c3357-4202-4325-b49e-4fbb8f1e3a84 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - baeede09-a6d5-4bce-aa61-4fd22050aa19 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/baeede09-a6d5-4bce-aa61-4fd22050aa19/result + response: + body: + string: '{"id": "5c8a21dd-b49a-422b-b1f3-663193eaa21f", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:50:47 GMT + Pragma: + - no-cache + RequestId: + - c36f1aa7-91dd-4e78-b519-b7513953561b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:48 GMT + Pragma: + - no-cache + RequestId: + - c2fcd2f2-8c5a-46a0-973f-70fde8b8eaee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "7932e599-2d7d-45b6-a19a-4e26796a838d", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_5c8a21ddb49a422bb1f3663193eaa21f", "description": + "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "5c8a21dd-b49a-422b-b1f3-663193eaa21f", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "61d52d3f-9536-4301-94e6-321c72a694a7", + "type": "Lakehouse", "displayName": "fabcli000001_lh_5c8a21ddb49a422bb1f3663193eaa21f", + "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, + {"id": "127304a7-de7d-4539-bb21-92cfbc734afd", "type": "GraphModel", "displayName": + "fabcli000001_graph_5c8a21ddb49a422bb1f3663193eaa21f", "description": "", + "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '308' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:48 GMT + Pragma: + - no-cache + RequestId: + - b2d200dc-e276-4210-895c-d130c96b28e8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items/5c8a21dd-b49a-422b-b1f3-663193eaa21f?hardDelete=true + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:50:49 GMT + Pragma: + - no-cache + RequestId: + - 098125e0-511d-4d65-b162-054f6398664b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:49 GMT + Pragma: + - no-cache + RequestId: + - 9db9220d-53f1-41e7-a060-98d472f05840 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:50 GMT + Pragma: + - no-cache + RequestId: + - bc0d90b8-5b18-44a7-b4ea-65395e0fe288 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:50 GMT + Pragma: + - no-cache + RequestId: + - 11b2355f-6956-4e32-89a2-be17b51f59ce + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[GraphModel].yaml new file mode 100644 index 000000000..005ab0bb5 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[GraphModel].yaml @@ -0,0 +1,404 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:50 GMT + Pragma: + - no-cache + RequestId: + - 5f4f6951-713c-41a5-ba5f-f35ddac1aa21 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:51 GMT + Pragma: + - no-cache + RequestId: + - 58197fef-5063-4638-92b6-f90250d8509d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:52 GMT + Pragma: + - no-cache + RequestId: + - 35cd2474-5284-470e-9ee6-9d22f29e81e6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:50:53 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3fbaafd3-e74e-4427-90b7-7e0a1ad7eff7 + Pragma: + - no-cache + RequestId: + - 48dd8097-3813-4133-a671-1013526e8fea + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 3fbaafd3-e74e-4427-90b7-7e0a1ad7eff7 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3fbaafd3-e74e-4427-90b7-7e0a1ad7eff7 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:50:52.7813664", + "lastUpdatedTimeUtc": "2026-09-03T12:51:04.5310024", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:13 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3fbaafd3-e74e-4427-90b7-7e0a1ad7eff7/result + Pragma: + - no-cache + RequestId: + - b9dca6ed-0bdb-4209-9483-d05d10fec51d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 3fbaafd3-e74e-4427-90b7-7e0a1ad7eff7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3fbaafd3-e74e-4427-90b7-7e0a1ad7eff7/result + response: + body: + string: '{"id": "5f2d3a59-a8bd-416b-8ddf-e66a65638388", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:51:14 GMT + Pragma: + - no-cache + RequestId: + - 74b492fc-3564-4474-9071-e812418042a5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:14 GMT + Pragma: + - no-cache + RequestId: + - 00ab9cca-eb94-4cd2-b1a6-b9f6235d9ca0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "5f2d3a59-a8bd-416b-8ddf-e66a65638388", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:14 GMT + Pragma: + - no-cache + RequestId: + - 091eb416-0a60-4829-86a1-55e425a36284 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[Ontology].yaml new file mode 100644 index 000000000..3484f1e81 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[Ontology].yaml @@ -0,0 +1,468 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:14 GMT + Pragma: + - no-cache + RequestId: + - 58efe480-6e98-4963-b761-e6190804039e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "5f2d3a59-a8bd-416b-8ddf-e66a65638388", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:15 GMT + Pragma: + - no-cache + RequestId: + - 7e2b945d-9743-4150-9d18-0250b960e7b0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "5f2d3a59-a8bd-416b-8ddf-e66a65638388", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:15 GMT + Pragma: + - no-cache + RequestId: + - c668b99d-e8a0-4d7c-8e8a-a841d10ecd19 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:17 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + Pragma: + - no-cache + RequestId: + - df3c8f8c-6e39-486e-9500-fe2f60c74463 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:51:16.7784326", + "lastUpdatedTimeUtc": "2026-09-03T12:51:16.7784326", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:38 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + Pragma: + - no-cache + RequestId: + - 877ded5b-f046-4570-8b4a-7de25537e753 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:51:16.7784326", + "lastUpdatedTimeUtc": "2026-09-03T12:51:54.5147705", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:58 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ec2073f-3e8f-4f6c-8508-da5e9c3ed828/result + Pragma: + - no-cache + RequestId: + - 64fde97a-0794-4080-a728-40b886793afb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6ec2073f-3e8f-4f6c-8508-da5e9c3ed828 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6ec2073f-3e8f-4f6c-8508-da5e9c3ed828/result + response: + body: + string: '{"id": "d0e210c3-dafe-46b0-a48e-4c13fe5bcc2b", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:51:59 GMT + Pragma: + - no-cache + RequestId: + - 9b67359f-984d-49ef-974b-49e195356ed1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:51:59 GMT + Pragma: + - no-cache + RequestId: + - c1cdd842-0744-4fc8-a21e-a91b4312ca41 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6baa410d-ed42-47f2-83ea-5b3ea46dd12d/items + response: + body: + string: '{"value": [{"id": "a78826c2-1370-4943-a4da-52e3d5e03831", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_d0e210c3dafe46b0a48e4c13fe5bcc2b", "description": + "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "5f2d3a59-a8bd-416b-8ddf-e66a65638388", + "type": "GraphModel", "displayName": "fabcli000001", "description": "", "workspaceId": + "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "d0e210c3-dafe-46b0-a48e-4c13fe5bcc2b", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, {"id": "8266bfe5-9e48-400a-86b7-3c200be39f38", + "type": "Lakehouse", "displayName": "fabcli000001_lh_d0e210c3dafe46b0a48e4c13fe5bcc2b", + "description": "", "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}, + {"id": "0c9cc1b8-fe01-4ee3-9b6d-90a21b996977", "type": "GraphModel", "displayName": + "fabcli000001_graph_d0e210c3dafe46b0a48e4c13fe5bcc2b", "description": "", + "workspaceId": "6baa410d-ed42-47f2-83ea-5b3ea46dd12d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '347' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:52:00 GMT + Pragma: + - no-cache + RequestId: + - 79685a9a-534a-4812-a28f-8d3ede1b3cd4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[GraphModel].yaml new file mode 100644 index 000000000..6c5145baf --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[GraphModel].yaml @@ -0,0 +1,602 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3454' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:00:58 GMT + Pragma: + - no-cache + RequestId: + - afdf8c88-b618-4155-8ab8-4ba73f62826d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:00:59 GMT + Pragma: + - no-cache + RequestId: + - 1aca0a7d-b96a-4ed5-9a81-0e517867d844 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:00 GMT + Pragma: + - no-cache + RequestId: + - c2b76617-f790-4b40-8720-2c6992ab9b19 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:04 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50d7f0c-29a8-4464-af12-bfbc18548af3 + Pragma: + - no-cache + RequestId: + - 3b348ec9-e831-4487-b0b2-c316393d0328 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - f50d7f0c-29a8-4464-af12-bfbc18548af3 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50d7f0c-29a8-4464-af12-bfbc18548af3 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:01:01.3228234", + "lastUpdatedTimeUtc": "2026-09-09T07:01:07.0922369", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:24 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50d7f0c-29a8-4464-af12-bfbc18548af3/result + Pragma: + - no-cache + RequestId: + - 2520e3c7-f368-4401-93d6-96a70721dfb6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - f50d7f0c-29a8-4464-af12-bfbc18548af3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f50d7f0c-29a8-4464-af12-bfbc18548af3/result + response: + body: + string: '{"id": "44adbe85-dd77-449d-b1bf-326860690aed", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "3a543a45-29e9-4a66-a271-6c6795d96394"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:01:24 GMT + Pragma: + - no-cache + RequestId: + - 66942ed7-2626-427e-a0a8-b1745d7dc997 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3454' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:25 GMT + Pragma: + - no-cache + RequestId: + - e1d805a4-fcb0-41a8-989d-20a781de05d5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": [{"id": "44adbe85-dd77-449d-b1bf-326860690aed", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "3a543a45-29e9-4a66-a271-6c6795d96394"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:26 GMT + Pragma: + - no-cache + RequestId: + - a4e43ed7-2807-4c5a-8682-5ba9fe4ed5c7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items/44adbe85-dd77-449d-b1bf-326860690aed + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:01:26 GMT + Pragma: + - no-cache + RequestId: + - eecd2b5c-292c-45b6-95e6-f14661195688 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3454' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:27 GMT + Pragma: + - no-cache + RequestId: + - 93d072eb-8deb-45ac-9433-1142355cd063 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:27 GMT + Pragma: + - no-cache + RequestId: + - 934f6811-fda2-44e9-b11e-218228736f46 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:28 GMT + Pragma: + - no-cache + RequestId: + - 181e606c-f814-4f21-ae5d-577a1e929eac + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[Ontology].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[Ontology].yaml new file mode 100644 index 000000000..40334cd26 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[Ontology].yaml @@ -0,0 +1,662 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3454' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:29 GMT + Pragma: + - no-cache + RequestId: + - 251e08d8-8740-43e2-b7b6-c4a32235fbbf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:29 GMT + Pragma: + - no-cache + RequestId: + - 4cfa70b6-b1da-4fd0-9ca5-d686ca5cc7ca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:29 GMT + Pragma: + - no-cache + RequestId: + - 1a7b823c-2e69-407f-8aa5-6cfe2580c2e2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:34 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a74755c-2f34-4a56-95c0-30e5b4581515 + Pragma: + - no-cache + RequestId: + - b29b782c-9e1b-4e34-943c-a900e34fc3fd + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 6a74755c-2f34-4a56-95c0-30e5b4581515 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a74755c-2f34-4a56-95c0-30e5b4581515 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-09T07:01:31.2947139", + "lastUpdatedTimeUtc": "2026-09-09T07:01:31.2947139", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:01:54 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a74755c-2f34-4a56-95c0-30e5b4581515 + Pragma: + - no-cache + RequestId: + - f442705e-39d7-4570-9b3c-dd6205a9973d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6a74755c-2f34-4a56-95c0-30e5b4581515 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a74755c-2f34-4a56-95c0-30e5b4581515 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-09T07:01:31.2947139", + "lastUpdatedTimeUtc": "2026-09-09T07:02:11.9320813", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:02:14 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a74755c-2f34-4a56-95c0-30e5b4581515/result + Pragma: + - no-cache + RequestId: + - e47af8af-5f85-443f-a5bc-f8f8520a1bd0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6a74755c-2f34-4a56-95c0-30e5b4581515 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a74755c-2f34-4a56-95c0-30e5b4581515/result + response: + body: + string: '{"id": "f0a9859a-1381-4857-b8fa-6588af934d30", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "3a543a45-29e9-4a66-a271-6c6795d96394"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 09 Sep 2026 07:02:16 GMT + Pragma: + - no-cache + RequestId: + - c8b944e4-b853-4ca5-82d7-8dc0f50c11d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3454' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:02:16 GMT + Pragma: + - no-cache + RequestId: + - d033896b-13f0-4573-85a4-7b30413cdbf9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": [{"id": "e772ddc8-c8c9-4ed7-bc1e-423de4e742f8", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_f0a9859a13814857b8fa6588af934d30", "description": + "", "workspaceId": "3a543a45-29e9-4a66-a271-6c6795d96394"}, {"id": "f0a9859a-1381-4857-b8fa-6588af934d30", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "3a543a45-29e9-4a66-a271-6c6795d96394"}, {"id": "930285ad-2b89-461b-8ab7-b08a646c277d", + "type": "Lakehouse", "displayName": "fabcli000001_lh_f0a9859a13814857b8fa6588af934d30", + "description": "", "workspaceId": "3a543a45-29e9-4a66-a271-6c6795d96394"}, + {"id": "63855d08-4b10-4503-a953-e265a02fc9b4", "type": "GraphModel", "displayName": + "fabcli000001_graph_f0a9859a13814857b8fa6588af934d30", "description": "", + "workspaceId": "3a543a45-29e9-4a66-a271-6c6795d96394"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:02:16 GMT + Pragma: + - no-cache + RequestId: + - 0fce3156-ecc5-4cea-91b0-f42b0c323433 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items/f0a9859a-1381-4857-b8fa-6588af934d30 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Wed, 09 Sep 2026 07:02:17 GMT + Pragma: + - no-cache + RequestId: + - dcf62251-559e-4cc1-bf27-1657232e5a3e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "3a543a45-29e9-4a66-a271-6c6795d96394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3454' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:02:17 GMT + Pragma: + - no-cache + RequestId: + - df5b1bc5-8963-43fd-b655-807117707112 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:02:18 GMT + Pragma: + - no-cache + RequestId: + - 40e52ee9-a246-4177-9289-8cde79b3edc0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3a543a45-29e9-4a66-a271-6c6795d96394/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 09 Sep 2026 07:02:19 GMT + Pragma: + - no-cache + RequestId: + - 6802d8db-7250-4eeb-b822-89c4cd706af5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml index f3da5c436..391d9fb27 100644 --- a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -20,21 +20,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2561' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 11:03:06 GMT + - Thu, 03 Sep 2026 12:42:10 GMT Pragma: - no-cache RequestId: - - 93630144-c10b-421b-9f61-b4c9e96e53ce + - b8b70913-ec56-4ca4-9a37-13d564dc11e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -69,21 +69,21 @@ interactions: "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2561' + - '3345' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 11:03:08 GMT + - Thu, 03 Sep 2026 12:42:11 GMT Pragma: - no-cache RequestId: - - 222a5ebf-a440-4c9b-8a2c-0e1e46b6b6ba + - 31304c42-8fcc-4978-b20d-a573ffaed8ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -119,21 +119,21 @@ interactions: "Active"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '426' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 11:03:13 GMT + - Thu, 03 Sep 2026 12:42:16 GMT Pragma: - no-cache RequestId: - - dfb69fa0-b455-4808-ae5f-1a7ddef6e34b + - 99e7d470-cba2-48e1-a91c-1c62e564a684 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,32 +162,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (None; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "81517fa4-30e3-42e6-b751-b36af1c8e99a", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}' headers: Access-Control-Expose-Headers: - - RequestId,Location + - RequestId,Location,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '175' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 11:03:21 GMT + - Thu, 03 Sep 2026 12:42:22 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/81517fa4-30e3-42e6-b751-b36af1c8e99a + - https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d Pragma: - no-cache RequestId: - - 6f6fd3f9-2eeb-4e85-afe0-f530855a0a0f + - b20ff2e9-7458-4aac-b9da-7e1c38b4878d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,32 +214,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (set; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "81517fa4-30e3-42e6-b751-b36af1c8e99a", + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '2595' + - '3383' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 11:03:33 GMT + - Thu, 03 Sep 2026 12:45:34 GMT Pragma: - no-cache RequestId: - - 5a815f03-74e2-4496-aae0-2364a02687cd + - a7da5b5c-114c-4c3f-825d-e69db0adf2a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,15 +266,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (set; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/81517fa4-30e3-42e6-b751-b36af1c8e99a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items response: body: string: '{"value": []}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -282,11 +284,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 11:03:34 GMT + - Thu, 03 Sep 2026 12:45:34 GMT Pragma: - no-cache RequestId: - - 1283e8eb-846f-49ab-b1e4-4438ef0df0f9 + - 0d42402f-bb3a-4866-a7ef-3785b51489fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,15 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (set; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.7.0 (set; Linux/5.15.167.4-microsoft-standard-WSL2; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/81517fa4-30e3-42e6-b751-b36af1c8e99a + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d response: body: string: '' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Date Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: @@ -332,11 +334,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 11:03:35 GMT + - Thu, 03 Sep 2026 12:45:34 GMT Pragma: - no-cache RequestId: - - b0ec7a9f-0f36-4321-9c58-823c5894cd4c + - 1ae4cfd2-e74c-4008-8e88-60d9b70d854d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-GraphModel].yaml new file mode 100644 index 000000000..71cf43a44 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-GraphModel].yaml @@ -0,0 +1,911 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:23 GMT + Pragma: + - no-cache + RequestId: + - 9cdaec52-02fb-4b31-8267-693eb2dba45a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:24 GMT + Pragma: + - no-cache + RequestId: + - 1c25fe52-e536-4f53-bb42-b729738f25a1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:24 GMT + Pragma: + - no-cache + RequestId: + - eb402752-f298-4d9c-ac4d-788e391e6324 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:25 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a6087f1-dc1c-468b-a2b5-280a8f1ba04e + Pragma: + - no-cache + RequestId: + - e7cce9e2-e60e-492d-816f-28b915b6ad02 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 8a6087f1-dc1c-468b-a2b5-280a8f1ba04e + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a6087f1-dc1c-468b-a2b5-280a8f1ba04e + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:42:25.8848714", + "lastUpdatedTimeUtc": "2026-09-03T12:42:38.2986653", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:47 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a6087f1-dc1c-468b-a2b5-280a8f1ba04e/result + Pragma: + - no-cache + RequestId: + - 30ad1791-d020-442e-ab99-732ae7da769a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 8a6087f1-dc1c-468b-a2b5-280a8f1ba04e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8a6087f1-dc1c-468b-a2b5-280a8f1ba04e/result + response: + body: + string: '{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:42:47 GMT + Pragma: + - no-cache + RequestId: + - 178e35b8-df22-49f2-a743-0af186c14c48 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:47 GMT + Pragma: + - no-cache + RequestId: + - 52fee1d4-1101-4511-810f-ffc769a89f59 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '168' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:48 GMT + Pragma: + - no-cache + RequestId: + - 7936f1b4-2102-49bb-a2d1-4ed8d3a2a717 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/18cc3773-55ea-4fbd-a774-3353f31cf467 + response: + body: + string: '{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:48 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - ca07650f-2a3a-4422-9e75-7235e824f436 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "fabcli000002"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/18cc3773-55ea-4fbd-a774-3353f31cf467 + response: + body: + string: '{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '166' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:49 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 64e838c9-4916-409c-8c10-f1347b036740 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:50 GMT + Pragma: + - no-cache + RequestId: + - 41cf93c0-ec1d-410d-b874-b6c91165f987 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '178' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:50 GMT + Pragma: + - no-cache + RequestId: + - 4c2f5aa5-4d0c-4a02-b1c2-b48372d0a792 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/18cc3773-55ea-4fbd-a774-3353f31cf467 + response: + body: + string: '{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '166' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:50 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 137ff466-8cc4-460d-abb7-4899d324e341 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/18cc3773-55ea-4fbd-a774-3353f31cf467/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:51 GMT + Pragma: + - no-cache + RequestId: + - 7ecc4ae8-6283-4ea7-a42b-bce3f52690cc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/18cc3773-55ea-4fbd-a774-3353f31cf467/jobs/refreshGraph/schedules + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:52 GMT + Pragma: + - no-cache + RequestId: + - 7c05907e-9d7b-439e-a5a2-e623705c8223 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:52 GMT + Pragma: + - no-cache + RequestId: + - e5df502b-d09e-44cb-b634-dc727a86963d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "18cc3773-55ea-4fbd-a774-3353f31cf467", "type": "GraphModel", + "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '178' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:53 GMT + Pragma: + - no-cache + RequestId: + - db674dd9-3796-4268-bf93-c5109a0a2e5f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/18cc3773-55ea-4fbd-a774-3353f31cf467 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:42:53 GMT + Pragma: + - no-cache + RequestId: + - a4091d26-4882-4154-9e99-872c60551cb4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Ontology].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Ontology].yaml new file mode 100644 index 000000000..2f29c2b3a --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Ontology].yaml @@ -0,0 +1,937 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:54 GMT + Pragma: + - no-cache + RequestId: + - bf0a3ffa-a071-4b18-b992-541d75610989 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:53 GMT + Pragma: + - no-cache + RequestId: + - 80cfd80a-c028-4a2d-9782-d3bf2c78b0a8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:54 GMT + Pragma: + - no-cache + RequestId: + - 37435bab-6adf-4cd8-8a1e-1691ca636541 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:42:57 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/32fa2466-3c3e-43dd-b194-32e4e7c07b89 + Pragma: + - no-cache + RequestId: + - 9b7829bd-cd80-4935-bf2c-95954c77ef56 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 32fa2466-3c3e-43dd-b194-32e4e7c07b89 + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/32fa2466-3c3e-43dd-b194-32e4e7c07b89 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:42:55.8855323", + "lastUpdatedTimeUtc": "2026-09-03T12:42:55.8855323", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:17 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/32fa2466-3c3e-43dd-b194-32e4e7c07b89 + Pragma: + - no-cache + RequestId: + - 3e2260f1-8ceb-48d9-abbc-20076f9d60eb + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 32fa2466-3c3e-43dd-b194-32e4e7c07b89 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/32fa2466-3c3e-43dd-b194-32e4e7c07b89 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:42:55.8855323", + "lastUpdatedTimeUtc": "2026-09-03T12:43:19.2030418", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:38 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/32fa2466-3c3e-43dd-b194-32e4e7c07b89/result + Pragma: + - no-cache + RequestId: + - f486d367-1727-4a8d-bbd7-d0b294aba2b7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 32fa2466-3c3e-43dd-b194-32e4e7c07b89 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/32fa2466-3c3e-43dd-b194-32e4e7c07b89/result + response: + body: + string: '{"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:43:38 GMT + Pragma: + - no-cache + RequestId: + - 99bed110-c286-4025-92d4-986e250b4dcd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:39 GMT + Pragma: + - no-cache + RequestId: + - e7d42c6d-545a-4a51-8a7a-79e49fbf73e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "1e9ad13b-c812-49b5-b64c-413d0e7637a5", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_7009792ea1b04efba70211d3979c47fa", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "a8b31848-c0e2-4975-84e8-4345241bdf74", + "type": "Lakehouse", "displayName": "fabcli000001_lh_7009792ea1b04efba70211d3979c47fa", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "cd06ca43-8d13-4ffa-887b-5e03ecbecc1d", "type": "GraphModel", "displayName": + "fabcli000001_graph_7009792ea1b04efba70211d3979c47fa", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:39 GMT + Pragma: + - no-cache + RequestId: + - 64e7e745-2bb9-408a-a178-94e4f85191e7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/7009792e-a1b0-4efb-a702-11d3979c47fa + response: + body: + string: '{"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:40 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 8e71bcaa-a3c5-474d-9b79-e479830d9581 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "fabcli000002"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/7009792e-a1b0-4efb-a702-11d3979c47fa + response: + body: + string: '{"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", "type": "Ontology", + "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '164' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:41 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 1a4916d3-d39e-4d9d-9bf8-6d15c13eb844 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:42 GMT + Pragma: + - no-cache + RequestId: + - a630e831-9832-4b0a-ac51-07a5c7c4a865 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "1e9ad13b-c812-49b5-b64c-413d0e7637a5", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_7009792ea1b04efba70211d3979c47fa", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", + "type": "Ontology", "displayName": "fabcli000001", "description": "fabcli000002", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "a8b31848-c0e2-4975-84e8-4345241bdf74", + "type": "Lakehouse", "displayName": "fabcli000001_lh_7009792ea1b04efba70211d3979c47fa", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "cd06ca43-8d13-4ffa-887b-5e03ecbecc1d", "type": "GraphModel", "displayName": + "fabcli000001_graph_7009792ea1b04efba70211d3979c47fa", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '321' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:42 GMT + Pragma: + - no-cache + RequestId: + - 99d985b7-2563-47d6-8f1d-7f3d57a4767d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/7009792e-a1b0-4efb-a702-11d3979c47fa + response: + body: + string: '{"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", "type": "Ontology", + "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '164' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:42 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - bb09b8c4-a74f-44da-a300-901a77d09e94 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/7009792e-a1b0-4efb-a702-11d3979c47fa/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:43 GMT + Pragma: + - no-cache + RequestId: + - 44462128-9622-4824-b453-573240870afd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:44 GMT + Pragma: + - no-cache + RequestId: + - 7cab6246-8b63-434a-99a7-4d68b5e9e4c1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "1e9ad13b-c812-49b5-b64c-413d0e7637a5", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_7009792ea1b04efba70211d3979c47fa", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "7009792e-a1b0-4efb-a702-11d3979c47fa", + "type": "Ontology", "displayName": "fabcli000001", "description": "fabcli000002", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "a8b31848-c0e2-4975-84e8-4345241bdf74", + "type": "Lakehouse", "displayName": "fabcli000001_lh_7009792ea1b04efba70211d3979c47fa", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "cd06ca43-8d13-4ffa-887b-5e03ecbecc1d", "type": "GraphModel", "displayName": + "fabcli000001_graph_7009792ea1b04efba70211d3979c47fa", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '321' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:44 GMT + Pragma: + - no-cache + RequestId: + - aeb6a807-e7af-41c6-b2dc-e47d1a358dcd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/7009792e-a1b0-4efb-a702-11d3979c47fa + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:43:45 GMT + Pragma: + - no-cache + RequestId: + - 8e3df0f7-b702-4177-8047-655b92f333c8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-GraphModel].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-GraphModel].yaml new file mode 100644 index 000000000..fb29949d2 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-GraphModel].yaml @@ -0,0 +1,1314 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:45 GMT + Pragma: + - no-cache + RequestId: + - 40c2294d-4c4b-4e5a-bd6a-9ceaac86d9c7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:46 GMT + Pragma: + - no-cache + RequestId: + - 636ede1a-8f50-403c-88c2-462445ea46da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:46 GMT + Pragma: + - no-cache + RequestId: + - f620d86d-c2be-409e-8fc2-759d62e34e1e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "GraphModel", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:43:46 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/951cddb9-73b2-4cd5-a8ce-26dc78b13cca + Pragma: + - no-cache + RequestId: + - c1b06c46-026f-4b41-bf84-3d04b510b335 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 951cddb9-73b2-4cd5-a8ce-26dc78b13cca + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/951cddb9-73b2-4cd5-a8ce-26dc78b13cca + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:43:47.583955", + "lastUpdatedTimeUtc": "2026-09-03T12:43:47.583955", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/951cddb9-73b2-4cd5-a8ce-26dc78b13cca + Pragma: + - no-cache + RequestId: + - 5130fef1-88da-47c1-b76b-3aa170912e27 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 951cddb9-73b2-4cd5-a8ce-26dc78b13cca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/951cddb9-73b2-4cd5-a8ce-26dc78b13cca + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:43:47.583955", + "lastUpdatedTimeUtc": "2026-09-03T12:44:09.2548277", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/951cddb9-73b2-4cd5-a8ce-26dc78b13cca/result + Pragma: + - no-cache + RequestId: + - 343cfe02-1fb5-4a04-bb34-959b392b6c9a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 951cddb9-73b2-4cd5-a8ce-26dc78b13cca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/951cddb9-73b2-4cd5-a8ce-26dc78b13cca/result + response: + body: + string: '{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:44:29 GMT + Pragma: + - no-cache + RequestId: + - 0c3d8d1d-5751-429b-9160-8335db306004 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:29 GMT + Pragma: + - no-cache + RequestId: + - b7ce2aa7-e3a9-4b00-b4bc-a0ad38985699 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:30 GMT + Pragma: + - no-cache + RequestId: + - 126f9341-a783-4793-a88f-a651c7b902dc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/5d4fa970-fd12-423c-9af9-d527560b8f17 + response: + body: + string: '{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:30 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 410dcf87-bac1-45e8-a315-335768297fa0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/5d4fa970-fd12-423c-9af9-d527560b8f17 + response: + body: + string: '{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:30 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - e73a3359-61cf-41ec-a4c7-8ba94c1242e3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:31 GMT + Pragma: + - no-cache + RequestId: + - 41cd95fe-e32e-4bcb-9fb7-83ba81100519 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:32 GMT + Pragma: + - no-cache + RequestId: + - ca76709a-1f6d-4fd9-8b1d-e6739d81ca88 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:32 GMT + Pragma: + - no-cache + RequestId: + - 720e94be-6587-4c06-b76f-ed39c4ffc0fb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:33 GMT + Pragma: + - no-cache + RequestId: + - e2eb0cbc-edf8-4a67-926e-e0808a075c8b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:33 GMT + Pragma: + - no-cache + RequestId: + - ad7e1676-63e6-4ca9-9ba8-eb6ad19f1270 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/5d4fa970-fd12-423c-9af9-d527560b8f17 + response: + body: + string: '{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:34 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 1bac428b-2302-46f8-9444-fba22314db5e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/5d4fa970-fd12-423c-9af9-d527560b8f17/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:35 GMT + Pragma: + - no-cache + RequestId: + - c43fd2fb-71a8-4c58-99be-3c6ca3fa83e9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/5d4fa970-fd12-423c-9af9-d527560b8f17/jobs/refreshGraph/schedules + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:35 GMT + Pragma: + - no-cache + RequestId: + - 4d7d43d3-50c0-44f3-9d8c-8dd239373b49 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:35 GMT + Pragma: + - no-cache + RequestId: + - 124be02a-061f-409e-a27f-40d4d4fb0179 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:36 GMT + Pragma: + - no-cache + RequestId: + - 9260185b-c90d-4372-bd4a-486187d24389 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/5d4fa970-fd12-423c-9af9-d527560b8f17 + response: + body: + string: '{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:36 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 0877fd45-ee92-444b-957d-de04f6afa390 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/graphModels/5d4fa970-fd12-423c-9af9-d527560b8f17 + response: + body: + string: '{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:37 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - c00de335-14a9-4f06-b80d-4e50be86a3d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:37 GMT + Pragma: + - no-cache + RequestId: + - eb2d93cf-70f6-49e3-8140-76748c77985c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "5d4fa970-fd12-423c-9af9-d527560b8f17", "type": "GraphModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:38 GMT + Pragma: + - no-cache + RequestId: + - 34ef8015-b5a3-4840-9d03-14089567f611 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/5d4fa970-fd12-423c-9af9-d527560b8f17 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:44:39 GMT + Pragma: + - no-cache + RequestId: + - 089a16a5-d65d-42ca-94a2-85449400b0c1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Ontology].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Ontology].yaml new file mode 100644 index 000000000..8934c6ac2 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Ontology].yaml @@ -0,0 +1,1314 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:39 GMT + Pragma: + - no-cache + RequestId: + - 21800f88-1378-4ab3-9b29-337a6f2bd3a6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:39 GMT + Pragma: + - no-cache + RequestId: + - 5d3207a2-88b2-46ac-a57d-d8c4c2370059 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:40 GMT + Pragma: + - no-cache + RequestId: + - 27f90962-1a05-4a54-9945-704f9fe6a4d6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Ontology", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:44:42 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/080939c4-e14f-448d-a445-794c6dc9ae4a + Pragma: + - no-cache + RequestId: + - 7dde0595-d443-44b9-93cb-5281aaeaca79 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 080939c4-e14f-448d-a445-794c6dc9ae4a + 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.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/080939c4-e14f-448d-a445-794c6dc9ae4a + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-09-03T12:44:41.1852592", + "lastUpdatedTimeUtc": "2026-09-03T12:44:41.1852592", "percentComplete": null, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:02 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/080939c4-e14f-448d-a445-794c6dc9ae4a + Pragma: + - no-cache + RequestId: + - 47214586-d29a-46fd-99d6-14255fde9493 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 080939c4-e14f-448d-a445-794c6dc9ae4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/080939c4-e14f-448d-a445-794c6dc9ae4a + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-09-03T12:44:41.1852592", + "lastUpdatedTimeUtc": "2026-09-03T12:45:19.2950432", "percentComplete": 100, + "error": null, "blobInfoId": null, "resultContentType": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:23 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/080939c4-e14f-448d-a445-794c6dc9ae4a/result + Pragma: + - no-cache + RequestId: + - 66148911-0e9b-43a5-97fb-b21d7df8f231 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 080939c4-e14f-448d-a445-794c6dc9ae4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/080939c4-e14f-448d-a445-794c6dc9ae4a/result + response: + body: + string: '{"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 03 Sep 2026 12:45:24 GMT + Pragma: + - no-cache + RequestId: + - b8730d78-bf9b-450c-873c-673ae19e6e29 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:24 GMT + Pragma: + - no-cache + RequestId: + - 4fa9d5e8-76b5-4420-a3b4-f6c91bec4c1f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "a3e71539-60fb-414c-9874-4d377fba1fe3", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "ca400b33-a3f1-44cc-98aa-c799ea4c8a09", + "type": "Lakehouse", "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "5f73c917-f01b-4c22-9e06-6c02a6e249b0", "type": "GraphModel", "displayName": + "fabcli000001_graph_0ca83a6b157748e8b3c279826ba08cca", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:25 GMT + Pragma: + - no-cache + RequestId: + - b0331cb6-f2d7-4003-ac38-82f1fd3a1bf4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/0ca83a6b-1577-48e8-b3c2-79826ba08cca + response: + body: + string: '{"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:25 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - b73d223b-c2e4-4d75-9b51-2bcc349cc07d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/0ca83a6b-1577-48e8-b3c2-79826ba08cca + response: + body: + string: '{"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", "type": "Ontology", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '153' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:26 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 167df40e-e94e-4de0-813d-5b1efd934503 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:27 GMT + Pragma: + - no-cache + RequestId: + - ed97b918-ae8a-470d-8547-cf3b86bc8100 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "a3e71539-60fb-414c-9874-4d377fba1fe3", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "ca400b33-a3f1-44cc-98aa-c799ea4c8a09", + "type": "Lakehouse", "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "5f73c917-f01b-4c22-9e06-6c02a6e249b0", "type": "GraphModel", "displayName": + "fabcli000001_graph_0ca83a6b157748e8b3c279826ba08cca", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '316' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:28 GMT + Pragma: + - no-cache + RequestId: + - b00ef39d-457b-4c5d-b0c1-2b6da1de7688 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "a3e71539-60fb-414c-9874-4d377fba1fe3", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "ca400b33-a3f1-44cc-98aa-c799ea4c8a09", + "type": "Lakehouse", "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "5f73c917-f01b-4c22-9e06-6c02a6e249b0", "type": "GraphModel", "displayName": + "fabcli000001_graph_0ca83a6b157748e8b3c279826ba08cca", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '316' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:28 GMT + Pragma: + - no-cache + RequestId: + - f9c9a5b7-e2d0-4bfd-9502-a10de29789f7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:28 GMT + Pragma: + - no-cache + RequestId: + - 67ed657e-a8fc-4420-9dcb-7035486c5c29 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "a3e71539-60fb-414c-9874-4d377fba1fe3", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "ca400b33-a3f1-44cc-98aa-c799ea4c8a09", + "type": "Lakehouse", "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "5f73c917-f01b-4c22-9e06-6c02a6e249b0", "type": "GraphModel", "displayName": + "fabcli000001_graph_0ca83a6b157748e8b3c279826ba08cca", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '316' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:28 GMT + Pragma: + - no-cache + RequestId: + - ee6cb7bf-07b0-44d6-bfa6-950446ea34a7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/0ca83a6b-1577-48e8-b3c2-79826ba08cca + response: + body: + string: '{"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", "type": "Ontology", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '153' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:29 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - fe498485-9e9f-4b22-b7b6-acb5ea210bc8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/0ca83a6b-1577-48e8-b3c2-79826ba08cca/connections + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:30 GMT + Pragma: + - no-cache + RequestId: + - 3548f07c-d8b0-430c-80ec-502ce788bedd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:31 GMT + Pragma: + - no-cache + RequestId: + - a2ab4770-176f-426e-947c-745e6ceaf14b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "a3e71539-60fb-414c-9874-4d377fba1fe3", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", + "type": "Ontology", "displayName": "fabcli000002", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "ca400b33-a3f1-44cc-98aa-c799ea4c8a09", + "type": "Lakehouse", "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "5f73c917-f01b-4c22-9e06-6c02a6e249b0", "type": "GraphModel", "displayName": + "fabcli000001_graph_0ca83a6b157748e8b3c279826ba08cca", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '316' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:30 GMT + Pragma: + - no-cache + RequestId: + - e456762a-98be-4a14-953b-dcfe78a32fae + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/0ca83a6b-1577-48e8-b3c2-79826ba08cca + response: + body: + string: '{"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", "type": "Ontology", + "displayName": "fabcli000002", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '153' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:31 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 2ba1dad4-6d81-4b7e-9e3c-4a43600d5760 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/ontologies/0ca83a6b-1577-48e8-b3c2-79826ba08cca + response: + body: + string: '{"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", "type": "Ontology", + "displayName": "fabcli000001", "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:32 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 15030021-b959-4547-945f-7b054e70b0a1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "066ce40b-1395-4b1e-b4ba-9ed15654e67d", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + "capacityRegion": "Central US"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '3383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:32 GMT + Pragma: + - no-cache + RequestId: + - b6ddc2d8-535a-4b37-b863-cec6e55b317d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.7.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items + response: + body: + string: '{"value": [{"id": "a3e71539-60fb-414c-9874-4d377fba1fe3", "type": "SQLEndpoint", + "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", "description": + "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "0ca83a6b-1577-48e8-b3c2-79826ba08cca", + "type": "Ontology", "displayName": "fabcli000001", "description": "", "workspaceId": + "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, {"id": "ca400b33-a3f1-44cc-98aa-c799ea4c8a09", + "type": "Lakehouse", "displayName": "fabcli000001_lh_0ca83a6b157748e8b3c279826ba08cca", + "description": "", "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}, + {"id": "5f73c917-f01b-4c22-9e06-6c02a6e249b0", "type": "GraphModel", "displayName": + "fabcli000001_graph_0ca83a6b157748e8b3c279826ba08cca", "description": "", + "workspaceId": "066ce40b-1395-4b1e-b4ba-9ed15654e67d"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '309' + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 03 Sep 2026 12:45:32 GMT + Pragma: + - no-cache + RequestId: + - f707029d-934c-4a3b-adb1-2a9fe6a86bd4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.7.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/066ce40b-1395-4b1e-b4ba-9ed15654e67d/items/0ca83a6b-1577-48e8-b3c2-79826ba08cca + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId,Date + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Thu, 03 Sep 2026 12:45:32 GMT + Pragma: + - no-cache + RequestId: + - 9058358b-bb0d-4a88-b14d-0a223014ea2e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/test_export.py b/tests/test_commands/test_export.py index 39f5ca291..1a90684fb 100644 --- a/tests/test_commands/test_export.py +++ b/tests/test_commands/test_export.py @@ -46,8 +46,13 @@ def test_export_item_success( export_path = tmp_path / f"{item.display_name}.{item_type.value}" assert export_path.is_dir() files = list(export_path.iterdir()) - # Lakehouse exports contain more files than other item types - expected_file_count = 4 if item_type == ItemType.LAKEHOUSE else 2 + # Lakehouse and Graph Model export contain more files than other item types + expected_file_count = 2 + if item_type == ItemType.LAKEHOUSE: + expected_file_count = 4 + elif item_type == ItemType.GRAPH_MODEL: + expected_file_count = 6 + assert len(files) == expected_file_count assert any(file.suffix == expected_file_extension for file in files) assert any(file.name == ".platform" for file in files) @@ -88,8 +93,12 @@ def test_export_item_home_directory_path_success( export_path = output_dir / f"{item.display_name}.{item_type.value}" assert export_path.is_dir() files = list(export_path.iterdir()) - # Lakehouse exports contain more files than other item types - expected_file_count = 4 if item_type == ItemType.LAKEHOUSE else 2 + # Lakehouse and Graph Model export contain more files than other item types + expected_file_count = 2 + if item_type == ItemType.LAKEHOUSE: + expected_file_count = 4 + elif item_type == ItemType.GRAPH_MODEL: + expected_file_count = 6 assert len(files) == expected_file_count assert any(file.suffix == expected_file_extension for file in files) assert any(file.name == ".platform" for file in files) @@ -133,7 +142,12 @@ def test_export_environment_item_success( @export_item_types_parameters def test_export_item_invalid_output_path_failure( - self, item_factory, cli_executor, mock_print_done, assert_fabric_cli_error, item_type + self, + item_factory, + cli_executor, + mock_print_done, + assert_fabric_cli_error, + item_type, ): # Setup item = item_factory(item_type) @@ -196,8 +210,7 @@ def test_export_workspace_success( ) # Assert notebook - notebook_export_path = tmp_path / \ - f"{notebook.display_name}.Notebook" + notebook_export_path = tmp_path / f"{notebook.display_name}.Notebook" assert notebook_export_path.is_dir() files = list(notebook_export_path.iterdir()) assert len(files) == 2 @@ -206,8 +219,7 @@ def test_export_workspace_success( # Assert spark job definition sjd_export_path = ( - tmp_path / - f"{spark_job_definition.display_name}.SparkJobDefinition" + tmp_path / f"{spark_job_definition.display_name}.SparkJobDefinition" ) assert sjd_export_path.is_dir() files = list(sjd_export_path.iterdir()) @@ -242,8 +254,15 @@ def test_export_workspace_with_no_items_supporting_export_failure( @export_item_format_parameters def test_export_item_format_success( - self, item_factory, cli_executor, mock_print_done, tmp_path, - item_type, export_format, expected_file_extensions, expected_folders + self, + item_factory, + cli_executor, + mock_print_done, + tmp_path, + item_type, + export_format, + expected_file_extensions, + expected_folders, ): # Setup item = item_factory(item_type) @@ -261,8 +280,7 @@ def test_export_item_format_success( assert export_path.is_dir() files = list(export_path.iterdir()) # +1 for .platform file - assert len(files) == len(expected_file_extensions) + \ - len(expected_folders) + 1 + assert len(files) == len(expected_file_extensions) + len(expected_folders) + 1 for ext in expected_file_extensions: assert any(file.suffix == ext for file in files) assert any(file.name == ".platform" for file in files) @@ -270,8 +288,13 @@ def test_export_item_format_success( @export_item_default_format_parameters def test_export_item_default_format_success( - self, item_factory, cli_executor, mock_print_done, tmp_path, - item_type, expected_file_count + self, + item_factory, + cli_executor, + mock_print_done, + tmp_path, + item_type, + expected_file_count, ): # Setup item = item_factory(item_type) @@ -326,12 +349,13 @@ def test_export_item_invalid_format_failure( ItemType.USER_DATA_FUNCTION: "Invalid format. No formats are supported", ItemType.GRAPH_QUERY_SET: "Invalid format. No formats are supported", ItemType.DIGITAL_TWIN_BUILDER: "Invalid format. No formats are supported", - ItemType.LAKEHOUSE: "Invalid format. No formats are supported" + ItemType.LAKEHOUSE: "Invalid format. No formats are supported", + ItemType.GRAPH_MODEL: "Invalid format. No formats are supported", + ItemType.ONTOLOGY: "Invalid format. No formats are supported", } # Assert - assert_fabric_cli_error( - constant.ERROR_INVALID_INPUT, error_messages[item_type]) + assert_fabric_cli_error(constant.ERROR_INVALID_INPUT, error_messages[item_type]) def test_export_report_no_format_support_failure( self, @@ -354,4 +378,5 @@ def test_export_report_no_format_support_failure( # Assert - should fail with error indicating no formats are supported assert_fabric_cli_error( - constant.ERROR_INVALID_INPUT, "No formats are supported") + constant.ERROR_INVALID_INPUT, "No formats are supported" + )