Skip to content

Commit 77cb38d

Browse files
author
Andy Wang
committed
Add missin params to teams ai policy cmdlet docs
1 parent d91170c commit 77cb38d

File tree

3 files changed

+62
-2
lines changed

3 files changed

+62
-2
lines changed

teams/teams-ps/teams/Get-CsTeamsAIPolicy.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,37 @@ Retrieves Teams AI policies, shows "EnrollFace" and "EnrollVoice" values.
3636

3737
## PARAMETERS
3838

39+
### -Identity
40+
Identity of the Teams AI policy.
41+
42+
```yaml
43+
Type: String
44+
Parameter Sets: (All)
45+
Aliases:
46+
47+
Required: True
48+
Position: Named
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### -Filter
55+
Enables you to use wildcard characters when indicating the policy (or policies) to be returned.
56+
To return a collection of all the per-user policies, use this syntax: -Filter "tag:*".
57+
58+
```yaml
59+
Type: String
60+
Parameter Sets: (All)
61+
Aliases:
62+
63+
Required: False
64+
Position: Named
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
3970
### CommonParameters
4071
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
4172

teams/teams-ps/teams/New-CsTeamsAIPolicy.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ PS C:\> New-CsTeamsAIPolicy -Identity Test
3333
Creates a new Teams AI policy with the specified identity.
3434
The newly created policy with value will be printed on success.
3535

36-
3736
## PARAMETERS
3837

3938
### -Identity
@@ -51,6 +50,36 @@ Accept pipeline input: False
5150
Accept wildcard characters: False
5251
```
5352
53+
### -EnrollFace
54+
Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings.
55+
56+
```yaml
57+
Type: Boolean
58+
Parameter Sets: ("Enabled","Disabled")
59+
Aliases:
60+
61+
Required: True
62+
Position: Named
63+
Default value: Enabled
64+
Accept pipeline input: False
65+
Accept wildcard characters: False
66+
```
67+
68+
### -EnrollVoice
69+
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings.
70+
71+
```yaml
72+
Type: Boolean
73+
Parameter Sets: ("Enabled","Disabled")
74+
Aliases:
75+
76+
Required: True
77+
Position: Named
78+
Default value: Enabled
79+
Accept pipeline input: False
80+
Accept wildcard characters: False
81+
```
82+
5483
### CommonParameters
5584
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
5685

teams/teams-ps/teams/Remove-CsTeamsAIPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This cmdlet deletes a Teams AI policy.
1818
## SYNTAX
1919

2020
```
21-
Remove-CsTeamsAIPolicy -Identity <String>
21+
Remove-CsTeamsAIPolicy -Identity <String>
2222
```
2323

2424
## DESCRIPTION

0 commit comments

Comments
 (0)