Get-LiquitTeam
Synopsis
This command displays a list of all the teams available within Application Workspace. Alternatively, you can select a specific team.
Syntax
 Get-LiquitTeam 
    [-LiquitContext <LiquitContext>]  
    [<CommonParameters>]
 Get-LiquitTeam 
    [-ID] <guid[]>
    [-LiquitContext <LiquitContext>]  
    [<CommonParameters>]
 Get-LiquitTeam 
    [-EntityRef] <EntityRef[]> 
    [-LiquitContext <LiquitContext>]  
    [<CommonParameters>]
    
 Get-LiquitTeam
    [-Search] <string> 
    [-LiquitContext <LiquitContext>]
    [<CommonParameters>]
 Get-LiquitTeam
    [-Name] <string> 
    [-LiquitContext <LiquitContext>]  
    [<CommonParameters>]
    
Examples
This command displays all the teams defined within Application Workspace:
 Get-LiquitTeam 
This command displays the specified team:
Get-LiquitTeam -id 00000000-0000-0000-0000-000000000000
Parameters
| Name | Value | Description | Required | Default value | 
|---|---|---|---|---|
| Search | <string> | This parameter serves a similar purpose to the search box found in the teams table from the Application Workspace UI. It enables users to search multiple columns within the table, such as Name and Description. When a search term is provided, the parameter filters records by matching values in these indexed columns. However, it's important to note that not all columns in the table are indexed, meaning that searches for values in these non-indexed columns will not return results. Non-indexed columns include for example the ID and columns containing checkboxes. | ||
| Name | <string> | Searches on the team name itself. | ||
| LiquitContext | <LiquitContext> | Determines the selected zone. | No | Default | 
New-LiquitTeam
Synopsis
This command creates a new team.
Syntax
 New-LiquitTeam 
    [-Name] <string> 
    [-Icon <Content>] 
    [-Description <string>] 
    [-LiquitContext <LiquitContext>] 
    [-WhatIf] 
    [-Confirm]  
    [<CommonParameters>]
Example
This command creates a new team named “PowerShell Team”:
 New-LiquitTeam -Name "PowerShell Team"
Parameters
| Name | Value | Description | Required | Default value | 
|---|---|---|---|---|
| Name | <string> | The name of the team to be created. | Yes | |
| Icon | <Content> | The icon of the team. | No | |
| Description | <string> | The description used for the team. | No | |
| LiquitContext | <LiquitContext> | Determines the selected zone. | No | Default | 
Set-LiquitTeam
Synopsis
This command lets you edit the properties of a team.
Syntax
 Set-LiquitTeam 
    [-Team] <Team[]> 
    [-Name <string>] 
    [-Description <string>] 
    [-Icon <Content>] 
    [-LiquitContext <LiquitContext>] 
    [-WhatIf] 
    [-Confirm]  
    [<CommonParameters>]
Example
The following script updates the team:
 $team = Get-LiquitTeam -ID 00000000-0000-0000-0000-000000000000
 Set-LiquitTeam -Name "Updated PowerShell Team" -Team $team
Parameters
| Name | Value | Description | Required | Default value | 
|---|---|---|---|---|
| Team | <Team[]> | The team to be updated. | Yes | |
| Name | <string> | The name of the team to be created. | No | |
| Icon | <Content> | The icon of the team. | No | |
| Description | <string> | The description of the team. | No | |
| LiquitContext | <LiquitContext> | Determines the selected zone. | No | Default | 
Remove-LiquitTeam
Synopsis
This command removes a team.
Syntax
 Remove-LiquitTeam 
    [-Team] <Team[]> 
    [-LiquitContext <LiquitContext>] 
    [-WhatIf] [-Confirm]  
    [<CommonParameters>]
Example
The following script removes the specified team:
 $team = Get-LiquitTeam -ID 00000000-0000-0000-0000-000000000000
 Remove-LiquitTeam -Team $team
Parameters
| Name | Value | Description | Required | Default value | 
|---|---|---|---|---|
| Team | <Team[]> | The team you want to remove. | Yes | |
| LiquitContext | <LiquitContext> | Determines the selected zone. | No | Default |