@pnp/cli-microsoft365 6.8.0-beta.62006d7 → 6.8.0-beta.85a1ca9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. package/.eslintrc.js +2 -0
  2. package/.mocharc.json +1 -0
  3. package/README.md +6 -1
  4. package/dist/Command.js +6 -0
  5. package/dist/chili/chili.js +298 -0
  6. package/dist/chili/index.js +20 -0
  7. package/dist/cli/Cli.js +2 -2
  8. package/dist/m365/app/commands/permission/permission-add.js +279 -0
  9. package/dist/m365/app/commands.js +1 -0
  10. package/dist/m365/commands/commands.js +2 -0
  11. package/dist/m365/commands/docs.js +42 -0
  12. package/dist/m365/commands/login.js +1 -1
  13. package/dist/m365/commands/setup.js +180 -0
  14. package/dist/m365/commands/setupPresets.js +25 -0
  15. package/dist/m365/pa/commands/app/app-consent-set.js +101 -0
  16. package/dist/m365/pa/commands.js +1 -0
  17. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-get.js +97 -0
  18. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-list.js +85 -0
  19. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-policysettings-list.js +89 -0
  20. package/dist/m365/purview/commands.js +3 -0
  21. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.15.2.js +2 -0
  22. package/dist/m365/spfx/commands/spfx-doctor.js +14 -30
  23. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-remove.js +146 -0
  24. package/dist/m365/spo/commands/file/file-checkin.js +8 -3
  25. package/dist/m365/spo/commands/file/file-checkout.js +8 -3
  26. package/dist/m365/spo/commands/file/file-copy.js +4 -4
  27. package/dist/m365/spo/commands/file/file-get.js +3 -1
  28. package/dist/m365/spo/commands/file/file-list.js +17 -6
  29. package/dist/m365/spo/commands/file/file-move.js +6 -7
  30. package/dist/m365/spo/commands/file/file-remove.js +6 -12
  31. package/dist/m365/spo/commands/file/file-rename.js +3 -3
  32. package/dist/m365/spo/commands/file/file-roleassignment-add.js +2 -1
  33. package/dist/m365/spo/commands/file/file-roleassignment-remove.js +3 -3
  34. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +2 -1
  35. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +2 -1
  36. package/dist/m365/spo/commands/file/file-sharinginfo-get.js +4 -2
  37. package/dist/m365/spo/commands/file/file-version-clear.js +3 -1
  38. package/dist/m365/spo/commands/file/file-version-get.js +3 -1
  39. package/dist/m365/spo/commands/file/file-version-remove.js +3 -1
  40. package/dist/m365/spo/commands/file/file-version-restore.js +3 -1
  41. package/dist/m365/spo/commands/folder/folder-copy.js +4 -4
  42. package/dist/m365/spo/commands/folder/folder-get.js +5 -2
  43. package/dist/m365/spo/commands/folder/folder-move.js +3 -2
  44. package/dist/m365/spo/commands/folder/folder-rename.js +5 -2
  45. package/dist/m365/spo/commands/list/list-get.js +30 -3
  46. package/dist/m365/spo/commands/list/list-list.js +39 -2
  47. package/dist/m365/spo/commands/listitem/listitem-batch-set.js +308 -0
  48. package/dist/m365/spo/commands/page/page-section-add.js +2 -3
  49. package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-permissionrequest-list.js +46 -1
  50. package/dist/m365/spo/commands/site/site-recyclebinitem-move.js +119 -0
  51. package/dist/m365/spo/commands/site/site-recyclebinitem-remove.js +106 -0
  52. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +30 -39
  53. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-list.js +47 -0
  54. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-remove.js +151 -0
  55. package/dist/m365/spo/commands/tenant/tenant-commandset-remove.js +152 -0
  56. package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +203 -0
  57. package/dist/m365/spo/commands/term/term-add.js +13 -4
  58. package/dist/m365/spo/commands/term/term-get.js +14 -5
  59. package/dist/m365/spo/commands/term/term-group-get.js +12 -3
  60. package/dist/m365/spo/commands/term/term-group-list.js +39 -4
  61. package/dist/m365/spo/commands/term/term-list.js +18 -9
  62. package/dist/m365/spo/commands/term/term-set-add.js +13 -4
  63. package/dist/m365/spo/commands/term/term-set-get.js +12 -3
  64. package/dist/m365/spo/commands/term/term-set-list.js +12 -3
  65. package/dist/m365/spo/commands.js +9 -0
  66. package/dist/utils/formatting.js +35 -11
  67. package/dist/utils/pid.js +5 -0
  68. package/dist/utils/spo.js +1 -1
  69. package/docs/docs/cmd/aad/o365group/o365group-get.md +0 -12
  70. package/docs/docs/cmd/app/permission/permission-add.md +53 -0
  71. package/docs/docs/cmd/cli/cli-consent.md +6 -0
  72. package/docs/docs/cmd/cli/cli-doctor.md +17 -0
  73. package/docs/docs/cmd/cli/cli-issue.md +6 -0
  74. package/docs/docs/cmd/cli/cli-reconsent.md +6 -0
  75. package/docs/docs/cmd/cli/completion/completion-sh-setup.md +6 -0
  76. package/docs/docs/cmd/cli/config/config-get.md +6 -0
  77. package/docs/docs/cmd/docs.md +51 -0
  78. package/docs/docs/cmd/flow/environment/environment-list.md +18 -0
  79. package/docs/docs/cmd/flow/flow-get.md +20 -0
  80. package/docs/docs/cmd/flow/flow-list.md +17 -0
  81. package/docs/docs/cmd/login.md +1 -1
  82. package/docs/docs/cmd/pa/app/app-consent-set.md +47 -0
  83. package/docs/docs/cmd/planner/plan/plan-get.md +1 -1
  84. package/docs/docs/cmd/planner/plan/plan-list.md +1 -1
  85. package/docs/docs/cmd/planner/roster/roster-add.md +2 -1
  86. package/docs/docs/cmd/planner/roster/roster-get.md +1 -1
  87. package/docs/docs/cmd/planner/roster/roster-remove.md +2 -1
  88. package/docs/docs/cmd/planner/task/task-get.md +0 -6
  89. package/docs/docs/cmd/planner/task/task-set.md +1 -1
  90. package/docs/docs/cmd/purview/retentionevent/retentionevent-add.md +6 -7
  91. package/docs/docs/cmd/purview/retentionevent/retentionevent-get.md +6 -7
  92. package/docs/docs/cmd/purview/retentionevent/retentionevent-list.md +4 -4
  93. package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.md +4 -4
  94. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.md +10 -10
  95. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.md +11 -11
  96. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.md +10 -10
  97. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.md +10 -10
  98. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.md +10 -10
  99. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.md +12 -12
  100. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.md +8 -9
  101. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.md +8 -9
  102. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.md +8 -8
  103. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.md +8 -8
  104. package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-get.md +118 -0
  105. package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-list.md +111 -0
  106. package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-policysettings-list.md +97 -0
  107. package/docs/docs/cmd/search/externalconnection/externalconnection-get.md +17 -0
  108. package/docs/docs/cmd/search/externalconnection/externalconnection-list.md +17 -0
  109. package/docs/docs/cmd/setup.md +86 -0
  110. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.md +1 -1
  111. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-remove.md +77 -0
  112. package/docs/docs/cmd/spo/commandset/commandset-set.md +1 -1
  113. package/docs/docs/cmd/spo/contenttype/contenttype-set.md +2 -2
  114. package/docs/docs/cmd/spo/customaction/customaction-add.md +1 -1
  115. package/docs/docs/cmd/spo/customaction/customaction-set.md +1 -1
  116. package/docs/docs/cmd/spo/file/file-add.md +1 -1
  117. package/docs/docs/cmd/spo/file/file-checkin.md +1 -1
  118. package/docs/docs/cmd/spo/file/file-checkout.md +1 -1
  119. package/docs/docs/cmd/spo/file/file-copy.md +1 -1
  120. package/docs/docs/cmd/spo/file/file-get.md +1 -1
  121. package/docs/docs/cmd/spo/file/file-list.md +9 -6
  122. package/docs/docs/cmd/spo/file/file-move.md +3 -3
  123. package/docs/docs/cmd/spo/file/file-remove.md +12 -0
  124. package/docs/docs/cmd/spo/file/file-rename.md +1 -1
  125. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.md +3 -3
  126. package/docs/docs/cmd/spo/file/file-retentionlabel-remove.md +2 -2
  127. package/docs/docs/cmd/spo/file/file-roleassignment-add.md +1 -1
  128. package/docs/docs/cmd/spo/file/file-roleassignment-remove.md +1 -1
  129. package/docs/docs/cmd/spo/file/file-roleinheritance-break.md +1 -1
  130. package/docs/docs/cmd/spo/file/file-roleinheritance-reset.md +1 -1
  131. package/docs/docs/cmd/spo/file/file-sharinginfo-get.md +1 -1
  132. package/docs/docs/cmd/spo/file/file-sharinglink-add.md +1 -1
  133. package/docs/docs/cmd/spo/file/file-sharinglink-clear.md +1 -1
  134. package/docs/docs/cmd/spo/file/file-sharinglink-get.md +1 -1
  135. package/docs/docs/cmd/spo/file/file-sharinglink-list.md +1 -1
  136. package/docs/docs/cmd/spo/file/file-sharinglink-remove.md +1 -1
  137. package/docs/docs/cmd/spo/file/file-sharinglink-set.md +1 -1
  138. package/docs/docs/cmd/spo/file/file-version-clear.md +2 -2
  139. package/docs/docs/cmd/spo/file/file-version-get.md +1 -1
  140. package/docs/docs/cmd/spo/file/file-version-list.md +1 -1
  141. package/docs/docs/cmd/spo/file/file-version-remove.md +1 -1
  142. package/docs/docs/cmd/spo/file/file-version-restore.md +1 -1
  143. package/docs/docs/cmd/spo/folder/folder-add.md +9 -3
  144. package/docs/docs/cmd/spo/folder/folder-copy.md +2 -2
  145. package/docs/docs/cmd/spo/folder/folder-get.md +7 -7
  146. package/docs/docs/cmd/spo/folder/folder-list.md +11 -11
  147. package/docs/docs/cmd/spo/folder/folder-move.md +1 -1
  148. package/docs/docs/cmd/spo/folder/folder-remove.md +7 -7
  149. package/docs/docs/cmd/spo/folder/folder-rename.md +11 -5
  150. package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.md +3 -3
  151. package/docs/docs/cmd/spo/folder/folder-retentionlabel-remove.md +1 -1
  152. package/docs/docs/cmd/spo/folder/folder-roleinheritance-break.md +1 -1
  153. package/docs/docs/cmd/spo/folder/folder-roleinheritance-reset.md +4 -4
  154. package/docs/docs/cmd/spo/list/list-get.md +10 -0
  155. package/docs/docs/cmd/spo/list/list-list.md +28 -0
  156. package/docs/docs/cmd/spo/listitem/listitem-batch-set.md +67 -0
  157. package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-list.md +19 -0
  158. package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-remove.md +12 -0
  159. package/docs/docs/cmd/spo/orgnewssite/orgnewssite-list.md +6 -0
  160. package/docs/docs/cmd/spo/page/page-column-get.md +15 -0
  161. package/docs/docs/cmd/spo/page/page-column-list.md +16 -0
  162. package/docs/docs/cmd/spo/page/page-control-get.md +18 -0
  163. package/docs/docs/cmd/spo/page/page-control-list.md +18 -0
  164. package/docs/docs/cmd/spo/page/page-copy.md +35 -0
  165. package/docs/docs/cmd/spo/page/page-get.md +39 -0
  166. package/docs/docs/cmd/spo/page/page-list.md +53 -0
  167. package/docs/docs/cmd/spo/page/page-section-get.md +12 -0
  168. package/docs/docs/cmd/spo/page/page-section-list.md +13 -0
  169. package/docs/docs/cmd/spo/page/page-template-list.md +31 -0
  170. package/docs/docs/cmd/spo/propertybag/propertybag-get.md +6 -0
  171. package/docs/docs/cmd/spo/propertybag/propertybag-list.md +13 -0
  172. package/docs/docs/cmd/spo/report/report-activityfilecounts.md +7 -0
  173. package/docs/docs/cmd/spo/report/report-activitypages.md +7 -0
  174. package/docs/docs/cmd/spo/report/report-activityusercounts.md +7 -0
  175. package/docs/docs/cmd/spo/report/report-activityuserdetail.md +7 -0
  176. package/docs/docs/cmd/spo/report/report-siteusagedetail.md +7 -0
  177. package/docs/docs/cmd/spo/report/report-siteusagefilecounts.md +7 -0
  178. package/docs/docs/cmd/spo/report/report-siteusagepages.md +7 -0
  179. package/docs/docs/cmd/spo/report/report-siteusagesitecounts.md +7 -0
  180. package/docs/docs/cmd/spo/report/report-siteusagestorage.md +7 -0
  181. package/docs/docs/cmd/spo/roledefinition/roledefinition-get.md +20 -0
  182. package/docs/docs/cmd/spo/roledefinition/roledefinition-list.md +20 -0
  183. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-add.md +20 -0
  184. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-list.md +18 -0
  185. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-approve.md +20 -0
  186. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-list.md +17 -0
  187. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-set.md +13 -0
  188. package/docs/docs/cmd/spo/site/site-recyclebinitem-move.md +43 -0
  189. package/docs/docs/cmd/spo/site/site-recyclebinitem-remove.md +45 -0
  190. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-add.md +1 -1
  191. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.md +103 -0
  192. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-remove.md +49 -0
  193. package/docs/docs/cmd/spo/tenant/tenant-commandset-remove.md +49 -0
  194. package/docs/docs/cmd/spo/tenant/tenant-commandset-set.md +57 -0
  195. package/docs/docs/cmd/spo/term/term-add.md +107 -6
  196. package/docs/docs/cmd/spo/term/term-get.md +111 -10
  197. package/docs/docs/cmd/spo/term/term-group-get.md +71 -5
  198. package/docs/docs/cmd/spo/term/term-group-list.md +70 -2
  199. package/docs/docs/cmd/spo/term/term-list.md +80 -8
  200. package/docs/docs/cmd/spo/term/term-set-add.md +95 -11
  201. package/docs/docs/cmd/spo/term/term-set-get.md +92 -8
  202. package/docs/docs/cmd/spo/term/term-set-list.md +85 -5
  203. package/docs/docs/cmd/teams/app/app-list.md +17 -0
  204. package/docs/docs/cmd/teams/app/app-publish.md +18 -1
  205. package/docs/docs/cmd/teams/channel/channel-add.md +20 -0
  206. package/docs/docs/cmd/teams/channel/channel-get.md +21 -0
  207. package/docs/docs/cmd/teams/channel/channel-list.md +21 -0
  208. package/docs/docs/cmd/teams/channel/channel-member-list.md +20 -0
  209. package/docs/docs/cmd/teams/channel/channel-member-set.md +21 -0
  210. package/docs/docs/cmd/teams/chat/chat-get.md +22 -0
  211. package/docs/docs/cmd/teams/chat/chat-list.md +22 -0
  212. package/docs/docs/cmd/teams/chat/chat-member-list.md +20 -0
  213. package/docs/docs/cmd/teams/chat/chat-message-list.md +23 -0
  214. package/docs/docs/cmd/teams/funsettings/funsettings-list.md +15 -0
  215. package/docs/docs/cmd/teams/guestsettings/guestsettings-list.md +13 -0
  216. package/docs/docs/cmd/teams/membersettings/membersettings-list.md +17 -0
  217. package/docs/docs/cmd/teams/tab/tab-remove.md +1 -1
  218. package/docs/docs/cmd/version.md +1 -1
  219. package/docs/docs/cmd/yammer/group/group-list.md +42 -0
  220. package/docs/docs/cmd/yammer/message/message-add.md +32 -0
  221. package/docs/docs/cmd/yammer/message/message-get.md +32 -0
  222. package/docs/docs/cmd/yammer/message/message-list.md +34 -0
  223. package/docs/docs/cmd/yammer/network/network-list.md +70 -0
  224. package/docs/docs/cmd/yammer/report/report-activitycounts.md +7 -0
  225. package/docs/docs/cmd/yammer/report/report-activityusercounts.md +7 -0
  226. package/docs/docs/cmd/yammer/report/report-activityuserdetail.md +7 -0
  227. package/docs/docs/cmd/yammer/report/report-deviceusagedistributionusercounts.md +7 -0
  228. package/docs/docs/cmd/yammer/report/report-deviceusageusercounts.md +7 -0
  229. package/docs/docs/cmd/yammer/report/report-deviceusageuserdetail.md +7 -0
  230. package/docs/docs/cmd/yammer/report/report-groupsactivitycounts.md +7 -0
  231. package/docs/docs/cmd/yammer/report/report-groupsactivitydetail.md +7 -0
  232. package/docs/docs/cmd/yammer/report/report-groupsactivitygroupcounts.md +7 -0
  233. package/docs/docs/cmd/yammer/user/user-get.md +55 -0
  234. package/docs/docs/cmd/yammer/user/user-list.md +55 -0
  235. package/docs/docs/cmd/yammer/yammer-search.md +15 -3
  236. package/package.json +2 -1
