Skip to content

Commit

Permalink
Update Get-PowerBIWorkspace.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jayanth2830 authored Aug 29, 2022
1 parent 83c74e0 commit 6887ce3
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions powerbi-ps/MicrosoftPowerBIMgmt.Workspaces/Get-PowerBIWorkspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ Returns a list of Power BI workspaces.

### List (Default)
```
Get-PowerBIWorkspace [-Scope <PowerBIUserScope>] [-Filter <String>] [-User <String>] [-Deleted] [-Orphaned]
Get-PowerBIWorkspace [-Scope <PowerBIUserScope>] [-Filter <String>] [-User <String>] [-Deleted] [-Orphaned] [-Type <WorkspaceType>]
[-First <Int32>] [-Skip <Int32>] [-Include <ArtifactType[]>] [<CommonParameters>]
```

### Id
```
Get-PowerBIWorkspace -Id <Guid> [-Scope <PowerBIUserScope>] [-Include <ArtifactType[]>] [<CommonParameters>]
Get-PowerBIWorkspace -Id <Guid> [-Scope <PowerBIUserScope>] [-Type <WorkspaceType>] [-Include <ArtifactType[]>] [<CommonParameters>]
```

### Name
```
Get-PowerBIWorkspace -Name <String> [-Scope <PowerBIUserScope>] [-Include <ArtifactType[]>]
Get-PowerBIWorkspace -Name <String> [-Scope <PowerBIUserScope>] [-Type <WorkspaceType>] [-Include <ArtifactType[]>]
[<CommonParameters>]
```

### All
```
Get-PowerBIWorkspace [-Scope <PowerBIUserScope>] [-Filter <String>] [-User <String>] [-Deleted] [-Orphaned]
Get-PowerBIWorkspace [-Scope <PowerBIUserScope>] [-Filter <String>] [-User <String>] [-Deleted] [-Orphaned] [-Type <WorkspaceType>]
[-Include <ArtifactType[]>] [-All] [<CommonParameters>]
```

Expand Down Expand Up @@ -209,6 +209,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -Type
Type of the workspace to return. Case sensitive search.
```yaml
Type: WorkspaceType
Parameter Sets: List, Name, Id, All
Aliases:
Accepted values: Workspace, Group, PersonalGroup

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Skip
Skips the first set of results.
Expand Down

0 comments on commit 6887ce3

Please sign in to comment.