Skip to content

Commit 83df50c

Browse files
committed
Fixing issue #1860
1 parent b1940a1 commit 83df50c

File tree

7 files changed

+22
-6
lines changed

7 files changed

+22
-6
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTenantCdnOrigin.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ schema: 2.0.0
88
# Add-SPOTenantCdnOrigin
99

1010
## SYNOPSIS
11-
Configures a new origin to public or private content delivery network (CDN).
11+
12+
Configures a new origin to public or private content delivery network (CDN). Requires Tenant administrator permissions.
1213

1314
## SYNTAX
1415

@@ -18,13 +19,15 @@ Add-SPOTenantCdnOrigin -CdnType <SPOTenantCdnType> [-Confirm] -OriginUrl <String
1819
```
1920

2021
## DESCRIPTION
22+
2123
Configures a new origin to public or private CDN, on either Tenant level or on a single Site level. Effectively, a tenant admin points out to a document library, or a folder in the document library and requests that content in that library should be retrievable by using a CDN.
2224

2325
You must be a SharePoint Online global administrator and a site collection administrator to run the cmdlet.
2426

2527
## EXAMPLES
2628

2729
### Example 1
30+
2831
```
2932
Add-SPOTenantCdnOrigin -CdnType public -OriginUrl /sites/site/subfolder
3033
```
@@ -36,6 +39,7 @@ This example configures a public CDN on a site level.
3639
## PARAMETERS
3740

3841
### -CdnType
42+
3943
Specifies the CDN type. The valid values are: public or private.
4044

4145
```yaml
@@ -53,6 +57,7 @@ Accept wildcard characters: False
5357
```
5458
5559
### -Confirm
60+
5661
Prompts you for confirmation before running the cmdlet.
5762
5863
```yaml
@@ -68,6 +73,7 @@ Accept wildcard characters: False
6873
```
6974
7075
### -OriginUrl
76+
7177
Specifies a path to the doc library to be configured. It can be provided in two ways: relative path, or a mask.
7278
7379
Relative-Relative path depends on the OriginScope. If the originScope is Tenant, a path must be a relative path under the tenant root. If the originScope is Site, a path must be a relative path under the given Site. The path must point to the valid Document Library or a folder with a document library.
@@ -87,6 +93,7 @@ Accept wildcard characters: False
8793
```
8894
8995
### -WhatIf
96+
9097
Shows what would happen if the cmdlet runs.
9198
The cmdlet is not run.
9299
@@ -104,6 +111,7 @@ Accept wildcard characters: False
104111
```
105112
106113
### CommonParameters
114+
107115
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).
108116
109117
## INPUTS

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantCdnEnabled.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-SPOTenantCdnEnabled
99

1010
## SYNOPSIS
11-
Returns whether Public content delivery network (CDN) or Private CDN is enabled on the tenant level.
11+
Returns whether Public content delivery network (CDN) or Private CDN is enabled on the tenant level. Requires Tenant administrator permissions.
1212

1313

1414
## SYNTAX

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantCdnOrigins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-SPOTenantCdnOrigins
99

1010
## SYNOPSIS
11-
Lists all the configured origins under the tenancy or under a given site.
11+
Lists all the configured origins under the tenancy or under a given site. Requires Tenant administrator permissions.
1212

1313

1414
## SYNTAX

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantCdnPolicies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-SPOTenantCdnPolicies
99

1010
## SYNOPSIS
11-
Get the public or private Policies applied on your SharePoint Online Tenant
11+
Get the public or private Policies applied on your SharePoint Online Tenant. Requires Tenant administrator permissions.
1212

1313
## SYNTAX
1414

sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOTenantCdnOrigin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Remove-SPOTenantCdnOrigin
99

1010
## SYNOPSIS
11-
Removes a new origin from the Public or Private content delivery network (CDN).
11+
Removes a new origin from the Public or Private content delivery network (CDN). Requires Tenant administrator permissions.
1212

1313

1414
## SYNTAX

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Set-SPOTenantCdnEnabled
99

1010
## SYNOPSIS
11-
Enables or disables Public content delivery network (CDN) or Private CDN on the tenant level.
11+
Enables or disables Public content delivery network (CDN) or Private CDN on the tenant level. Requires Tenant administrator permissions.
1212

1313

1414
## SYNTAX

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ schema: 2.0.0
88
# Set-SPOTenantCdnPolicy
99

1010
## SYNOPSIS
11+
1112
Sets the content delivery network (CDN) policies from the tenant level.
1213

1314

@@ -19,19 +20,22 @@ Set-SPOTenantCdnPolicy -CdnType <SPOTenantCdnType> -PolicyType <SPOTenantCdnPoli
1920
```
2021

2122
## DESCRIPTION
23+
2224
{{Fill in the Description}}
2325

2426

2527
## EXAMPLES
2628

2729
### --------------------EXAMPLE 1---------------------
30+
2831
```
2932
Set-SPOTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue "CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF,BMP"
3033
```
3134

3235
This example sets a CDN to a public type with a policy value of listed extensions.
3336

3437
### --------------------EXAMPLE 2---------------------
38+
3539
```
3640
Set-SPOTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue "Confidential,Restricted"
3741
```
@@ -41,6 +45,7 @@ This example sets a CDN to a public type with a policy value of valid site class
4145
## PARAMETERS
4246

4347
### -CdnType
48+
4449
{{Fill CdnType Description}}
4550

4651
```yaml
@@ -58,6 +63,7 @@ Accept wildcard characters: False
5863
```
5964
6065
### -PolicyType
66+
6167
{{Fill PolicyType Description}}
6268
6369
```yaml
@@ -75,6 +81,7 @@ Accept wildcard characters: False
7581
```
7682
7783
### -PolicyValue
84+
7885
{{Fill PolicyValue Description}}
7986
8087
```yaml
@@ -91,6 +98,7 @@ Accept wildcard characters: False
9198
```
9299
93100
### CommonParameters
101+
94102
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).
95103
96104
## INPUTS

0 commit comments

Comments
 (0)