Skip to content

Commit 776f647

Browse files
authored
Update Set-SPOContainerTypeConfiguration.md
1 parent 79f7cb5 commit 776f647

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Set-SPOContainerTypeConfiguration.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ Set-SPOContainerTypeConfiguration -ContainerTypeId <Guid> [-DiscoverabilityDisab
2222
[-SharingRestricted <Boolean>] [-ApplicationRedirectUrl <String>] [-WhoCanShareAnonymousAllowList <Guid[]>]
2323
[-WhoCanShareAuthenticatedGuestAllowList <Guid[]>] [-OverrideTenantWhoCanShareAnonymousAllowList <Boolean>]
2424
[-OverrideTenantWhoCanShareAuthenticatedGuestAllowList <Boolean>]
25+
[[-CopilotEmbeddedChatHosts] <System.Collections.Generic.List`1[System.String]>] [-WhatIf] [-Confirm]
26+
[<CommonParameters>]
2527
```
2628

2729
## DESCRIPTION
@@ -72,6 +74,13 @@ Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb
7274

7375
Example 5 overrides the tenant-level `WhoCanShareAuthenticatedGuestAllowList` with a null value, while leaving the `WhoCanShareAnonymousAllowList` untouched. This has the effect of no longer restricting the privilege of sharing to authenticated guests to members of specific security groups.
7476

77+
### Example 6
78+
79+
```powershell
80+
Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585 -CopilotEmbeddedChatHosts "http://localhost:3000 https://contoso.sharepoint.com https://fabrikam.com"
81+
```
82+
This example sets the host URLs for the container type with Id 4f0af585.
83+
7584
## PARAMETERS
7685

7786
### -DiscoverabilityDisabled
@@ -137,7 +146,20 @@ Default value: None
137146
Accept pipeline input: False
138147
Accept wildcard characters: False
139148
```
149+
### -CopilotEmbeddedChatHosts
150+
This parameter is used to add host URLs allowed to use the SharePoint Embedded application's declarative agent experience.
151+
152+
```yaml
153+
Type: System.Collections.Generic.List`1[System.String]
154+
Parameter Sets: (All)
155+
Aliases:
140156

157+
Required: False
158+
Position: 3
159+
Default value: None
160+
Accept pipeline input: False
161+
Accept wildcard characters: False
162+
```
141163
142164
### -OverrideTenantWhoCanShareAnonymousAllowList
143165
@@ -295,6 +317,9 @@ Accept pipeline input: False
295317
Accept wildcard characters: False
296318
```
297319

320+
### CommonParameters
321+
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).
322+
298323
## RELATED LINKS
299324

300325
[Get-SPOContainerTypeConfiguration](Get-SPOContainerTypeConfiguration.md)

0 commit comments

Comments
 (0)