@pnp/cli-microsoft365 6.0.0-beta.c377306 → 6.0.0-beta.c561c1f
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.
- package/dist/m365/commands/commands.js +1 -0
- package/dist/m365/commands/request.js +153 -0
- package/dist/m365/graph/Changelog.js +3 -0
- package/dist/m365/graph/commands/changelog/changelog-list.js +160 -0
- package/dist/m365/graph/commands.js +1 -0
- package/dist/m365/onenote/commands/notebook/notebook-list.js +139 -0
- package/dist/m365/onenote/commands.js +7 -0
- package/dist/m365/planner/commands/task/task-get.js +7 -0
- package/dist/m365/spfx/commands/project/project-doctor/doctor-1.16.0-beta.1.js +23 -0
- package/dist/m365/spfx/commands/project/project-doctor.js +2 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +90 -79
- package/dist/m365/spo/commands/hubsite/hubsite-unregister.js +1 -1
- package/dist/m365/spo/commands/list/list-roleassignment-add.js +9 -0
- package/dist/m365/spo/commands/list/list-roleassignment-remove.js +57 -28
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-remove.js +206 -0
- package/dist/m365/spo/commands/web/web-roleassignment-add.js +187 -0
- package/dist/m365/spo/commands/web/web-roleassignment-remove.js +170 -0
- package/dist/m365/spo/commands.js +3 -0
- package/dist/request.js +6 -2
- package/docs/docs/cmd/adaptivecard/adaptivecard-send.md +0 -20
- package/docs/docs/cmd/graph/changelog/changelog-list.md +53 -0
- package/docs/docs/cmd/onenote/notebook/notebook-list.md +70 -0
- package/docs/docs/cmd/request.md +76 -0
- package/docs/docs/cmd/spfx/spfx-doctor.md +3 -3
- package/docs/docs/cmd/spo/hubsite/hubsite-unregister.md +2 -2
- package/docs/docs/cmd/spo/list/list-roleassignment-remove.md +3 -0
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-remove.md +67 -0
- package/docs/docs/cmd/spo/web/web-roleassignment-add.md +57 -0
- package/docs/docs/cmd/spo/web/web-roleassignment-remove.md +54 -0
- package/package.json +2 -1
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# graph changelog list
|
|
2
|
+
|
|
3
|
+
Gets an overview of specific API-level changes in Microsoft Graph v1.0 and beta
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 graph changelog list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-v, --versions [versions]`
|
|
14
|
+
: Comma-separated list of versions to show changes for. `Beta, v1.0`. When no version is selected all versions are returned.
|
|
15
|
+
|
|
16
|
+
`-c, --changeType [changeType]`
|
|
17
|
+
: Change type to show changes for. `Addition, Change, Deletion`. When no changeType is selected all change types are returned.
|
|
18
|
+
|
|
19
|
+
`-s, --services [services]`
|
|
20
|
+
: Comma-separated list of services to show changes for. `Applications, Calendar, Change notifications, Cloud communications, Compliance, Cross-device experiences, Customer booking, Device and app management, Education, Files, Financials, Groups, Identity and access, Mail, Notes, Notifications, People and workplace intelligence, Personal contacts, Reports, Search, Security, Sites and lists, Tasks and plans, Teamwork, To-do tasks, Users, Workbooks and charts`. When no service is selected all services are returned.
|
|
21
|
+
|
|
22
|
+
`--startDate [startDate]`
|
|
23
|
+
: The startdate used to query for changes. Supported date format is `YYYY-MM-DD`. When no date is specified all changes are returned.
|
|
24
|
+
|
|
25
|
+
`--endDate [endDate]`
|
|
26
|
+
: The enddate used to query for changes. Supported date format is `YYYY-MM-DD`. When no date is specified all changes are returned.
|
|
27
|
+
|
|
28
|
+
--8<-- "docs/cmd/_global.md"
|
|
29
|
+
|
|
30
|
+
## Remarks
|
|
31
|
+
|
|
32
|
+
!!! attention
|
|
33
|
+
This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
|
|
34
|
+
|
|
35
|
+
## Examples
|
|
36
|
+
|
|
37
|
+
Get all changes within Microsoft Graph.
|
|
38
|
+
|
|
39
|
+
```sh
|
|
40
|
+
m365 graph changelog list
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Get all changes within Microsoft Graph for the services _Groups_ and _Users_.
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
m365 graph changelog list --services 'Groups,Users'
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Get all changes within Microsoft Graph that happend between _2021-01-01_ and _2021-05-01_.
|
|
50
|
+
|
|
51
|
+
```sh
|
|
52
|
+
m365 graph changelog list --startDate '2021-01-01' --endDate '2021-05-01'
|
|
53
|
+
```
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# onenote notebook list
|
|
2
|
+
|
|
3
|
+
Retrieve a list of notebooks.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 onenote notebook list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`--userId [userId]`
|
|
14
|
+
: Id of the user. Use either userId or userName, but not both.
|
|
15
|
+
|
|
16
|
+
`--userName [userName]`
|
|
17
|
+
: Name of the user. Use either userId or userName, but not both.
|
|
18
|
+
|
|
19
|
+
`--groupId [groupId]`
|
|
20
|
+
: Id of the SharePoint group. Use either groupName or groupId, but not both
|
|
21
|
+
|
|
22
|
+
`--groupName [groupName]`
|
|
23
|
+
: Name of the SharePoint group. Use either groupName or groupId, but not both.
|
|
24
|
+
|
|
25
|
+
`-u, --webUrl [webUrl]`
|
|
26
|
+
: URL of the SharePoint site.
|
|
27
|
+
|
|
28
|
+
--8<-- "docs/cmd/_global.md"
|
|
29
|
+
|
|
30
|
+
## Examples
|
|
31
|
+
|
|
32
|
+
List Microsoft OneNote notebooks for the currently logged in user
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
m365 onenote notebook list
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
List Microsoft OneNote notebooks in group 233e43d0-dc6a-482e-9b4e-0de7a7bce9b4
|
|
39
|
+
|
|
40
|
+
```sh
|
|
41
|
+
m365 onenote notebook list --groupId 233e43d0-dc6a-482e-9b4e-0de7a7bce9b4
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
List Microsoft OneNote notebooks in group My Group
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
m365 onenote notebook list --groupName "MyGroup"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
List Microsoft OneNote notebooks for user user1@contoso.onmicrosoft.com
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
m365 onenote notebook list --userName user1@contoso.onmicrosoft.com
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
List Microsoft OneNote notebooks for user 2609af39-7775-4f94-a3dc-0dd67657e900
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
m365 onenote notebook list --userId 2609af39-7775-4f94-a3dc-0dd67657e900
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
List Microsoft OneNote notebooks for site https://contoso.sharepoint.com/sites/testsite
|
|
63
|
+
|
|
64
|
+
```sh
|
|
65
|
+
m365 onenote notebook list --webUrl https://contoso.sharepoint.com/sites/testsite
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## More information
|
|
69
|
+
|
|
70
|
+
- List notebooks (MS Graph docs): [https://docs.microsoft.com/en-us/graph/api/onenote-list-notebooks?view=graph-rest-1.0&tabs=http](https://docs.microsoft.com/en-us/graph/api/onenote-list-notebooks?view=graph-rest-1.0&tabs=http)
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# request
|
|
2
|
+
|
|
3
|
+
Executes the specified web request using CLI for Microsoft 365
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 request [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-u, --url <url>`
|
|
14
|
+
: The request URL.
|
|
15
|
+
|
|
16
|
+
`-m, --method [method]`
|
|
17
|
+
: The HTTP request method. Accepted values are `get, post, put, patch, delete, head, options`. The default value is `get`.
|
|
18
|
+
|
|
19
|
+
`-r, --resource [resource]`
|
|
20
|
+
: The resource uri for which the CLI should acquire a token from AAD in order to access
|
|
21
|
+
the service.
|
|
22
|
+
|
|
23
|
+
`-b, --body [body]`
|
|
24
|
+
: The request body. Optionally use `@example.json` to load the body from a file.
|
|
25
|
+
|
|
26
|
+
`-p, --filePath [filePath]`
|
|
27
|
+
: The file path to save the response to. This option can be used when downloading files.
|
|
28
|
+
|
|
29
|
+
--8<-- "docs/cmd/_global.md"
|
|
30
|
+
|
|
31
|
+
## Remarks
|
|
32
|
+
|
|
33
|
+
When executing a request, CLI will take care of the very basic configuration, and you'll need to specify all additional information, such as headers, method and body. CLI will take care for you of:
|
|
34
|
+
|
|
35
|
+
- applying compression and handling throttling,
|
|
36
|
+
- setting the `accept` to `application/json` if you don't specify it yourself,
|
|
37
|
+
- setting the `authorization` header to the bearer token obtained for the resource determined from the request URL
|
|
38
|
+
|
|
39
|
+
If you specify the `resource` option, the CLI will try to retrieve a valid token for the resource instead of determining the resource based on the url. The value doesn't have to be a URL. It can be also a URI like `app://<guid>`.
|
|
40
|
+
|
|
41
|
+
Specify additional headers by typing them as options, for example: `--content-type "application/json"`, `--if-match "*"`, `--x-requestdigest "somedigest"`.
|
|
42
|
+
|
|
43
|
+
!!! important
|
|
44
|
+
When building the request, depending on the shell you use, you might need to escape all `$` characters in the URL, request headers, and the body. If you don't do it, the shell will treat it as a variable and will remove the following word from the request, breaking the request.
|
|
45
|
+
|
|
46
|
+
## Examples
|
|
47
|
+
|
|
48
|
+
Call the SharePoint Rest API using a GET request with a constructed URL containing expands, filters and selects.
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
m365 request --url "https://contoso.sharepoint.com/sites/project-x/_api/web/siteusers?\$filter=IsShareByEmailGuestUser eq true&\$expand=Groups&\$select=Title,LoginName,Email,Groups/LoginName" --accept "application/json;odata=nometadata"
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Call the Microsoft Graph beta endpoint using a GET request.
|
|
55
|
+
|
|
56
|
+
```sh
|
|
57
|
+
m365 request --url "https://graph.microsoft.com/beta/me"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Call the SharePoint API to retrieve a form digest.
|
|
61
|
+
|
|
62
|
+
```sh
|
|
63
|
+
m365 request --method post --url "https://contoso.sharepoint.com/sites/project-x/_api/contextinfo"
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Call the SharePoint API to update a site title.
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
m365 request --method post --url "https://contoso.sharepoint.com/sites/project-x/_api/web" --body '{ "Title": "New title" }' --content-type "application/json" --x-http-method "PATCH"
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Call the Microsoft Graph to get a profile photo.
|
|
73
|
+
|
|
74
|
+
```sh
|
|
75
|
+
m365 request --url "https://graph.microsoft.com/beta/me/photo/\$value" --filePath ./profile-pic.jpg
|
|
76
|
+
```
|
|
@@ -37,7 +37,7 @@ This commands helps you to verify if your environment meets all prerequisites fo
|
|
|
37
37
|
|
|
38
38
|
The command starts by detecting the version of SharePoint Framework that you want to use. First, it looks at the current project. If you didn't run the command in the context of a SharePoint Framework project, the command will try to determine the SharePoint Framework version based on the SharePoint Framework Yeoman generator that you have installed either in the current directory or globally.
|
|
39
39
|
|
|
40
|
-
Based on the determined version of the SharePoint Framework, the command will look at other dependencies such as Node.js, npm, Yeoman, Gulp and TypeScript to verify if their meet the requirements of that particular version of the SharePoint Framework.
|
|
40
|
+
Based on the determined version of the SharePoint Framework, the command will look at other dependencies such as Node.js, npm, Yeoman, Gulp CLI and TypeScript to verify if their meet the requirements of that particular version of the SharePoint Framework.
|
|
41
41
|
|
|
42
42
|
If you miss any required tools or use a version that doesn't meet the SharePoint Framework requirements, the command will give you a list of recommendation how to address these issues.
|
|
43
43
|
|
|
@@ -51,11 +51,11 @@ Next to verifying the readiness of your environment to use a particular version
|
|
|
51
51
|
Verify if your environment meets the requirements to work with the SharePoint Framework
|
|
52
52
|
|
|
53
53
|
```sh
|
|
54
|
-
m365 spfx doctor
|
|
54
|
+
m365 spfx doctor --output text
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
Verify if your environment meets the requirements to work with the SharePoint Framework and also if the version of the SharePoint Framework that you're using is compatible with SharePoint 2019
|
|
58
58
|
|
|
59
59
|
```sh
|
|
60
|
-
m365 spfx doctor --env sp2019
|
|
60
|
+
m365 spfx doctor --env sp2019 --output text
|
|
61
61
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# spo hubsite unregister
|
|
2
2
|
|
|
3
|
-
Unregisters the
|
|
3
|
+
Unregisters the specified site collection as a hub site
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
@@ -33,7 +33,7 @@ Unregister the site collection with URL _https://contoso.sharepoint.com/sites/sa
|
|
|
33
33
|
m365 spo hubsite unregister --url https://contoso.sharepoint.com/sites/sales
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
Unregister the site collection with URL _https://contoso.sharepoint.com/sites/sales_ as a hub site without prompting for confirmation
|
|
36
|
+
Unregister the site collection with URL _https://contoso.sharepoint.com/sites/sales_ as a hub site without prompting for confirmation.
|
|
37
37
|
|
|
38
38
|
```sh
|
|
39
39
|
m365 spo hubsite unregister --url https://contoso.sharepoint.com/sites/sales --confirm
|
|
@@ -31,6 +31,9 @@ m365 spo list roleassignment remove [options]
|
|
|
31
31
|
`--groupName [groupName]`
|
|
32
32
|
: enter group name of Azure AD or SharePoint group. Specify either groupName or princpialId.
|
|
33
33
|
|
|
34
|
+
`--confirm`
|
|
35
|
+
: Don't prompt for confirming removing the role assignment
|
|
36
|
+
|
|
34
37
|
--8<-- "docs/cmd/_global.md"
|
|
35
38
|
|
|
36
39
|
## Examples
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# spo listitem roleassignment remove
|
|
2
|
+
|
|
3
|
+
Removes a role assignment from a listitem.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 spo listitem roleassignment remove [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-u, --webUrl <webUrl>`
|
|
14
|
+
: URL of the site where the listitem is located
|
|
15
|
+
|
|
16
|
+
`-i, --listId [listId]`
|
|
17
|
+
: ID of the list. Specify either listId, listTitle or listUrl but not multiple.
|
|
18
|
+
|
|
19
|
+
`-t, --listTitle [listTitle]`
|
|
20
|
+
: Title of the list. Specify either listId, listTitle or listUrl but not multiple.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Relative URL of the list. Specify either listId, listTitle or listUrl but not multiple.
|
|
24
|
+
|
|
25
|
+
`--listItemId <listItemId>`
|
|
26
|
+
: Id of the listitem to remove the role from.
|
|
27
|
+
|
|
28
|
+
`--principalId [principalId]`
|
|
29
|
+
: SharePoint ID of principal it may be either user id or group id we want to remove permissions Specify principalId only when upn or groupName are not used.
|
|
30
|
+
|
|
31
|
+
`--upn [upn]`
|
|
32
|
+
: upn/email of user. Specify either upn or princpialId.
|
|
33
|
+
|
|
34
|
+
`--groupName [groupName]`
|
|
35
|
+
: enter group name of Azure AD or SharePoint group. Specify either groupName or princpialId.
|
|
36
|
+
|
|
37
|
+
`--confirm`
|
|
38
|
+
: Don't prompt for confirming removing the role assignment
|
|
39
|
+
|
|
40
|
+
--8<-- "docs/cmd/_global.md"
|
|
41
|
+
|
|
42
|
+
## Examples
|
|
43
|
+
|
|
44
|
+
Remove roleassignment from listitem getting list by title based on group name
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listTitle "someList" --listItemId 1 --groupName "saleGroup"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Remove roleassignment from listitem getting list by title based on principal Id
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listTitle "Events" --listItemId 1 --principalId 2
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Remove roleassignment from listitem getting list by url based on principal Id
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listUrl '/sites/contoso-sales/lists/Events' --listItemId 1 --principalId 2
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
Remove roleassignment from listitem getting list by url based on principal Id without prompting for confirmation
|
|
64
|
+
|
|
65
|
+
```sh
|
|
66
|
+
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listUrl '/sites/contoso-sales/lists/Events' --listItemId 1 --principalId 2 --confirm
|
|
67
|
+
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# spo web roleassignment add
|
|
2
|
+
|
|
3
|
+
Adds a role assignment to web permissions.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 spo web roleassignment add [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-u, --webUrl <webUrl>`
|
|
14
|
+
: URL of the site
|
|
15
|
+
|
|
16
|
+
`--principalId [principalId]`
|
|
17
|
+
: SharePoint ID of principal it may be either user id or group id we want to add permissions to. Specify principalId only when upn or groupName are not used.
|
|
18
|
+
|
|
19
|
+
`--upn [upn]`
|
|
20
|
+
: upn/email of user to assign role to. Specify either upn or princpialId
|
|
21
|
+
|
|
22
|
+
`--groupName [groupName]`
|
|
23
|
+
: enter group name of Azure AD or SharePoint group.. Specify either groupName or princpialId
|
|
24
|
+
|
|
25
|
+
`--roleDefinitionId [roleDefinitionId]`
|
|
26
|
+
: ID of role definition. Specify either roleDefinitionId or roleDefinitionName but not both
|
|
27
|
+
|
|
28
|
+
`--roleDefinitionName [roleDefinitionName]`
|
|
29
|
+
: enter the name of a role definition, like 'Contribute', 'Read', etc. Specify either roleDefinitionId or roleDefinitionName but not both
|
|
30
|
+
|
|
31
|
+
--8<-- "docs/cmd/_global.md"
|
|
32
|
+
|
|
33
|
+
## Examples
|
|
34
|
+
|
|
35
|
+
add role assignment to site _https://contoso.sharepoint.com/sites/project-x_for principal id _11_ and role definition id _1073741829_
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 spo list roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --principalId 11 --roleDefinitionId 1073741829
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
add role assignment to site _https://contoso.sharepoint.com/sites/project-x_for upn _someaccount@tenant.onmicrosoft.com_ and role definition id _1073741829_
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 spo list roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --upn "someaccount@tenant.onmicrosoft.com" --roleDefinitionId 1073741829
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
add role assignment to site _https://contoso.sharepoint.com/sites/project-x_for group _someGroup_ and role definition id _1073741829_
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
m365 spo list roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --groupName "someGroup" --roleDefinitionId 1073741829
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
add role assignment to site _https://contoso.sharepoint.com/sites/project-x_for principal id _11_ and role definition name _Full Control_
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
m365 spo list roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --principalId 11 --roleDefinitionName "Full Control"
|
|
57
|
+
```
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# spo web roleassignment remove
|
|
2
|
+
|
|
3
|
+
Removes a role assignment from web permissions.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 spo web roleassignment remove [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-u, --webUrl <webUrl>`
|
|
14
|
+
: URL of the site
|
|
15
|
+
|
|
16
|
+
`--principalId [principalId]`
|
|
17
|
+
: SharePoint ID of principal it may be either user id or group id we want to add permissions to. Specify principalId only when upn or groupName are not used.
|
|
18
|
+
|
|
19
|
+
`--upn [upn]`
|
|
20
|
+
: Upn/email of user to assign role to. Specify upn only when principalId or groupName are not used.
|
|
21
|
+
|
|
22
|
+
`--groupName [groupName]`
|
|
23
|
+
: Enter group name of Azure AD or SharePoint group. Specify groupName only when principalId or upn are not used.
|
|
24
|
+
|
|
25
|
+
`--confirm [confirm]`
|
|
26
|
+
: Don't prompt for confirming removing the roleassignment.
|
|
27
|
+
|
|
28
|
+
--8<-- "docs/cmd/_global.md"
|
|
29
|
+
|
|
30
|
+
## Examples
|
|
31
|
+
|
|
32
|
+
Remove roleassignment from web based on group name
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
m365 spo list roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --groupName "saleGroup"
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Remove roleassignment from web based on principal Id
|
|
39
|
+
|
|
40
|
+
```sh
|
|
41
|
+
m365 spo list roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --principalId 2
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Remove roleassignment from web based on upn
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
m365 spo list roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --upn "someaccount@tenant.onmicrosoft.com"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Remove roleassignment from web based on principal Id without prompting for confirmation
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
m365 spo list roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --principalId 2 --confirm
|
|
54
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.c561c1f",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -138,6 +138,7 @@
|
|
|
138
138
|
"Kelkar, Vipul <vipul.kelkar@outlook.com>",
|
|
139
139
|
"Kesavanarayanan, Sudharsan <10280385+sudharsank@users.noreply.github.com>",
|
|
140
140
|
"Khalil, Bassem <bk@bassems-air.home>",
|
|
141
|
+
"Kirkham, Don <donkirkham@live.com>",
|
|
141
142
|
"Kumar, Shantha <34408892+ktskumar@users.noreply.github.com>",
|
|
142
143
|
"Lamber, Patrick <patrick@nubo.eu>",
|
|
143
144
|
"Laskewitz, Daniel <daniel@laskewitz.nl>",
|