@pnp/cli-microsoft365 6.8.0-beta.a10f6e4 → 6.8.0-beta.c74eb4b
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/.eslintrc.js +2 -0
- package/README.md +6 -1
- package/dist/m365/commands/commands.js +1 -0
- package/dist/m365/commands/docs.js +42 -0
- package/dist/m365/commands/login.js +1 -1
- package/dist/m365/pa/commands/app/app-consent-set.js +101 -0
- package/dist/m365/pa/commands.js +1 -0
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-get.js +97 -0
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-list.js +85 -0
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-policysettings-list.js +89 -0
- package/dist/m365/purview/commands.js +3 -0
- package/dist/m365/spo/commands/file/file-list.js +15 -4
- package/dist/m365/spo/commands/file/file-remove.js +3 -0
- package/dist/m365/spo/commands/list/list-get.js +30 -3
- package/dist/m365/spo/commands/list/list-list.js +39 -2
- package/dist/m365/spo/commands/term/term-add.js +13 -4
- package/dist/m365/spo/commands/term/term-get.js +14 -5
- package/dist/m365/spo/commands/term/term-group-get.js +12 -3
- package/dist/m365/spo/commands/term/term-group-list.js +39 -4
- package/dist/m365/spo/commands/term/term-list.js +18 -9
- package/dist/m365/spo/commands/term/term-set-add.js +13 -4
- package/dist/m365/spo/commands/term/term-set-get.js +12 -3
- package/dist/m365/spo/commands/term/term-set-list.js +12 -3
- package/dist/m365/spo/commands.js +1 -0
- package/docs/docs/cmd/aad/o365group/o365group-get.md +0 -12
- package/docs/docs/cmd/cli/cli-consent.md +6 -0
- package/docs/docs/cmd/cli/cli-doctor.md +17 -0
- package/docs/docs/cmd/cli/cli-issue.md +6 -0
- package/docs/docs/cmd/cli/cli-reconsent.md +6 -0
- package/docs/docs/cmd/cli/completion/completion-sh-setup.md +6 -0
- package/docs/docs/cmd/cli/config/config-get.md +6 -0
- package/docs/docs/cmd/docs.md +51 -0
- package/docs/docs/cmd/login.md +1 -1
- package/docs/docs/cmd/pa/app/app-consent-set.md +47 -0
- package/docs/docs/cmd/planner/task/task-get.md +0 -6
- package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-get.md +118 -0
- package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-list.md +111 -0
- package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-policysettings-list.md +97 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-get.md +17 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-list.md +17 -0
- package/docs/docs/cmd/spo/file/file-list.md +9 -6
- package/docs/docs/cmd/spo/file/file-remove.md +12 -0
- package/docs/docs/cmd/spo/list/list-get.md +10 -0
- package/docs/docs/cmd/spo/list/list-list.md +28 -0
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-list.md +19 -0
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-remove.md +12 -0
- package/docs/docs/cmd/spo/orgnewssite/orgnewssite-list.md +6 -0
- package/docs/docs/cmd/spo/page/page-column-get.md +15 -0
- package/docs/docs/cmd/spo/page/page-column-list.md +16 -0
- package/docs/docs/cmd/spo/page/page-control-get.md +18 -0
- package/docs/docs/cmd/spo/page/page-control-list.md +18 -0
- package/docs/docs/cmd/spo/page/page-copy.md +35 -0
- package/docs/docs/cmd/spo/page/page-get.md +39 -0
- package/docs/docs/cmd/spo/page/page-list.md +53 -0
- package/docs/docs/cmd/spo/page/page-section-get.md +12 -0
- package/docs/docs/cmd/spo/page/page-section-list.md +13 -0
- package/docs/docs/cmd/spo/page/page-template-list.md +31 -0
- package/docs/docs/cmd/spo/propertybag/propertybag-get.md +6 -0
- package/docs/docs/cmd/spo/propertybag/propertybag-list.md +13 -0
- package/docs/docs/cmd/spo/report/report-activityfilecounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-activitypages.md +7 -0
- package/docs/docs/cmd/spo/report/report-activityusercounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-activityuserdetail.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagedetail.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagefilecounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagepages.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagesitecounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagestorage.md +7 -0
- package/docs/docs/cmd/spo/roledefinition/roledefinition-get.md +20 -0
- package/docs/docs/cmd/spo/roledefinition/roledefinition-list.md +20 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-add.md +20 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-list.md +18 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-approve.md +20 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-list.md +17 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-set.md +13 -0
- package/docs/docs/cmd/spo/term/term-add.md +107 -6
- package/docs/docs/cmd/spo/term/term-get.md +111 -10
- package/docs/docs/cmd/spo/term/term-group-get.md +71 -5
- package/docs/docs/cmd/spo/term/term-group-list.md +70 -2
- package/docs/docs/cmd/spo/term/term-list.md +80 -8
- package/docs/docs/cmd/spo/term/term-set-add.md +95 -11
- package/docs/docs/cmd/spo/term/term-set-get.md +92 -8
- package/docs/docs/cmd/spo/term/term-set-list.md +85 -5
- package/package.json +1 -1
|
@@ -40,6 +40,12 @@ m365 cli reconsent
|
|
|
40
40
|
To re-consent the PnP Microsoft 365 Management Shell Azure AD application navigate in your web browser to https://login.microsoftonline.com/common/oauth2/authorize?client_id=31359c7f-bd7e-475c-86db-fdb8c937548e&response_type=code&prompt=admin_consent
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
=== "Markdown"
|
|
44
|
+
|
|
45
|
+
```md
|
|
46
|
+
To re-consent the PnP Microsoft 365 Management Shell Azure AD application navigate in your web browser to https://login.microsoftonline.com/common/oauth2/authorize?client_id=31359c7f-bd7e-475c-86db-fdb8c937548e&response_type=code&prompt=admin_consent
|
|
47
|
+
```
|
|
48
|
+
|
|
43
49
|
## More information
|
|
44
50
|
|
|
45
51
|
- Re-consent the PnP Microsoft 365 Management Shell Azure AD application: [https://pnp.github.io/cli-microsoft365/user-guide/connecting-office-365/#re-consent-the-pnp-office-365-management-shell-azure-ad-application](https://pnp.github.io/cli-microsoft365/user-guide/connecting-office-365/#re-consent-the-pnp-office-365-management-shell-azure-ad-application)
|
|
@@ -40,6 +40,12 @@ m365 cli completion sh setup
|
|
|
40
40
|
Command completion successfully registered. Restart your shell to load the completion
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
=== "Markdown"
|
|
44
|
+
|
|
45
|
+
```md
|
|
46
|
+
Command completion successfully registered. Restart your shell to load the completion
|
|
47
|
+
```
|
|
48
|
+
|
|
43
49
|
## More information
|
|
44
50
|
|
|
45
51
|
- Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# docs
|
|
2
|
+
|
|
3
|
+
Returns the CLI for Microsoft 365 docs webpage URL
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 docs [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
--8<-- "docs/cmd/_global.md"
|
|
14
|
+
|
|
15
|
+
## Remarks
|
|
16
|
+
|
|
17
|
+
Configure `autoOpenLinksInBrowser` using [cli config set](../cmd/cli/config/config-set.md) to automatically open the webpage in the default browser.
|
|
18
|
+
|
|
19
|
+
## Examples
|
|
20
|
+
|
|
21
|
+
Returns the CLI for Microsoft 365 docs webpage URL
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
m365 docs
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Response
|
|
28
|
+
|
|
29
|
+
=== "JSON"
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
"https://pnp.github.io/cli-microsoft365/"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
=== "Text"
|
|
36
|
+
|
|
37
|
+
```text
|
|
38
|
+
https://pnp.github.io/cli-microsoft365/
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
=== "CSV"
|
|
42
|
+
|
|
43
|
+
```csv
|
|
44
|
+
https://pnp.github.io/cli-microsoft365/
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
=== "Markdown"
|
|
48
|
+
|
|
49
|
+
```md
|
|
50
|
+
https://pnp.github.io/cli-microsoft365/
|
|
51
|
+
```
|
package/docs/docs/cmd/login.md
CHANGED
|
@@ -46,7 +46,7 @@ m365 login [options]
|
|
|
46
46
|
|
|
47
47
|
Using the `login` command you can log in to Microsoft 365.
|
|
48
48
|
|
|
49
|
-
By default, the `login` command uses device code OAuth flow to log in to Microsoft 365. Alternatively, you can authenticate using a user name and password or certificate, which are convenient for CI/CD scenarios, but which come with their own [limitations](../user-guide/connecting-
|
|
49
|
+
By default, the `login` command uses device code OAuth flow to log in to Microsoft 365. Alternatively, you can authenticate using a user name and password or certificate, which are convenient for CI/CD scenarios, but which come with their own [limitations](../user-guide/connecting-microsoft-365.md).
|
|
50
50
|
|
|
51
51
|
When logging in to Microsoft 365 using the user name and password, next to the access and refresh token, the CLI for Microsoft 365 will store the user credentials so that it can automatically re-authenticate if necessary. Similarly to the tokens, the credentials are removed by re-authenticating using the device code or by calling the [logout](logout.md) command.
|
|
52
52
|
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# pa app consent set
|
|
2
|
+
|
|
3
|
+
Configures if users can bypass the API Consent window for the selected canvas app
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 pa app consent set [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-e, --environment <environment>`
|
|
14
|
+
: The name of the environment.
|
|
15
|
+
|
|
16
|
+
`-n, --name <name>`
|
|
17
|
+
: The name of the Power App to update
|
|
18
|
+
|
|
19
|
+
`-b, --bypass <bypass>`
|
|
20
|
+
: Set to `true` to allow users to bypass the API Consent window. Set to `false` to disable the bypass.
|
|
21
|
+
|
|
22
|
+
`--confirm`
|
|
23
|
+
: Don't prompt for confirmation
|
|
24
|
+
|
|
25
|
+
--8<-- "docs/cmd/_global.md"
|
|
26
|
+
|
|
27
|
+
## Remarks
|
|
28
|
+
|
|
29
|
+
This command only works for canvas apps.
|
|
30
|
+
|
|
31
|
+
## Examples
|
|
32
|
+
|
|
33
|
+
Enables the bypass for the specified canvas app
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
m365 pa app consent set --environment 4be50206-9576-4237-8b17-38d8aadfaa36 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --bypass true
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Disables the bypass consent for the specified canvas app
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
m365 pa app consent set --environment 4be50206-9576-4237-8b17-38d8aadfaa36 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --bypass false --confirm
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Response
|
|
46
|
+
|
|
47
|
+
The command won't return a response on success.
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# purview sensitivitylabel get
|
|
2
|
+
|
|
3
|
+
Retrieve the specified sensitivity label
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 purview sensitivitylabel get [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-i, --id <id>`
|
|
14
|
+
: The Id of the sensitivity label.
|
|
15
|
+
|
|
16
|
+
`--userId [userId]`
|
|
17
|
+
: User's Azure AD ID. Optionally specify this if you want to get a list of sensitivity labels that the user has access to. Specify either `userId` or `userName` but not both.
|
|
18
|
+
|
|
19
|
+
`--userName [userName]`
|
|
20
|
+
: User's UPN (user principal name, e.g. johndoe@example.com). Optionally specify this if you want to get a list of sensitivity labels that the user has access to. Specify either `userId` or `userName` but not both.
|
|
21
|
+
|
|
22
|
+
--8<-- "docs/cmd/_global.md"
|
|
23
|
+
|
|
24
|
+
## Remarks
|
|
25
|
+
|
|
26
|
+
!!! attention
|
|
27
|
+
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.
|
|
28
|
+
|
|
29
|
+
!!! attention
|
|
30
|
+
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.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## Examples
|
|
34
|
+
|
|
35
|
+
Get a sensitivity label
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 purview sensitivitylabel get --id 6f4fb2db-ecf4-4279-94ba-23d059bf157e
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Get a sensitivity label that a specific user has access to by its Id
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 purview sensitivitylabel get --id 6f4fb2db-ecf4-4279-94ba-23d059bf157e --userId 59f80e08-24b1-41f8-8586-16765fd830d3
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Get a sensitivity label that a specific user has access to by its UPN
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
m365 purview sensitivitylabel get --id 6f4fb2db-ecf4-4279-94ba-23d059bf157e --userName john.doe@contoso.com
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Response
|
|
54
|
+
|
|
55
|
+
=== "JSON"
|
|
56
|
+
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"id": "6f4fb2db-ecf4-4279-94ba-23d059bf157e",
|
|
60
|
+
"name": "Unrestricted",
|
|
61
|
+
"description": "",
|
|
62
|
+
"color": "",
|
|
63
|
+
"sensitivity": 0,
|
|
64
|
+
"tooltip": "Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.",
|
|
65
|
+
"isActive": true,
|
|
66
|
+
"isAppliable": true,
|
|
67
|
+
"contentFormats": [
|
|
68
|
+
"file",
|
|
69
|
+
"email"
|
|
70
|
+
],
|
|
71
|
+
"hasProtection": false
|
|
72
|
+
}
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
=== "Text"
|
|
76
|
+
|
|
77
|
+
```text
|
|
78
|
+
color :
|
|
79
|
+
contentFormats: ["file","email"]
|
|
80
|
+
description :
|
|
81
|
+
hasProtection : false
|
|
82
|
+
id : 6f4fb2db-ecf4-4279-94ba-23d059bf157e
|
|
83
|
+
isActive : true
|
|
84
|
+
isAppliable : true
|
|
85
|
+
name : Unrestricted
|
|
86
|
+
sensitivity : 0
|
|
87
|
+
tooltip : Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
=== "CSV"
|
|
91
|
+
|
|
92
|
+
```csv
|
|
93
|
+
id,name,description,color,sensitivity,tooltip,isActive,isAppliable,contentFormats,hasProtection
|
|
94
|
+
6f4fb2db-ecf4-4279-94ba-23d059bf157e,Unrestricted,,,0,"Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.",1,1,"[""file"",""email""]",
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
=== "Markdown"
|
|
98
|
+
|
|
99
|
+
```md
|
|
100
|
+
# purview sensitivitylabel get --id "6f4fb2db-ecf4-4279-94ba-23d059bf157e"
|
|
101
|
+
|
|
102
|
+
Date: 3/25/2023
|
|
103
|
+
|
|
104
|
+
## Unrestricted (6f4fb2db-ecf4-4279-94ba-23d059bf157e)
|
|
105
|
+
|
|
106
|
+
Property | Value
|
|
107
|
+
---------|-------
|
|
108
|
+
id | 6f4fb2db-ecf4-4279-94ba-23d059bf157e
|
|
109
|
+
name | Unrestricted
|
|
110
|
+
description |
|
|
111
|
+
color |
|
|
112
|
+
sensitivity | 0
|
|
113
|
+
tooltip | Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.
|
|
114
|
+
isActive | true
|
|
115
|
+
isAppliable | true
|
|
116
|
+
contentFormats | ["file","email"]
|
|
117
|
+
hasProtection | false
|
|
118
|
+
```
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# purview sensitivitylabel list
|
|
2
|
+
|
|
3
|
+
Get a list of sensitivity labels
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 purview sensitivitylabel 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 sensitivity labels 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 sensitivity labels 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 label for a specific user. Without specifying either of these parameters, the command will retrieve the sensitivity label for the currently authenticated user when operating in delegated mode.
|
|
28
|
+
|
|
29
|
+
## Examples
|
|
30
|
+
|
|
31
|
+
Get a list of sensitivity labels
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
m365 purview sensitivitylabel list
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Get a list of sensitivity labels that a specific user has access to by its Id
|
|
38
|
+
|
|
39
|
+
```sh
|
|
40
|
+
m365 purview sensitivitylabel list --userId 59f80e08-24b1-41f8-8586-16765fd830d3
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Get a list of sensitivity labels that a specific user has access to by its UPN
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
m365 purview sensitivitylabel list --userName john.doe@contoso.com
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Response
|
|
50
|
+
|
|
51
|
+
=== "JSON"
|
|
52
|
+
|
|
53
|
+
```json
|
|
54
|
+
[
|
|
55
|
+
{
|
|
56
|
+
"id": "6f4fb2db-ecf4-4279-94ba-23d059bf157e",
|
|
57
|
+
"name": "Unrestricted",
|
|
58
|
+
"description": "",
|
|
59
|
+
"color": "",
|
|
60
|
+
"sensitivity": 0,
|
|
61
|
+
"tooltip": "Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.",
|
|
62
|
+
"isActive": true,
|
|
63
|
+
"isAppliable": true,
|
|
64
|
+
"contentFormats": [
|
|
65
|
+
"file",
|
|
66
|
+
"email"
|
|
67
|
+
],
|
|
68
|
+
"hasProtection": false,
|
|
69
|
+
"parent": null
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
=== "Text"
|
|
75
|
+
|
|
76
|
+
```text
|
|
77
|
+
id name isActive
|
|
78
|
+
------------------------------------ --------------------- --------
|
|
79
|
+
6f4fb2db-ecf4-4279-94ba-23d059bf157e Unrestricted true
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
=== "CSV"
|
|
83
|
+
|
|
84
|
+
```csv
|
|
85
|
+
id,name,isActive
|
|
86
|
+
6f4fb2db-ecf4-4279-94ba-23d059bf157e,Unrestricted,1
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
=== "Markdown"
|
|
90
|
+
|
|
91
|
+
```md
|
|
92
|
+
# purview sensitivitylabel list
|
|
93
|
+
|
|
94
|
+
Date: 3/26/2023
|
|
95
|
+
|
|
96
|
+
## Unrestricted (6f4fb2db-ecf4-4279-94ba-23d059bf157e)
|
|
97
|
+
|
|
98
|
+
Property | Value
|
|
99
|
+
---------|-------
|
|
100
|
+
id | 6f4fb2db-ecf4-4279-94ba-23d059bf157e
|
|
101
|
+
name | Unrestricted
|
|
102
|
+
description |
|
|
103
|
+
color |
|
|
104
|
+
sensitivity | 0
|
|
105
|
+
tooltip | Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.
|
|
106
|
+
isActive | true
|
|
107
|
+
isAppliable | true
|
|
108
|
+
contentFormats | ["file","email"]
|
|
109
|
+
hasProtection | false
|
|
110
|
+
parent | null
|
|
111
|
+
```
|
|
@@ -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
|
+
```
|
|
@@ -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 --
|
|
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 --
|
|
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 --
|
|
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 --
|
|
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" --
|
|
113
|
+
# spo file list --webUrl "https://contoso.sharepoint.com" --folderUrl "Shared Documents"
|
|
111
114
|
|
|
112
115
|
Date: 23/3/2023
|
|
113
116
|
|
|
@@ -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
|
+
```
|
|
@@ -30,6 +30,10 @@ m365 spo list get [options]
|
|
|
30
30
|
|
|
31
31
|
--8<-- "docs/cmd/_global.md"
|
|
32
32
|
|
|
33
|
+
## Remarks
|
|
34
|
+
|
|
35
|
+
When the `properties` option includes values with a `/`, for example: `ListItemAllFields/Id`, an additional `$expand` query parameter will be included on `ListItemAllFields`.
|
|
36
|
+
|
|
33
37
|
## Examples
|
|
34
38
|
|
|
35
39
|
Get information about a list with specified ID located in the specified site.
|
|
@@ -62,6 +66,12 @@ Get information about a list returning the specified list properties.
|
|
|
62
66
|
m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x --properties "Title,Id,HasUniqueRoleAssignments,AllowContentTypes"
|
|
63
67
|
```
|
|
64
68
|
|
|
69
|
+
Get information about a list returning the list Id, Title and ServerRelativeUrl properties.
|
|
70
|
+
|
|
71
|
+
```sh
|
|
72
|
+
m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x --properties "Title,Id,RootFolder/ServerRelativeUrl"
|
|
73
|
+
```
|
|
74
|
+
|
|
65
75
|
Get information about a list along with the roles and permissions.
|
|
66
76
|
|
|
67
77
|
```sh
|