-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathAPI-UserApis.ps1
54 lines (37 loc) · 1.8 KB
/
API-UserApis.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#Requires -Modules @{ ModuleName="MicrosoftPowerBIMgmt"; ModuleVersion="1.2.1077" }
param (
$workspaces = @("401927c5-2c16-4d48-85c9-21f1038c7862"),
$servicePrincipalId = "",
$servicePrincipalSecret = "",
$servicePrincipalTenantId = ""
)
$ErrorActionPreference = "Stop"
$currentPath = (Split-Path $MyInvocation.MyCommand.Definition -Parent)
Set-Location $currentPath
try {
$token = Get-PowerBIAccessToken
}
catch {
if ($servicePrincipalId)
{
$credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $servicePrincipalId, ($servicePrincipalSecret | ConvertTo-SecureString -AsPlainText -Force)
$pbiAccount = Connect-PowerBIServiceAccount -ServicePrincipal -Tenant $servicePrincipalTenantId -Credential $credential
}
else {
$pbiAccount = Connect-PowerBIServiceAccount
}
}
foreach($workspace in $workspaces)
{
Write-Host "Calling UserAPIs for workspace: $workspace"
Write-Host "Workspace"
Invoke-PowerBIRestMethod -Url "groups?`$filter=contains(id,'$workspace')" -method Get | ConvertFrom-Json | select -ExpandProperty value | Format-List
Write-Host "Datasets"
Invoke-PowerBIRestMethod -Url "groups/$workspace/datasets" -method Get | ConvertFrom-Json | select -ExpandProperty value | Format-List
Write-Host "Reports"
Invoke-PowerBIRestMethod -Url "groups/$workspace/reports" -method Get | ConvertFrom-Json | select -ExpandProperty value | Format-List
Write-Host "Dashboards"
Invoke-PowerBIRestMethod -Url "groups/$workspace/dashboards" -method Get | ConvertFrom-Json | select -ExpandProperty value | Format-List
Write-Host "Dataflows"
Invoke-PowerBIRestMethod -Url "groups/$workspace/dataflows" -method Get | ConvertFrom-Json | select -ExpandProperty value | Format-List
}