@@ -0,0 +1,97 @@
1
+ # purview sensitivitylabel policysettings list
2
+
3
+ Get a list of policy settings for a sensitivity label.
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 purview sensitivitylabel policysettings list [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `--userId [userId]`
14
+ : User's Azure AD ID. Optionally specify this if you want to get a list of policy settings for a sensitivity label that the user has access to. Specify either `userId` or `userName` but not both.
15
+
16
+ `--userName [userName]`
17
+ : User's UPN (user principal name, e.g. johndoe@example.com). Optionally specify this if you want to get a list of policy settings for a sensitivity label that the user has access to. Specify either `userId` or `userName` but not both.
18
+
19
+ --8<-- "docs/cmd/_global.md"
20
+
21
+ ## Remarks
22
+
23
+ !!! attention
24
+ This command is based on a Microsoft Graph API that is currently in preview and is subject to change once the API reached general availability.
25
+
26
+ !!! attention
27
+ When operating in app-only mode, you have the option to use either the `userName` or `userId` parameters to retrieve the sensitivity policy settings for a specific user. Without specifying either of these parameters, the command will retrieve the sensitivity policy settings for the currently authenticated user when operating in delegated mode.
28
+
29
+ ## Examples
30
+
31
+ Get a list of policy settings for a sensitivity label.
32
+
33
+ ```sh
34
+ m365 purview sensitivitylabel policysettings list
35
+ ```
36
+
37
+ Get a list of policy settings for a sensitivity label that a specific user has access to by its Id.
38
+
39
+ ```sh
40
+ m365 purview sensitivitylabel policysettings list --userId 59f80e08-24b1-41f8-8586-16765fd830d3
41
+ ```
42
+
43
+ Get a list of policy settings for a sensitivity label that a specific user has access to by its UPN.
44
+
45
+ ```sh
46
+ m365 purview sensitivitylabel policysettings list --userName john.doe@contoso.com
47
+ ```
48
+
49
+ ## Response
50
+
51
+ === "JSON"
52
+
53
+ ```json
54
+ {
55
+ "id": "71F139249895C2F6DC861031DAC47E0C2C37C6595582D4248CC77FD7293681B5DE348BC71AEB44068CB397DB021CADB4",
56
+ "moreInfoUrl": "https://docs.microsoft.com/en-us/microsoft-365/compliance/get-started-with-sensitivity-labels?view=o365-worldwide#end-user-documentation-for-sensitivity-labels",
57
+ "isMandatory": true,
58
+ "isDowngradeJustificationRequired": true,
59
+ "defaultLabelId": "022bb90d-0cda-491d-b861-d195b14532dc"
60
+ }
61
+ ```
62
+
63
+ === "Text"
64
+
65
+ ```text
66
+ defaultLabelId : 022bb90d-0cda-491d-b861-d195b14532dc
67
+ id : 71F139249895C2F6DC861031DAC47E0C2C37C6595582D4248CC77FD7293681B5DE348BC71AEB44068CB397
68
+ DB021CADB4
69
+ isDowngradeJustificationRequired: true
70
+ isMandatory : true
71
+ moreInfoUrl : https://docs.microsoft.com/en-us/microsoft-365/compliance/get-started-with-sensitivity-labels?view=o365-worldwide#end-user-documentation-for-sensitivity-labels
72
+ ```
73
+
74
+ === "CSV"
75
+
76
+ ```csv
77
+ id,moreInfoUrl,isMandatory,isDowngradeJustificationRequired,defaultLabelId
78
+ 71F139249895C2F6DC861031DAC47E0C2C37C6595582D4248CC77FD7293681B5DE348BC71AEB44068CB397DB021CADB4,https://docs.microsoft.com/en-us/microsoft-365/compliance/get-started-with-sensitivity-labels?view=o365-worldwide#end-user-documentation-for-sensitivity-labels,1,1,022bb90d-0cda-491d-b861-d195b14532dc
79
+ ```
80
+
81
+ === "Markdown"
82
+
83
+ ```md
84
+ # purview sensitivitylabel policysettings list
85
+
86
+ Date: 4/11/2023
87
+
88
+ ## 71F139249895C2F6DC861031DAC47E0C2C37C6595582D4248CC77FD7293681B5DE348BC71AEB44068CB397DB021CADB4
89
+
90
+ Property | Value
91
+ ---------|-------
92
+ id | 71F139249895C2F6DC861031DAC47E0C2C37C6595582D4248CC77FD7293681B5DE348BC71AEB44068CB397DB021CADB4
93
+ moreInfoUrl | https://docs.microsoft.com/en-us/microsoft-365/compliance/get-started-with-sensitivity-labels?view=o365-worldwide#end-user-documentation-for-sensitivity-labels
94
+ isMandatory | true
95
+ isDowngradeJustificationRequired | true
96
+ defaultLabelId | 022bb90d-0cda-491d-b861-d195b14532dc
97
+ ```
@@ -69,3 +69,20 @@ m365 search externalconnection get --name "Test"
69
69
  id,name,description,state,configuration
70
70
  CLITest,CLI-Test,CLI Test,draft,"{""authorizedApps"":[""31359c7f-bd7e-475c-86db-fdb8c937548e""],""authorizedAppIds"":[""31359c7f-bd7e-475c-86db-fdb8c937548e""]}"
71
71
  ```
72
+
73
+ === "Markdown"
74
+
75
+ ```md
76
+ # search externalconnection get --id "CLITest"
77
+
78
+ Date: 2022-11-05
79
+
80
+ ## CLI-Test (CLITest)
81
+
82
+ Property | Value
83
+ ---------|-------
84
+ id | CLITest
85
+ name | CLI-Test
86
+ description | CLI Test
87
+ state | draft
88
+ ```
@@ -57,3 +57,20 @@ m365 search externalconnection list
57
57
  id,name,state
58
58
  CLITest,CLI-Test,draft
59
59
  ```
60
+
61
+ === "Markdown"
62
+
63
+ ```md
64
+ # search externalconnection list
65
+
66
+ Date: 2022-09-05
67
+
68
+ ## CLI-Test (CLITest)
69
+
70
+ Property | Value
71
+ ---------|-------
72
+ id | CLITest
73
+ name | CLI-Test
74
+ description | CLI Test
75
+ state | draft
76
+ ```
@@ -0,0 +1,86 @@
1
+ # setup
2
+
3
+ Sets up CLI for Microsoft 365 based on your preferences
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 setup [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `--interactive`
14
+ : Configure CLI for Microsoft 365 for interactive use without prompting for additional information
15
+
16
+ `--scripting`
17
+ : Configure CLI for Microsoft 365 for use in scripts without prompting for additional information
18
+
19
+ --8<-- "docs/cmd/_global.md"
20
+
21
+ ## Remarks
22
+
23
+ The `m365 setup` command is a wizard that helps you configure the CLI for Microsoft 365 for your needs. It will ask you a series of questions and based on your answers, it will configure the CLI for Microsoft 365 for you.
24
+
25
+ The command will ask you the following questions:
26
+
27
+ - _How do you plan to use the CLI?_
28
+
29
+ You can choose between **interactive** and **scripting** use. In interactive mode, the CLI for Microsoft 365 will prompt you for additional information when needed, automatically open links browser, automatically show help on errors and show spinners. In **scripting** mode, the CLI will not use interactivity to prevent blocking your scripts.
30
+
31
+ - _Are you going to use the CLI in PowerShell?_ (asked only when you chose to configure CLI for scripting)
32
+
33
+ To simplify using CLI in PowerShell, you can configure the CLI to output errors to stdout, instead of the default stderr which is tedious to handle in PowerShell.
34
+
35
+ - _How experienced are you in using the CLI?_
36
+
37
+ You can choose between **beginner** and **proficient**. If you're just starting working with the CLI, it will show you full help information. For more experienced users, it will only show information about commands' options. No matter how you configure this setting, you can always invoke full help by using `--help full`.
38
+
39
+ After you answer these questions, the command will build a preset and ask you to confirm using it to configure the CLI.
40
+
41
+ If you want to configure the CLI on a non-interactive system, or want to configure CLI without answering the questions, you can use the `--interactive` or `--scripting` options. When using these options, CLI will apply the correct presets. Additionally, it will detect if it's used in PowerShell and configure CLI accordingly.
42
+
43
+ The `m365 setup` command uses the following presets:
44
+
45
+ - interactive use:
46
+ - autoOpenLinksInBrowser: true,
47
+ - copyDeviceCodeToClipboard: true,
48
+ - output: 'text',
49
+ - printErrorsAsPlainText: true,
50
+ - prompt: true,
51
+ - showHelpOnFailure: true,
52
+ - showSpinner: true
53
+ - scripting use:
54
+ - autoOpenLinksInBrowser: false,
55
+ - copyDeviceCodeToClipboard: false,
56
+ - output: 'json',
57
+ - printErrorsAsPlainText: false,
58
+ - prompt: false,
59
+ - showHelpOnFailure: false,
60
+ - showSpinner: false
61
+ - use in PowerShell:
62
+ - errorOutput: 'stdout'
63
+ - beginner:
64
+ - helpMode: 'full'
65
+ - proficient:
66
+ - helpMode: 'options'
67
+
68
+ ## Examples
69
+
70
+ Configure CLI for Microsoft based on your preferences interactively
71
+
72
+ ```sh
73
+ m365 setup
74
+ ```
75
+
76
+ Configure CLI for Microsoft for interactive use without prompting for additional information
77
+
78
+ ```sh
79
+ m365 setup --interactive
80
+ ```
81
+
82
+ Configure CLI for Microsoft for use in scripts without prompting for additional information
83
+
84
+ ```sh
85
+ m365 setup --scripting
86
+ ```
@@ -29,7 +29,7 @@ m365 spo applicationcustomizer add [options]
29
29
 
30
30
  ## Remarks
31
31
 
32
- Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treat quotes differently. For example, this is how an application customizer can be created from the Windows cmd.exe:
32
+ Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treats quotes differently. For example, this is how an application customizer can be created from the Windows cmd.exe:
33
33
 
34
34
  ```sh
35
35
  m365 spo applicationcustomizer add --webUrl https://contoso.sharepoint.com/sites/test --title "YourAppCustomizer" --clientSideComponentId b41916e7-e69d-467f-b37f-ff8ecf8f99f2 --clientSideComponentProperties '{\"testMessage\":\"Test message\"}'
@@ -0,0 +1,77 @@
1
+ # spo applicationcustomizer remove
2
+
3
+ Removes an application customizer that is added to a site
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo applicationcustomizer remove [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-u, --webUrl <webUrl>`
14
+ : The url of the site.
15
+
16
+ `-t, --title [title]`
17
+ : The title of the Application Customizer. Specify either `title`, `id` or `clientSideComponentId`.
18
+
19
+ `-i, --id [id]`
20
+ : The id of the Application Customizer. Specify either `title`, `id` or `clientSideComponentId`.
21
+
22
+ `-c, --clientSideComponentId [clientSideComponentId]`
23
+ : The Client Side Component Id (GUID) of the application customizer. Specify either `title`, `id` or `clientSideComponentId`.
24
+
25
+ `-s, --scope [scope]`
26
+ : Scope of the application customizer. Allowed values: `Site`, `Web`, and `All`. Defaults to `All`.
27
+
28
+ `--confirm`
29
+ : Don't prompt for confirming removal of the application customizer.
30
+
31
+ --8<-- "docs/cmd/_global.md"
32
+
33
+ ## Remarks
34
+
35
+ If the command finds multiple application customizers with the specified title or clientSideComponentId, it will prompt you to disambiguate which customizer it should remove, listing the discovered IDs.
36
+
37
+ ## Examples
38
+
39
+ Remove an application customizer by id
40
+
41
+ ```sh
42
+ m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales
43
+ ```
44
+
45
+ Remove an application customizer by title
46
+
47
+ ```sh
48
+ m365 spo applicationcustomizer remove --title "Some customizer" --webUrl https://contoso.sharepoint.com/sites/sales
49
+ ```
50
+
51
+ Remove an application customizer by clientSideComponentId
52
+
53
+ ```sh
54
+ m365 spo applicationcustomizer remove --clientSideComponentId 7096cded-b83d-4eab-96f0-df477ed7c0bc --webUrl https://contoso.sharepoint.com/sites/sales
55
+ ```
56
+
57
+ Remove an application customizer by its id without prompting for confirmation
58
+
59
+ ```sh
60
+ m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales --confirm
61
+ ```
62
+
63
+ Remove an application customizer from a site collection by its id without prompting for confirmation
64
+
65
+ ```sh
66
+ m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales --confirm --scope Site
67
+ ```
68
+
69
+ Remove an application customizer from a site by its id without prompting for confirmation
70
+
71
+ ```sh
72
+ m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales --confirm --scope Web
73
+ ```
74
+
75
+ ## Response
76
+
77
+ The command won't return a response on success.
@@ -41,7 +41,7 @@ m365 spo commandset set [options]
41
41
 
42
42
  ## Remarks
43
43
 
44
- Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treat quotes differently. For example, this is how a ListView Command Set can be created from the Windows cmd.exe:
44
+ Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treats quotes differently. For example, this is how a ListView Command Set can be created from the Windows cmd.exe:
45
45
 
46
46
  ```sh
47
47
  m365 spo commandset set --webUrl https://contoso.sharepoint.com/sites/test --title "CLI Commandset" --location "Both" --listType "List" --clientSideComponentProperties '{\"testMessage\":\"Test message\"}'
@@ -1,6 +1,6 @@
1
1
  # spo contenttype set
2
2
 
3
- Update an existing content type
3
+ Updates an existing content type
4
4
 
5
5
  ## Usage
6
6
 
@@ -16,7 +16,7 @@ m365 spo contenttype set [options]
16
16
  `-i, --id [id]`
17
17
  : ID of the content type to update. Specify `id` or `name` but not both, one is required.
18
18
 
19
- `-n, name [name]`
19
+ `-n, --name [name]`
20
20
  : Name of the content type to update. Specify the `id` or the `name` but not both, one is required.
21
21
 
22
22
  `--listTitle [listTitle]`
@@ -68,7 +68,7 @@ m365 spo customaction add [options]
68
68
 
69
69
  ## Remarks
70
70
 
71
- Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treat quotes differently. For example, this is how ApplicationCustomizer user custom action can be created from the Windows cmd.exe:
71
+ Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treats quotes differently. For example, this is how ApplicationCustomizer user custom action can be created from the Windows cmd.exe:
72
72
 
73
73
  ```sh
74
74
  m365 spo customaction add --webUrl https://contoso.sharepoint.com/sites/test --title "YourAppCustomizer" --name "YourName" --location "ClientSideExtension.ApplicationCustomizer" --clientSideComponentId b41916e7-e69d-467f-b37f-ff8ecf8f99f2 --clientSideComponentProperties '{\"testMessage\":\"Test message\"}'
@@ -71,7 +71,7 @@ m365 spo customaction set [options]
71
71
 
72
72
  ## Remarks
73
73
 
74
- Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treat quotes differently. For example, this is how ApplicationCustomizer user custom action can be created from the Windows cmd.exe:
74
+ Running this command from the Windows Command Shell (cmd.exe) or PowerShell for Windows OS XP, 7, 8, 8.1 without bash installed might require additional formatting for command options that have JSON, XML or JavaScript values because the command shell treats quotes differently. For example, this is how ApplicationCustomizer user custom action can be created from the Windows cmd.exe:
75
75
 
76
76
  ```sh
77
77
  m365 spo customaction set --webUrl https://contoso.sharepoint.com/sites/test --id 058140e3-0e37-44fc-a1d3-79c487d371a3 --clientSideComponentProperties '{\"testMessage\":\"Test message\"}'
@@ -14,7 +14,7 @@ m365 spo file add [options]
14
14
  : The URL of the site where the file should be uploaded to
15
15
 
16
16
  `-f, --folder <folder>`
17
- : Site-relative or server-relative URL to the folder where the file should be uploaded
17
+ : The server- or site-relative URL to the folder where the file should be uploaded
18
18
 
19
19
  `-p, --path <path>`
20
20
  : Local path to the file to upload
@@ -14,7 +14,7 @@ m365 spo file checkin [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-f, --url [url]`
17
- : The server-relative URL of the file to retrieve. Specify either `url` or `id` but not both
17
+ : The server- or site-relative URL of the file to retrieve. Specify either `url` or `id` but not both
18
18
 
19
19
  `-i, --id [id]`
20
20
  : The UniqueId (GUID) of the file to retrieve. Specify either `url` or `id` but not both
@@ -14,7 +14,7 @@ m365 spo file checkout [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-f, --url [url]`
17
- : The server-relative URL of the file to retrieve. Specify either `url` or `id` but not both
17
+ : The server- or site-relative URL of the file to retrieve. Specify either `url` or `id` but not both
18
18
 
19
19
  `-i, --id [id]`
20
20
  : The UniqueId (GUID) of the file to retrieve. Specify either `url` or `id` but not both
@@ -14,7 +14,7 @@ m365 spo file copy [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `-s, --sourceUrl <sourceUrl>`
17
- : Server-relative or absolute URL of the file.
17
+ : Site-relative, server-relative or absolute URL of the file.
18
18
 
19
19
  `-t, --targetUrl <targetUrl>`
20
20
  : Server-relative or absolute URL of the location.
@@ -14,7 +14,7 @@ m365 spo file get [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-u, --url [url]`
17
- : The server-relative URL of the file to retrieve. Specify either `url` or `id` but not both
17
+ : The server- or site-relative URL of the file to retrieve. Specify either `url` or `id` but not both
18
18
 
19
19
  `-i, --id [id]`
20
20
  : The UniqueId (GUID) of the file to retrieve. Specify either `url` or `id` but not both
@@ -13,8 +13,11 @@ m365 spo file list [options]
13
13
  `-u, --webUrl <webUrl>`
14
14
  : The URL of the site where the folder from which to retrieve files is located
15
15
 
16
+ `-f, --folderUrl <folderUrl>`
17
+ : The server- or site-relative URL of the parent folder from which to retrieve files
18
+
16
19
  `-f, --folder <folder>`
17
- : The server- or site-relative URL of the folder from which to retrieve files
20
+ : (deprecated. Use `folderUrl` instead) The server- or site-relative URL of the folder from which to retrieve files
18
21
 
19
22
  `--fields [fields]`
20
23
  : Comma-separated list of fields to retrieve. Will retrieve all fields if not specified.
@@ -36,25 +39,25 @@ When the `fields` option includes values with a `/`, for example: `ListItemAllFi
36
39
  Return all files from a folder
37
40
 
38
41
  ```sh
39
- m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folder 'Shared Documents'
42
+ m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folderUrl 'Shared Documents'
40
43
  ```
41
44
 
42
45
  Return all files from a folder and all the sub-folders
43
46
 
44
47
  ```sh
45
- m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folder 'Shared Documents' --recursive
48
+ m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folderUrl 'Shared Documents' --recursive
46
49
  ```
47
50
 
48
51
  Return the files from a folder with specific fields which will be expanded
49
52
 
50
53
  ```sh
51
- m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folder 'Shared Documents' --fields "Title,Length"
54
+ m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folderUrl 'Shared Documents' --fields "Title,Length"
52
55
  ```
53
56
 
54
57
  Return the files from a folder that meet the criteria of the filter with specific fields which will be expanded
55
58
 
56
59
  ```sh
57
- m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folder 'Shared Documents' --fields ListItemAllFields/Id --filter "Name eq 'document.docx'"
60
+ m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --folderUrl 'Shared Documents' --fields ListItemAllFields/Id --filter "Name eq 'document.docx'"
58
61
  ```
59
62
 
60
63
  ## Response
@@ -107,7 +110,7 @@ m365 spo file list --webUrl https://contoso.sharepoint.com/sites/project-x --fol
107
110
  === "Markdown"
108
111
 
109
112
  ```md
110
- # spo file list --webUrl "https://contoso.sharepoint.com" --folder "Shared Documents"
113
+ # spo file list --webUrl "https://contoso.sharepoint.com" --folderUrl "Shared Documents"
111
114
 
112
115
  Date: 23/3/2023
113
116
 
@@ -14,7 +14,7 @@ m365 spo file move [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-s, --sourceUrl <sourceUrl>`
17
- : Site-relative URL of the file to move
17
+ : The server- or site-relative URL of the file to move
18
18
 
19
19
  `-t, --targetUrl <targetUrl>`
20
20
  : Server-relative URL where to move the file
@@ -36,7 +36,7 @@ When you move a file using the `spo file move` command, all of the versions are
36
36
  Move file to a document library in another site collection
37
37
 
38
38
  ```sh
39
- m365 spo file move --webUrl https://contoso.sharepoint.com/sites/test1 --sourceUrl /Shared%20Documents/sp1.pdf --targetUrl /sites/test2/Shared%20Documents/
39
+ m365 spo file move --webUrl https://contoso.sharepoint.com/sites/test1 --sourceUrl /sites/test1/Shared%20Documents/sp1.pdf --targetUrl /sites/test2/Shared%20Documents/
40
40
  ```
41
41
 
42
42
  Move file to a document library in the same site collection
@@ -54,7 +54,7 @@ m365 spo file move --webUrl https://contoso.sharepoint.com/sites/test1 --sourceU
54
54
  Move file to a document library in another site collection. Allow for schema mismatch
55
55
 
56
56
  ```sh
57
- m365 spo file move --webUrl https://contoso.sharepoint.com/sites/test1 --sourceUrl /Shared%20Documents/sp1.pdf --targetUrl /sites/test2/Shared%20Documents/ --allowSchemaMismatch
57
+ m365 spo file move --webUrl https://contoso.sharepoint.com/sites/test1 --sourceUrl /sites/test1/Shared%20Documents/sp1.pdf --targetUrl /sites/test2/Shared%20Documents/ --allowSchemaMismatch
58
58
  ```
59
59
 
60
60
 
@@ -8,6 +8,12 @@ Removes the specified file
8
8
  m365 spo file remove [options]
9
9
  ```
10
10
 
11
+ ## Alias
12
+
13
+ ```sh
14
+ m365 spo page template remove
15
+ ```
16
+
11
17
  ## Options
12
18
 
13
19
  `-w, --webUrl <webUrl>`
@@ -46,3 +52,9 @@ Move the file with server-relative URL _/sites/project-x/SharedDocuments/Test.do
46
52
  ```sh
47
53
  m365 spo file remove --webUrl https://contoso.sharepoint.com/sites/project-x --url /sites/project-x/SharedDocuments/Test.docx --recycle
48
54
  ```
55
+
56
+ Remove the page template with site-relative URL _SharedDocuments/Test.docx_ from located in site _https://contoso.sharepoint.com/sites/project-x_
57
+
58
+ ```sh
59
+ m365 spo page template remove --webUrl https://contoso.sharepoint.com/sites/project-x --url SharedDocuments/Forms/Template.dotx
60
+ ```
@@ -14,7 +14,7 @@ m365 spo file rename [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-s, --sourceUrl <sourceUrl>`
17
- : Site-relative URL of the file to rename
17
+ : The server- or site-relative URL of the file to rename
18
18
 
19
19
  `-t, --targetFileName <targetFileName>`
20
20
  : New file name of the file
@@ -11,10 +11,10 @@ m365 spo file retentionlabel ensure [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : URL of the site where the retentionlabel from a file to apply is located
14
+ : URL of the site where the retention label from a file to apply is located
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The site- or server relative URL of the file that should be labelled. Specify either `fileUrl` or `fileId` but not both.
17
+ : The site- or server-relative URL of the file that should be labelled. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file that should be labelled. Specify either `fileUrl` or `fileId` but not both.
@@ -29,7 +29,7 @@ m365 spo file retentionlabel ensure [options]
29
29
 
30
30
  ## Remarks
31
31
 
32
- You can also use [spo listitem retentionlabel remove](./../../../cmd/spo//listitem/listitem-retentionlabel-remove.md) for removing the retentionlabel from a listitem.
32
+ You can also use [spo listitem retentionlabel remove](./../../../cmd/spo//listitem/listitem-retentionlabel-remove.md) for removing the retention label from a listitem.
33
33
 
34
34
  The `--assetId` option has to do with event-based retention. Event-based retention is about starting a retention period when a specific event occurs, instead of the moment a document was labeled or created.
35
35
 
@@ -11,10 +11,10 @@ m365 spo file retentionlabel remove [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : URL of the site where the retentionlabel from a file to remove is located
14
+ : URL of the site where the retention label from a file to remove is located
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The site- or server relative URL of the file of which the label should be removed. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative URL of the file of which the label should be removed. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `-i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file of which the label should be removed. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file roleassignment add [options]
14
14
  : URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file to retrieve. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file roleassignment remove [options]
14
14
  : URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `-i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file roleinheritance break [options]
14
14
  : URL of the site where the file is located
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative URL of the file. Specify either `fileUrl` or `fileId` but not both
17
+ : The server- or site-relative URL of the file. Specify either `fileUrl` or `fileId` but not both
18
18
 
19
19
  `i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both
@@ -14,7 +14,7 @@ m365 spo file roleinheritance reset [options]
14
14
  : URL of the site where the file is located
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
17
+ : The server- or site-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
18
18
 
19
19
  `i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
@@ -14,7 +14,7 @@ m365 spo file sharinginfo get [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-f, --fileUrl [fileUrl]`
17
- : The server-relative URL of the file for which to build the report. Specify either `fileUrl` or `fileId` but not both
17
+ : The server- or site-relative URL of the file for which to build the report. Specify either `fileUrl` or `fileId` but not both
18
18
 
19
19
  `-i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file for which to build the report. Specify either `fileUrl` or `fileId` but not both
@@ -14,7 +14,7 @@ m365 spo file sharinglink add [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `--fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file sharinglink clear [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `--fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file sharinglink get [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `--fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.