Skip to content

Latest commit

 

History

History
93 lines (64 loc) · 1.67 KB

File metadata and controls

93 lines (64 loc) · 1.67 KB

import Global from '../../_global.mdx'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

spo cdn origin list

List CDN origins settings for the current SharePoint Online tenant

Usage

m365 spo cdn origin list [options]

Options

`-t, --type [type]`
: Type of CDN to manage. Allowed values are: `Public`, `Private`. Default `Public`.

Remarks

Using the -t, --type option you can choose whether you want to manage the settings of the Public (default) or Private CDN. If you don't use the option, the command will use the Public CDN.

:::info

To use this command you must be either SharePoint Administrator or Global Administrator.

:::

Examples

Show the list of origins configured for the Public CDN.

m365 spo cdn origin list

Show the list of origins configured for the Private CDN.

m365 spo cdn origin list --type Private

Response

[
  "*/MASTERPAGE",
  "*/STYLE LIBRARY",
  "*/CLIENTSIDEASSETS"
]
*/MASTERPAGE
*/STYLE LIBRARY
*/CLIENTSIDEASSETS
*/MASTERPAGE
*/STYLE LIBRARY
*/CLIENTSIDEASSETS
*/MASTERPAGE
*/STYLE LIBRARY
*/CLIENTSIDEASSETS

More information