Skip to content

Commit 55d4d88

Browse files
Merge pull request #1130 from Yadong1106/user/yadongzhai/addnewcommandforappscan
Add documentation for Get-SPOCustomCdnTenantApps and Get-SPOCustomCdnSiteCollectionApps cmdlets
2 parents 85e3f99 + c2029fb commit 55d4d88

File tree

3 files changed

+136
-0
lines changed

3 files changed

+136
-0
lines changed
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/microsoft.online.sharepoint.powershell/get-spocustomcdnsitecollectionapps
5+
applicable: SharePoint Online
6+
title: Get-SPOCustomCdnSiteCollectionApps
7+
schema: 2.0.0
8+
author: Yadong1106
9+
ms.author: yadongzhai
10+
---
11+
12+
# Get-SPOCustomCdnSiteCollectionApps
13+
14+
## SYNOPSIS
15+
16+
Retrieves all app installations that use a custom content delivery network (CDN) for a specific site collection.
17+
18+
## SYNTAX
19+
20+
```
21+
Get-SPOCustomCdnSiteCollectionApps -SiteUrl <String> [<CommonParameters>]
22+
```
23+
24+
## DESCRIPTION
25+
26+
Retrieves all app installations that are configured to use a custom CDN for the specified site collection. The output includes the product ID, title, app installation ID, site ID, and site URL of each app installation.
27+
28+
## EXAMPLES
29+
30+
### EXAMPLE 1
31+
32+
```powershell
33+
Get-SPOCustomCdnSiteCollectionApps -SiteUrl "https://contoso.sharepoint.com/sites/marketing"
34+
```
35+
36+
This example returns a list of all app installations that use a custom CDN for the specified site collection.
37+
38+
## PARAMETERS
39+
40+
### -SiteUrl
41+
42+
> Applicable: SharePoint Online
43+
44+
Specifies the URL of the site collection for which to retrieve custom CDN app installations.
45+
46+
```yaml
47+
Type: System.String
48+
Parameter Sets: (All)
49+
Aliases:
50+
51+
Required: True
52+
Position: Named
53+
Default value: None
54+
Accept pipeline input: False
55+
Accept wildcard characters: False
56+
```
57+
58+
### CommonParameters
59+
60+
This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
61+
62+
## INPUTS
63+
64+
### None
65+
66+
## OUTPUTS
67+
68+
### System.Object
69+
70+
## NOTES
71+
72+
## RELATED LINKS
73+
74+
[Get-SPOCustomCdnTenantApps](Get-SPOCustomCdnTenantApps.md)
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/microsoft.online.sharepoint.powershell/get-spocustomcdntenantapps
5+
applicable: SharePoint Online
6+
title: Get-SPOCustomCdnTenantApps
7+
schema: 2.0.0
8+
author: Yadong1106
9+
ms.author: yadongzhai
10+
---
11+
12+
# Get-SPOCustomCdnTenantApps
13+
14+
## SYNOPSIS
15+
16+
Retrieves all apps that use a custom content delivery network (CDN) from the Tenant App Catalog.
17+
18+
## SYNTAX
19+
20+
```
21+
Get-SPOCustomCdnTenantApps [<CommonParameters>]
22+
```
23+
24+
## DESCRIPTION
25+
26+
Retrieves all apps from the Tenant App Catalog that are configured to use a custom CDN. The output includes the product ID and title of each app.
27+
28+
## EXAMPLES
29+
30+
### EXAMPLE 1
31+
32+
```powershell
33+
Get-SPOCustomCdnTenantApps
34+
```
35+
36+
This example returns a list of all apps in the Tenant App Catalog that use a custom CDN.
37+
38+
## PARAMETERS
39+
40+
### CommonParameters
41+
42+
This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
43+
44+
## INPUTS
45+
46+
### None
47+
48+
## OUTPUTS
49+
50+
### System.Object
51+
52+
## NOTES
53+
54+
## RELATED LINKS
55+
56+
[Get-SPOCustomCdnSiteCollectionApps](Get-SPOCustomCdnSiteCollectionApps.md)

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,12 @@ Determines the compatibility with the partner tenant.
185185
### [Get-SPOCrossTenantHostUrl](Get-SPOCrossTenantHostUrl.md)
186186
Returns the cross-tenant host URL.
187187

188+
### [Get-SPOCustomCdnSiteCollectionApps](Get-SPOCustomCdnSiteCollectionApps.md)
189+
Retrieves all app installations that use a custom CDN for a specific site collection.
190+
191+
### [Get-SPOCustomCdnTenantApps](Get-SPOCustomCdnTenantApps.md)
192+
Retrieves all apps that use a custom CDN from the Tenant App Catalog.
193+
188194
### [Get-SPODataAccessGovernanceInsight](Get-SPODataAccessGovernanceInsight.md)
189195
Lists various 'Data Access Governance' (DAG) reports in SharePoint admin center.
190196

0 commit comments

Comments
 (0)