workspace_collections_by_names
Creates, updates, deletes, gets or lists a workspace_collections_by_names
resource.
Overview
Name | workspace_collections_by_names |
Type | Resource |
Id | azure.powerbi_embedded.workspace_collections_by_names |
Fields
The following fields are returned by SELECT
queries:
- get
Workspace collection created successfully
Name | Datatype | Description |
---|---|---|
id | string | Resource id |
name | string | Workspace collection name |
location | string | Azure location |
properties | object | Properties |
sku | object | |
tags | object | |
type | string | Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceCollectionName | Retrieves an existing Power BI Workspace Collection. |
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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | Azure resource group |
subscriptionId | string | Gets subscription credentials which uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
workspaceCollectionName | string | Power BI Embedded Workspace Collection name |
SELECT
examples
- get
Retrieves an existing Power BI Workspace Collection.
SELECT
id,
name,
location,
properties,
sku,
tags,
type
FROM azure.powerbi_embedded.workspace_collections_by_names
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceCollectionName = '{{ workspaceCollectionName }}' -- required
;