Skip to main content

workspace_collections_by_resource_groups

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

Overview

Nameworkspace_collections_by_resource_groups
TypeResource
Idazure.powerbi_embedded.workspace_collections_by_resource_groups

Fields

The following fields are returned by SELECT queries:

Get workspaces response

NameDatatypeDescription
idstringResource id
namestringWorkspace collection name
locationstringAzure location
propertiesobjectProperties
skuobject
tagsobject
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupNameRetrieves all existing Power BI workspace collections in the specified resource group.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringAzure resource group
subscriptionIdstringGets subscription credentials which uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Retrieves all existing Power BI workspace collections in the specified resource group.

SELECT
id,
name,
location,
properties,
sku,
tags,
type
FROM azure.powerbi_embedded.workspace_collections_by_resource_groups
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;