Skip to main content

workspaces

Creates, updates, deletes, gets or lists a workspaces resource.

Overview

Nameworkspaces
TypeResource
Idazure.powerbi_embedded.workspaces

Fields

NameDatatypeDescription
idstringWorkspace id
namestringWorkspace name
propertiesobjectProperty bag
typestringResource type

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, workspaceCollectionNameRetrieves all existing Power BI workspaces in the specified workspace collection.

SELECT examples

Retrieves all existing Power BI workspaces in the specified workspace collection.

SELECT
id,
name,
properties,
type
FROM azure.powerbi_embedded.workspaces
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceCollectionName = '{{ workspaceCollectionName }}';