spo list label set¶
Sets classification label on the specified list
Usage¶
m365 spo list label set [options]
Options¶
-u, --webUrl <webUrl>
- The URL of the site where the list is located
--label <label>
- The label to set on the list
-t, --listTitle [listTitle]
- The title of the list on which to set the label. Specify only one of
listTitle
,listId
orlistUrl
-l, --listId [listId]
- The ID of the list on which to set the label. Specify only one of
listTitle
,listId
orlistUrl
--listUrl [listUrl]
- Server- or web-relative URL of the list on which to set the label. Specify only one of
listTitle
,listId
orlistUrl
--syncToItems
- Specify, to set the label on all items in the list
--blockDelete
- Specify, to disallow deleting items in the list
--blockEdit
- Specify, to disallow editing items in the list
-h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text
. Defaulttext
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
Sets classification label "Confidential" for list Shared Documents located in site https://contoso.sharepoint.com/sites/project-x
m365 spo list label set --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl 'Shared Documents' --label 'Confidential'
Sets classification label "Confidential" and disables editing and deleting items on the list and all existing items for list for list Documents located in site https://contoso.sharepoint.com/sites/project-x
m365 spo list label set --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'Documents' --label 'Confidential' --blockEdit --blockDelete --syncToItems