Skip to content

Commit 14462b8

Browse files
authored
Merge pull request #11914 from jamescadd/patch-2
Update Get-CsTeamsAcsFederationConfiguration.md
2 parents c42eada + 07617fc commit 14462b8

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

teams/teams-ps/teams/Get-CsTeamsAcsFederationConfiguration.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ This cmdlet is used to retrieve the federation configuration between Teams and A
1818

1919
```powershell
2020
Get-CsTeamsAcsFederationConfiguration
21+
[-Identity <String[]>]
22+
[-Filter <String>]
2123
```
2224

2325
## DESCRIPTION
@@ -56,6 +58,43 @@ EnableAcsUsers : False
5658

5759
## PARAMETERS
5860

61+
### -Filter
62+
Enables you to use wildcards when specifying the Teams and ACS federation configuration settings to be returned.
63+
Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter.
64+
However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*".
65+
66+
```yaml
67+
Type: String
68+
Parameter Sets: Filter
69+
Aliases:
70+
71+
Required: False
72+
Position: Named
73+
Default value: None
74+
Accept pipeline input: False
75+
Accept wildcard characters: False
76+
```
77+
78+
### -Identity
79+
Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Set-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example:
80+
81+
`Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"`
82+
83+
```yaml
84+
Type: String
85+
Parameter Sets: Identity
86+
Aliases:
87+
88+
Required: False
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### CommonParameters
96+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
97+
5998
## INPUTS
6099

61100
## OUTPUTS

0 commit comments

Comments
 (0)