@pnp/cli-microsoft365 5.9.0-beta.fd24b4e → 5.9.0
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 +15 -2
- package/README.md +5 -0
- package/dist/Command.js +16 -2
- package/dist/m365/aad/commands/app/app-add.js +37 -13
- package/dist/m365/commands/status.js +6 -1
- package/dist/m365/outlook/commands/mail/mail-send.js +55 -31
- package/dist/m365/planner/commands/bucket/bucket-get.js +1 -1
- package/dist/m365/pp/commands/Environment.js +3 -0
- package/dist/m365/pp/commands/card/card-get.js +110 -0
- package/dist/m365/pp/commands/card/card-list.js +68 -0
- package/dist/m365/pp/commands/dataverse/dataverse-table-list.js +6 -12
- package/dist/m365/pp/commands/environment/environment-get.js +75 -0
- package/dist/m365/pp/commands/gateway/gateway-get.js +70 -0
- package/dist/m365/pp/commands/solution/solution-get.js +117 -0
- package/dist/m365/pp/commands.js +5 -0
- package/dist/m365/spfx/commands/project/project-doctor.js +4 -1
- package/dist/m365/spfx/commands/project/project-externalize.js +4 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010001_YORC_version.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010002_YORC_isCreatingSolution.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010003_YORC_packageManager.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010004_YORC_componentType.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010005_YORC_environment.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010006_YORC_framework.js +3 -2
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010007_YORC_isDomainIsolated.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010008_YORC_nodeVersion.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010009_YORC_sdkVersions_microsoft_graph_client.js +56 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010010_YORC_sdkVersions_teams_js.js +56 -0
- package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.16.0-beta.1.js → upgrade-1.16.0-beta.2.js} +44 -28
- package/dist/m365/spfx/commands/project/project-upgrade.js +1 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +3 -3
- package/dist/m365/spo/commands/contenttype/contenttype-add.js +82 -43
- package/dist/m365/spo/commands/contenttype/contenttype-field-remove.js +53 -21
- package/dist/m365/spo/commands/contenttype/contenttype-get.js +35 -14
- package/dist/m365/spo/commands/eventreceiver/EventReceiver.js +3 -0
- package/dist/m365/spo/commands/eventreceiver/eventreceiver-remove.js +182 -0
- package/dist/m365/spo/commands/field/field-add.js +26 -1
- package/dist/m365/spo/commands/field/field-set.js +23 -13
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +129 -0
- package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +168 -0
- package/dist/m365/spo/commands/group/AssociatedGroupPropertiesCollection.js +3 -0
- package/dist/m365/spo/commands/group/group-list.js +49 -10
- package/dist/m365/spo/commands/list/list-contenttype-add.js +21 -18
- package/dist/m365/spo/commands/list/list-contenttype-default-set.js +59 -47
- package/dist/m365/spo/commands/list/list-contenttype-list.js +16 -8
- package/dist/m365/spo/commands/list/list-contenttype-remove.js +16 -8
- package/dist/m365/spo/commands/list/list-roleassignment-add.js +10 -10
- package/dist/m365/spo/commands/list/list-roleassignment-remove.js +8 -8
- package/dist/m365/spo/commands/list/list-roleinheritance-break.js +14 -6
- package/dist/m365/spo/commands/list/list-roleinheritance-reset.js +15 -7
- package/dist/m365/spo/commands/list/list-webhook-add.js +19 -11
- package/dist/m365/spo/commands/list/list-webhook-get.js +17 -10
- package/dist/m365/spo/commands/list/list-webhook-list.js +23 -24
- package/dist/m365/spo/commands/list/list-webhook-remove.js +19 -11
- package/dist/m365/spo/commands/list/list-webhook-set.js +18 -10
- package/dist/m365/spo/commands/listitem/listitem-add.js +24 -14
- package/dist/m365/spo/commands/listitem/listitem-attachment-list.js +18 -8
- package/dist/m365/spo/commands/listitem/listitem-get.js +18 -8
- package/dist/m365/spo/commands/listitem/listitem-isrecord.js +20 -10
- package/dist/m365/spo/commands/listitem/listitem-list.js +27 -11
- package/dist/m365/spo/commands/listitem/listitem-record-declare.js +19 -12
- package/dist/m365/spo/commands/listitem/listitem-record-undeclare.js +24 -21
- package/dist/m365/spo/commands/listitem/listitem-remove.js +19 -11
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +239 -0
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-remove.js +8 -8
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +13 -5
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +14 -6
- package/dist/m365/spo/commands/listitem/listitem-set.js +52 -44
- package/dist/m365/spo/commands/web/web-roleassignment-add.js +10 -10
- package/dist/m365/spo/commands/web/web-roleassignment-remove.js +8 -8
- package/dist/m365/spo/commands/web/web-roleinheritance-break.js +100 -0
- package/dist/m365/spo/commands.js +5 -0
- package/dist/m365/teams/commands/channel/channel-add.js +9 -9
- package/dist/m365/todo/commands/list/list-get.js +89 -0
- package/dist/m365/todo/commands/task/task-add.js +55 -3
- package/dist/m365/todo/commands/task/task-get.js +108 -0
- package/dist/m365/todo/commands/task/task-set.js +53 -1
- package/dist/m365/todo/commands.js +2 -0
- package/docs/docs/_clisettings.md +19 -0
- package/docs/docs/cmd/outlook/mail/mail-send.md +13 -0
- package/docs/docs/cmd/planner/bucket/bucket-add.md +29 -0
- package/docs/docs/cmd/planner/bucket/bucket-get.md +29 -0
- package/docs/docs/cmd/planner/bucket/bucket-list.md +30 -0
- package/docs/docs/cmd/planner/bucket/bucket-remove.md +4 -0
- package/docs/docs/cmd/planner/bucket/bucket-set.md +4 -0
- package/docs/docs/cmd/planner/plan/plan-add.md +123 -0
- package/docs/docs/cmd/planner/plan/plan-get.md +75 -0
- package/docs/docs/cmd/planner/plan/plan-list.md +45 -0
- package/docs/docs/cmd/planner/plan/plan-remove.md +4 -0
- package/docs/docs/cmd/pp/card/card-get.md +51 -0
- package/docs/docs/cmd/pp/card/card-list.md +33 -0
- package/docs/docs/cmd/pp/dataverse/dataverse-table-list.md +2 -2
- package/docs/docs/cmd/pp/environment/environment-get.md +38 -0
- package/docs/docs/cmd/pp/environment/environment-list.md +1 -1
- package/docs/docs/cmd/pp/gateway/gateway-get.md +24 -0
- package/docs/docs/cmd/pp/solution/solution-get.md +51 -0
- package/docs/docs/cmd/pp/solution/solution-list.md +2 -2
- package/docs/docs/cmd/spfx/project/project-rename.md +1 -14
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/contenttype/contenttype-add.md +20 -2
- package/docs/docs/cmd/spo/contenttype/contenttype-field-remove.md +22 -4
- package/docs/docs/cmd/spo/contenttype/contenttype-get.md +21 -3
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-get.md +2 -2
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-remove.md +69 -0
- package/docs/docs/cmd/spo/field/field-add.md +20 -2
- package/docs/docs/cmd/spo/field/field-set.md +11 -2
- package/docs/docs/cmd/spo/file/file-roleinheritance-break.md +54 -0
- package/docs/docs/cmd/spo/folder/folder-roleassignment-remove.md +57 -0
- package/docs/docs/cmd/spo/group/group-list.md +10 -1
- package/docs/docs/cmd/spo/list/list-contenttype-add.md +16 -7
- package/docs/docs/cmd/spo/list/list-contenttype-default-set.md +16 -7
- package/docs/docs/cmd/spo/list/list-contenttype-list.md +15 -6
- package/docs/docs/cmd/spo/list/list-contenttype-remove.md +17 -8
- package/docs/docs/cmd/spo/list/list-roleinheritance-break.md +11 -8
- package/docs/docs/cmd/spo/list/list-roleinheritance-reset.md +14 -5
- package/docs/docs/cmd/spo/list/list-webhook-add.md +15 -16
- package/docs/docs/cmd/spo/list/list-webhook-get.md +16 -7
- package/docs/docs/cmd/spo/list/list-webhook-list.md +16 -7
- package/docs/docs/cmd/spo/list/list-webhook-remove.md +12 -10
- package/docs/docs/cmd/spo/list/list-webhook-set.md +14 -12
- package/docs/docs/cmd/spo/listitem/listitem-add.md +11 -2
- package/docs/docs/cmd/spo/listitem/listitem-attachment-list.md +11 -2
- package/docs/docs/cmd/spo/listitem/listitem-get.md +11 -2
- package/docs/docs/cmd/spo/listitem/listitem-isrecord.md +12 -2
- package/docs/docs/cmd/spo/listitem/listitem-list.md +12 -3
- package/docs/docs/cmd/spo/listitem/listitem-record-declare.md +7 -4
- package/docs/docs/cmd/spo/listitem/listitem-record-undeclare.md +11 -2
- package/docs/docs/cmd/spo/listitem/listitem-remove.md +11 -2
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.md +81 -0
- package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-break.md +7 -4
- package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-reset.md +11 -2
- package/docs/docs/cmd/spo/listitem/listitem-set.md +7 -4
- package/docs/docs/cmd/spo/web/web-roleinheritance-break.md +44 -0
- package/docs/docs/cmd/teams/channel/channel-add.md +4 -4
- package/docs/docs/cmd/tenant/id/id-get.md +20 -0
- package/docs/docs/cmd/tenant/report/report-activeusercounts.md +35 -0
- package/docs/docs/cmd/tenant/report/report-activeuserdetail.md +49 -0
- package/docs/docs/cmd/tenant/report/report-office365activationcounts.md +32 -0
- package/docs/docs/cmd/tenant/report/report-office365activationsusercounts.md +30 -0
- package/docs/docs/cmd/tenant/report/report-office365activationsuserdetail.md +36 -0
- package/docs/docs/cmd/tenant/report/report-servicesusercounts.md +41 -0
- package/docs/docs/cmd/tenant/security/security-alerts-list.md +105 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-get.md +87 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-list.md +91 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-get.md +62 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-list.md +51 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-get.md +64 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-list.md +52 -0
- package/docs/docs/cmd/todo/list/list-get.md +61 -0
- package/docs/docs/cmd/todo/task/task-add.md +32 -5
- package/docs/docs/cmd/todo/task/task-get.md +75 -0
- package/docs/docs/cmd/todo/task/task-set.md +29 -2
- package/package.json +12 -3
|
@@ -31,3 +31,90 @@ Get the health report for the service _Exchange Online_ including the issues of
|
|
|
31
31
|
```sh
|
|
32
32
|
m365 tenant serviceannouncement health get --serviceName "Exchange Online" --issues
|
|
33
33
|
```
|
|
34
|
+
|
|
35
|
+
## Response
|
|
36
|
+
|
|
37
|
+
### Standard response
|
|
38
|
+
|
|
39
|
+
=== "JSON"
|
|
40
|
+
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"service": "Exchange Online",
|
|
44
|
+
"status": "serviceDegradation",
|
|
45
|
+
"id": "Exchange"
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
=== "Text"
|
|
50
|
+
|
|
51
|
+
```text
|
|
52
|
+
id : Exchange
|
|
53
|
+
service: Exchange Online
|
|
54
|
+
status : serviceDegradation
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
=== "CSV"
|
|
58
|
+
|
|
59
|
+
```csv
|
|
60
|
+
id,status,service
|
|
61
|
+
Exchange,serviceDegradation,Exchange Online
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### `issues` response
|
|
65
|
+
|
|
66
|
+
When we make use of the option `issues` the response will differ.
|
|
67
|
+
|
|
68
|
+
=== "JSON"
|
|
69
|
+
|
|
70
|
+
```json
|
|
71
|
+
{
|
|
72
|
+
"service": "Exchange Online",
|
|
73
|
+
"status": "serviceDegradation",
|
|
74
|
+
"id": "Exchange",
|
|
75
|
+
"issues": [
|
|
76
|
+
{
|
|
77
|
+
"startDateTime": "2022-08-17T18:27:00Z",
|
|
78
|
+
"endDateTime": "2022-08-18T16:06:18Z",
|
|
79
|
+
"lastModifiedDateTime": "2022-08-18T16:46:04.133Z",
|
|
80
|
+
"title": "AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center donÔÇÖt contain data prior to August 1, 2022",
|
|
81
|
+
"id": "EX415080",
|
|
82
|
+
"impactDescription": "AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center didn't contain data prior to August 1, 2022.",
|
|
83
|
+
"classification": "advisory",
|
|
84
|
+
"origin": "microsoft",
|
|
85
|
+
"status": "serviceRestored",
|
|
86
|
+
"service": "Exchange Online",
|
|
87
|
+
"feature": "Windows Live sign-in issue",
|
|
88
|
+
"featureGroup": "Sign-in",
|
|
89
|
+
"isResolved": true,
|
|
90
|
+
"highImpact": null,
|
|
91
|
+
"details": [],
|
|
92
|
+
"posts": [
|
|
93
|
+
{
|
|
94
|
+
"createdDateTime": "2022-08-17T18:34:54.95Z",
|
|
95
|
+
"postType": "regular",
|
|
96
|
+
"description": {
|
|
97
|
+
"contentType": "html",
|
|
98
|
+
"content": "Title: AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center donÔÇÖt contain data prior to August 1, 2022\\\n\nUser impact: AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center donÔÇÖt contain data prior to August 1, 2022.\\\n\nCurrent status: We're investigating a potential issue and checking for impact to your organization. We'll provide an update within 30 minutes."
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
=== "Text"
|
|
108
|
+
|
|
109
|
+
```text
|
|
110
|
+
id status service
|
|
111
|
+
---------- ------------------ -----------------
|
|
112
|
+
Exchange serviceDegradation Exchange Online
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
=== "CSV"
|
|
116
|
+
|
|
117
|
+
```csv
|
|
118
|
+
id,status,service
|
|
119
|
+
Exchange,serviceDegradation,Exchange Online
|
|
120
|
+
```
|
|
@@ -28,3 +28,94 @@ Get the health report of all subscribed services for a tenant including the issu
|
|
|
28
28
|
```sh
|
|
29
29
|
m365 tenant serviceannouncement health list --issues
|
|
30
30
|
```
|
|
31
|
+
|
|
32
|
+
## Response
|
|
33
|
+
|
|
34
|
+
### Standard response
|
|
35
|
+
|
|
36
|
+
=== "JSON"
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
[
|
|
40
|
+
{
|
|
41
|
+
"service": "Exchange Online",
|
|
42
|
+
"status": "serviceDegradation",
|
|
43
|
+
"id": "Exchange"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
=== "Text"
|
|
49
|
+
|
|
50
|
+
```text
|
|
51
|
+
id status service
|
|
52
|
+
---------- ------------------ -----------------
|
|
53
|
+
Exchange serviceDegradation Exchange Online
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
=== "CSV"
|
|
57
|
+
|
|
58
|
+
```csv
|
|
59
|
+
id,status,service
|
|
60
|
+
Exchange,serviceDegradation,Exchange Online
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### `issues` response
|
|
64
|
+
|
|
65
|
+
When we make use of the option `issues` the response will differ.
|
|
66
|
+
|
|
67
|
+
=== "JSON"
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
[
|
|
71
|
+
{
|
|
72
|
+
"service": "Microsoft Defender for Cloud Apps",
|
|
73
|
+
"status": "serviceOperational",
|
|
74
|
+
"id": "cloudappsecurity",
|
|
75
|
+
"issues": [
|
|
76
|
+
{
|
|
77
|
+
"startDateTime": "2022-05-13T00:00:00Z",
|
|
78
|
+
"endDateTime": "2022-05-16T13:10:00Z",
|
|
79
|
+
"lastModifiedDateTime": "2022-05-17T11:00:42.2Z",
|
|
80
|
+
"title": "Microsoft Defender for Cloud Apps admin panel changes not propagating to Microsoft Defender for Endpoint",
|
|
81
|
+
"id": "CS381143",
|
|
82
|
+
"impactDescription": "Admins may notice that Microsoft Defender for Cloud Apps admin panel changes did not propagate to Microsoft Defender for",
|
|
83
|
+
"classification": "advisory",
|
|
84
|
+
"origin": "microsoft",
|
|
85
|
+
"status": "serviceRestored",
|
|
86
|
+
"service": "Microsoft Defender for Cloud Apps",
|
|
87
|
+
"feature": "Cloud App Security",
|
|
88
|
+
"featureGroup": "Cloud App Security",
|
|
89
|
+
"isResolved": true,
|
|
90
|
+
"highImpact": null,
|
|
91
|
+
"details": [],
|
|
92
|
+
"posts": [
|
|
93
|
+
{
|
|
94
|
+
"createdDateTime": "2022-05-17T08:31:31.113Z",
|
|
95
|
+
"postType": "regular",
|
|
96
|
+
"description": {
|
|
97
|
+
"contentType": "html",
|
|
98
|
+
"content": "Title: Microsoft Defender for Cloud Apps admin panel changes not propagating to Microsoft Defender for Endpoint\\\n\nUser Impact: Admins may notice that Microsoft Defender for Cloud Apps admin panel changes do not propagate to Microsoft Defender for Endpoint.\\\n\nCurrent status: We're analyzing system logs to determine the source of the issue.\\\n\nScope of impact: Impact is specific to users who are served through the affected infrastructure.\\\n\nNext update by: Tuesday, May 17, 2022, at 10:30 AM UTC"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
=== "Text"
|
|
109
|
+
|
|
110
|
+
```text
|
|
111
|
+
id status service
|
|
112
|
+
---------- ------------------ -----------------
|
|
113
|
+
Exchange serviceDegradation Exchange Online
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
=== "CSV"
|
|
117
|
+
|
|
118
|
+
```csv
|
|
119
|
+
id,status,service
|
|
120
|
+
Exchange,serviceDegradation,Exchange Online
|
|
121
|
+
```
|
|
@@ -22,3 +22,65 @@ Gets information about issue with ID _MO226784_
|
|
|
22
22
|
```sh
|
|
23
23
|
m365 tenant serviceannouncement healthissue get --id MO226784
|
|
24
24
|
```
|
|
25
|
+
|
|
26
|
+
## Response
|
|
27
|
+
|
|
28
|
+
=== "JSON"
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"startDateTime": "2022-05-24T16:00:00Z",
|
|
33
|
+
"endDateTime": "2022-05-24T22:20:00Z",
|
|
34
|
+
"lastModifiedDateTime": "2022-05-24T22:27:18.63Z",
|
|
35
|
+
"title": "Installation delays within the Power Platform admin center",
|
|
36
|
+
"id": "CR384241",
|
|
37
|
+
"impactDescription": "Users may have experienced delays when installing applications within the Power Platform admin center.",
|
|
38
|
+
"classification": "advisory",
|
|
39
|
+
"origin": "microsoft",
|
|
40
|
+
"status": "serviceRestored",
|
|
41
|
+
"service": "Dynamics 365 Apps",
|
|
42
|
+
"feature": "Other",
|
|
43
|
+
"featureGroup": "Other",
|
|
44
|
+
"isResolved": true,
|
|
45
|
+
"highImpact": null,
|
|
46
|
+
"details": [],
|
|
47
|
+
"posts": [
|
|
48
|
+
{
|
|
49
|
+
"createdDateTime": "2022-05-24T21:22:56.817Z",
|
|
50
|
+
"postType": "regular",
|
|
51
|
+
"description": {
|
|
52
|
+
"contentType": "html",
|
|
53
|
+
"content": "Title: Installation delays within the Power Platform admin center\\\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\\\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\\\n\nThis information is preliminary and may be subject to changes, corrections, and updates."
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
=== "Text"
|
|
61
|
+
|
|
62
|
+
```text
|
|
63
|
+
classification : advisory
|
|
64
|
+
details : []
|
|
65
|
+
endDateTime : 2022-05-24T22:20:00Z
|
|
66
|
+
feature : Other
|
|
67
|
+
featureGroup : Other
|
|
68
|
+
highImpact : null
|
|
69
|
+
id : CR384241
|
|
70
|
+
impactDescription : Users may have experienced delays when installing applications within the Power Platform admin center.
|
|
71
|
+
isResolved : true
|
|
72
|
+
lastModifiedDateTime: 2022-05-24T22:27:18.63Z
|
|
73
|
+
origin : microsoft
|
|
74
|
+
posts : [{"createdDateTime":"2022-05-24T21:22:56.817Z","postType":"regular","description":{"contentType":"html","content":"Title: Installation delays within the Power Platform admin center\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\n\nThis information is preliminary and may be subject to changes, corrections, and updates."}}]
|
|
75
|
+
service : Dynamics 365 Apps
|
|
76
|
+
startDateTime : 2022-05-24T16:00:00Z
|
|
77
|
+
status : serviceRestored
|
|
78
|
+
title : Installation delays within the Power Platform admin center
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
=== "CSV"
|
|
82
|
+
|
|
83
|
+
```csv
|
|
84
|
+
startDateTime,endDateTime,lastModifiedDateTime,title,id,impactDescription,classification,origin,status,service,feature,featureGroup,isResolved,highImpact,details,posts
|
|
85
|
+
2022-05-24T16:00:00Z,2022-05-24T22:20:00Z,2022-05-24T22:27:18.63Z,Installation delays within the Power Platform admin center,CR384241,Users may have experienced delays when installing applications within the Power Platform admin center.,advisory,microsoft,serviceRestored,Dynamics 365 Apps,Other,Other,1,,[],"[{""createdDateTime"":""2022-05-24T21:22:56.817Z"",""postType"":""regular"",""description"":{""contentType"":""html"",""content"":""Title: Installation delays within the Power Platform admin center\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\n\nThis information is preliminary and may be subject to changes, corrections, and updates.""}}]"
|
|
86
|
+
```
|
|
@@ -29,6 +29,57 @@ Get service health issues for Microsoft Forms
|
|
|
29
29
|
m365 tenant serviceannouncement healthissue list --service "Microsoft Forms"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
## Response
|
|
33
|
+
|
|
34
|
+
=== "JSON"
|
|
35
|
+
|
|
36
|
+
```json
|
|
37
|
+
[
|
|
38
|
+
{
|
|
39
|
+
"startDateTime": "2022-05-24T16:00:00Z",
|
|
40
|
+
"endDateTime": "2022-05-24T22:20:00Z",
|
|
41
|
+
"lastModifiedDateTime": "2022-05-24T22:27:18.63Z",
|
|
42
|
+
"title": "Installation delays within the Power Platform admin center",
|
|
43
|
+
"id": "CR384241",
|
|
44
|
+
"impactDescription": "Users may have experienced delays when installing applications within the Power Platform admin center.",
|
|
45
|
+
"classification": "advisory",
|
|
46
|
+
"origin": "microsoft",
|
|
47
|
+
"status": "serviceRestored",
|
|
48
|
+
"service": "Dynamics 365 Apps",
|
|
49
|
+
"feature": "Other",
|
|
50
|
+
"featureGroup": "Other",
|
|
51
|
+
"isResolved": true,
|
|
52
|
+
"highImpact": null,
|
|
53
|
+
"details": [],
|
|
54
|
+
"posts": [
|
|
55
|
+
{
|
|
56
|
+
"createdDateTime": "2022-05-24T21:22:56.817Z",
|
|
57
|
+
"postType": "regular",
|
|
58
|
+
"description": {
|
|
59
|
+
"contentType": "html",
|
|
60
|
+
"content": "Title: Installation delays within the Power Platform admin center\\\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\\\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\\\n\nThis information is preliminary and may be subject to changes, corrections, and updates."
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
=== "Text"
|
|
69
|
+
|
|
70
|
+
```text
|
|
71
|
+
id title
|
|
72
|
+
-------- ----------------------------------------------------------
|
|
73
|
+
CR384241 Installation delays within the Power Platform admin center
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
=== "CSV"
|
|
77
|
+
|
|
78
|
+
```csv
|
|
79
|
+
id,title
|
|
80
|
+
CR384241,Installation delays within the Power Platform admin center
|
|
81
|
+
```
|
|
82
|
+
|
|
32
83
|
## More information
|
|
33
84
|
|
|
34
85
|
- List serviceAnnouncement issues: [https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-issues](https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-issues)
|
|
@@ -23,6 +23,70 @@ Get service update message with ID MC001337
|
|
|
23
23
|
m365 tenant serviceannouncement message get --id MC001337
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
## Response
|
|
27
|
+
|
|
28
|
+
=== "JSON"
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"startDateTime": "2021-07-08T00:37:37Z",
|
|
33
|
+
"endDateTime": "2022-12-09T07:00:00Z",
|
|
34
|
+
"lastModifiedDateTime": "2022-06-07T20:21:06.713Z",
|
|
35
|
+
"title": "(Updated) Microsoft Lists: Custom list templates",
|
|
36
|
+
"id": "MC267581",
|
|
37
|
+
"category": "planForChange",
|
|
38
|
+
"severity": "normal",
|
|
39
|
+
"tags": [
|
|
40
|
+
"Updated message",
|
|
41
|
+
"New feature",
|
|
42
|
+
"User impact",
|
|
43
|
+
"Admin impact"
|
|
44
|
+
],
|
|
45
|
+
"isMajorChange": false,
|
|
46
|
+
"actionRequiredByDateTime": null,
|
|
47
|
+
"services": [
|
|
48
|
+
"SharePoint Online"
|
|
49
|
+
],
|
|
50
|
+
"expiryDateTime": null,
|
|
51
|
+
"hasAttachments": false,
|
|
52
|
+
"viewPoint": null,
|
|
53
|
+
"details": [],
|
|
54
|
+
"body": {
|
|
55
|
+
"contentType": "html",
|
|
56
|
+
"content": "<p>Updated June 7, 2022: We have updated the rollout timeline below. Thank you for your patience.</p><p>This new feature will support the addition of custom list templates from your organization alongside the ready-made templates Microsoft provides to make it easy to get started tracking and managing information.</p> \\\n<p>[Key points]</p> \\\n<ul> \\\n<li>Microsoft 365 <a href=\"https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=70753\" target=\"_blank\">Roadmap ID: 70753</a></li> \\\n<li>Timing:<ul><li>Targeted release (entire org): Complete</li><li>Standard release: will roll out in mid-September (previously mid-May) and be complete by early November (previously mid-June)</li></ul></li> \\\n<li>Roll-out: tenant level </li> \\\n<li>Control type: user control / admin control</li> \\\n<li>Action: review, assess and educate</li></ul><p>[How this will affect your organization]</p><p>This feature will give organizations the ability to create their own custom list templates with custom formatting and schema. It will also empower organizations to create repeatable solutions within the same Microsoft Lists infrastructure (including list creation in SharePoint, Teams, and within the Lists app itself).</p><p>End-user impact:</p>\\\n<p>Visual updates to the list creation dialog and the addition of a<i> From your organization</i> tab when creating a new list. This new tab is where your custom list templates appear alongside the ready-made templates from Microsoft.</p>\\\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81n?ver=c93f\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"><br>\\\nAdmin impact:</p>\\\n<p>Custom list templates can only be uploaded by a SharePoint administrator for Microsoft 365 by using PowerShell cmdlets. For consistency, the process of defining and uploading custom list templates is like the custom site templates experience.</p><p>To define and upload custom list templates, admins will use the following site template PowerShell cmdlets:</p><ul><li>Use the <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/get-spositescriptfromlist?view=sharepoint-ps\" target=\"_blank\">Get-SPOSiteScriptFromList</a> cmdlet to extract the site script from any list</li><li>Run <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/add-spositescript?view=sharepoint-ps\" target=\"_blank\">Add-SPOSiteScript</a> and <b style=\"\">Add-SPOListDesign</b> to add the custom list template to your organization.</li><li>Scope who sees the template by using <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/grant-spositedesignrights?view=sharepoint-ps\" target=\"_blank\">Grant-SPOSiteDesignRights</a> (Optional).</li></ul><p>The visual updates for this feature will be seen by end-users in the updated user interface (UI) when creating a list.</p><p>The <i>From your organization</i> tab will be empty until your organization defines and publishes custom list templates.</p>\\\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81t?ver=70be\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"></p><p>[What you need to do to prepare]</p><p>You might want to notify your users about this new capability and update your training and documentation as appropriate.</p>\\\n<p>Learn more:</p><ul><li><a href=\"https://docs.microsoft.com/sharepoint/dev/declarative-customization/site-design-overview\" target=\"_blank\">PowerShell Cmdlets documentation for custom list templates</a></li><li> <a href=\"https://docs.microsoft.com/sharepoint/lists-custom-template\" target=\"_blank\">Creating custom list templates</a></li></ul>"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
=== "Text"
|
|
62
|
+
|
|
63
|
+
```text
|
|
64
|
+
actionRequiredByDateTime: null
|
|
65
|
+
body : {"contentType":"html","content":"<p>Updated June 7, 2022: We have updated the rollout timeline below. Thank you for your patience.</p><p>This new feature will support the addition of custom list templates from your organization alongside the ready-made templates Microsoft provides to make it easy to get started tracking and managing information.</p> \n<p>[Key points]</p> \n<ul> \n<li>Microsoft 365 <a href=\"https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=70753\" target=\"_blank\">Roadmap ID: 70753</a></li> \n<li>Timing:<ul><li>Targeted release (entire org): Complete</li><li>Standard release: will roll out in mid-September (previously mid-May) and be complete by early November (previously mid-June)</li></ul></li> \n<li>Roll-out: tenant level </li> \n<li>Control type: user control / admin control</li> \n<li>Action: review, assess and educate</li></ul><p>[How this will affect your organization]</p><p>This feature will give organizations the ability to create their own custom list templates with custom formatting and schema. It will also empower organizations to create repeatable solutions within the same Microsoft Lists infrastructure (including list creation in SharePoint, Teams, and within the Lists app itself).</p><p>End-user impact:</p>\n<p>Visual updates to the list creation dialog and the addition of a<i> From your organization</i> tab when creating a new list. This new tab is where your custom list templates appear alongside the ready-made templates from Microsoft.</p>\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81n?ver=c93f\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"><br>\nAdmin impact:</p>\n<p>Custom list templates can only be uploaded by a SharePoint administrator for Microsoft 365 by using PowerShell cmdlets. For consistency, the process of defining and uploading custom list templates is like the custom site templates experience.</p><p>To define and upload custom list templates, admins will use the following site template PowerShell cmdlets:</p><ul><li>Use the <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/get-spositescriptfromlist?view=sharepoint-ps\" target=\"_blank\">Get-SPOSiteScriptFromList</a> cmdlet to extract the site script from any list</li><li>Run <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/add-spositescript?view=sharepoint-ps\" target=\"_blank\">Add-SPOSiteScript</a> and <b style=\"\">Add-SPOListDesign</b> to add the custom list template to your organization.</li><li>Scope who sees the template by using <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/grant-spositedesignrights?view=sharepoint-ps\" target=\"_blank\">Grant-SPOSiteDesignRights</a> (Optional).</li></ul><p>The visual updates for this feature will be seen by end-users in the updated user interface (UI) when creating a list.</p><p>The <i>From your organization</i> tab will be empty until your organization defines and publishes custom list templates.</p>\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81t?ver=70be\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"></p><p>[What you need to do to prepare]</p><p>You might want to notify your users about this new capability and update your training and documentation as appropriate.</p>\n<p>Learn more:</p><ul><li><a href=\"https://docs.microsoft.com/sharepoint/dev/declarative-customization/site-design-overview\" target=\"_blank\">PowerShell Cmdlets documentation for custom list templates</a></li><li> <a href=\"https://docs.microsoft.com/sharepoint/lists-custom-template\" target=\"_blank\">Creating custom list templates</a></li></ul>"}
|
|
66
|
+
category : planForChange
|
|
67
|
+
details : []
|
|
68
|
+
endDateTime : 2022-12-09T07:00:00Z
|
|
69
|
+
expiryDateTime : null
|
|
70
|
+
hasAttachments : false
|
|
71
|
+
id : MC267581
|
|
72
|
+
isMajorChange : false
|
|
73
|
+
lastModifiedDateTime : 2022-06-07T20:21:06.713Z
|
|
74
|
+
services : ["SharePoint Online"]
|
|
75
|
+
severity : normal
|
|
76
|
+
startDateTime : 2021-07-08T00:37:37Z
|
|
77
|
+
tags : ["Updated message","New feature","User impact","Admin impact"]
|
|
78
|
+
title : (Updated) Microsoft Lists: Custom list templates
|
|
79
|
+
viewPoint : null
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
=== "CSV"
|
|
83
|
+
|
|
84
|
+
```csv
|
|
85
|
+
startDateTime,endDateTime,lastModifiedDateTime,title,id,category,severity,tags,isMajorChange,actionRequiredByDateTime,services,expiryDateTime,hasAttachments,viewPoint,details,body
|
|
86
|
+
2021-07-08T00:37:37Z,2022-12-09T07:00:00Z,2022-06-07T20:21:06.713Z,(Updated) Microsoft Lists: Custom list templates,MC267581,planForChange,normal,"[""Updated message"",""New feature"",""User impact"",""Admin impact""]",,,"[""SharePoint Online""]",,,,[],"{""contentType"":""html"",""content"":""<p>Updated June 7, 2022: We have updated the rollout timeline below. Thank you for your patience.</p><p>This new feature will support the addition of custom list templates from your organization alongside the ready-made templates Microsoft provides to make it easy to get started tracking and managing information.</p> \n<p>[Key points]</p> \n<ul> \n<li>Microsoft 365 <a href=\""https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=70753\"" target=\""_blank\"">Roadmap ID: 70753</a></li> \n<li>Timing:<ul><li>Targeted release (entire org): Complete</li><li>Standard release: will roll out in mid-September (previously mid-May) and be complete by early November (previously mid-June)</li></ul></li> \n<li>Roll-out: tenant level </li> \n<li>Control type: user control / admin control</li> \n<li>Action: review, assess and educate</li></ul><p>[How this will affect your organization]</p><p>This feature will give organizations the ability to create their own custom list templates with custom formatting and schema. It will also empower organizations to create repeatable solutions within the same Microsoft Lists infrastructure (including list creation in SharePoint, Teams, and within the Lists app itself).</p><p>End-user impact:</p>\n<p>Visual updates to the list creation dialog and the addition of a<i> From your organization</i> tab when creating a new list. This new tab is where your custom list templates appear alongside the ready-made templates from Microsoft.</p>\n<p><img src=\""https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81n?ver=c93f\"" alt=\""Your custom list templates along with Microsoft ready-made templates\"" width=\""550\""><br>\nAdmin impact:</p>\n<p>Custom list templates can only be uploaded by a SharePoint administrator for Microsoft 365 by using PowerShell cmdlets. For consistency, the process of defining and uploading custom list templates is like the custom site templates experience.</p><p>To define and upload custom list templates, admins will use the following site template PowerShell cmdlets:</p><ul><li>Use the <a href=\""https://docs.microsoft.com/powershell/module/sharepoint-online/get-spositescriptfromlist?view=sharepoint-ps\"" target=\""_blank\"">Get-SPOSiteScriptFromList</a> cmdlet to extract the site script from any list</li><li>Run <a href=\""https://docs.microsoft.com/powershell/module/sharepoint-online/add-spositescript?view=sharepoint-ps\"" target=\""_blank\"">Add-SPOSiteScript</a> and <b style=\""\"">Add-SPOListDesign</b> to add the custom list template to your organization.</li><li>Scope who sees the template by using <a href=\""https://docs.microsoft.com/powershell/module/sharepoint-online/grant-spositedesignrights?view=sharepoint-ps\"" target=\""_blank\"">Grant-SPOSiteDesignRights</a> (Optional).</li></ul><p>The visual updates for this feature will be seen by end-users in the updated user interface (UI) when creating a list.</p><p>The <i>From your organization</i> tab will be empty until your organization defines and publishes custom list templates.</p>\n<p><img src=\""https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81t?ver=70be\"" alt=\""Your custom list templates along with Microsoft ready-made templates\"" width=\""550\""></p><p>[What you need to do to prepare]</p><p>You might want to notify your users about this new capability and update your training and documentation as appropriate.</p>\n<p>Learn more:</p><ul><li><a href=\""https://docs.microsoft.com/sharepoint/dev/declarative-customization/site-design-overview\"" target=\""_blank\"">PowerShell Cmdlets documentation for custom list templates</a></li><li> <a href=\""https://docs.microsoft.com/sharepoint/lists-custom-template\"" target=\""_blank\"">Creating custom list templates</a></li></ul>""}"
|
|
87
|
+
```
|
|
88
|
+
|
|
26
89
|
## More information
|
|
27
90
|
|
|
28
91
|
- Microsoft Graph REST API reference: [https://docs.microsoft.com/en-us/graph/api/serviceupdatemessage-get](https://docs.microsoft.com/en-us/graph/api/serviceupdatemessage-get)
|
|
92
|
+
|
|
@@ -29,6 +29,58 @@ Get service update messages for Microsoft Teams
|
|
|
29
29
|
m365 tenant serviceannouncement message list --service "Microsoft Teams"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
## Response
|
|
33
|
+
|
|
34
|
+
=== "JSON"
|
|
35
|
+
|
|
36
|
+
```json
|
|
37
|
+
[
|
|
38
|
+
{
|
|
39
|
+
"startDateTime": "2021-07-08T00:37:37Z",
|
|
40
|
+
"endDateTime": "2022-12-09T07:00:00Z",
|
|
41
|
+
"lastModifiedDateTime": "2022-06-07T20:21:06.713Z",
|
|
42
|
+
"title": "(Updated) Microsoft Lists: Custom list templates",
|
|
43
|
+
"id": "MC267581",
|
|
44
|
+
"category": "planForChange",
|
|
45
|
+
"severity": "normal",
|
|
46
|
+
"tags": [
|
|
47
|
+
"Updated message",
|
|
48
|
+
"New feature",
|
|
49
|
+
"User impact",
|
|
50
|
+
"Admin impact"
|
|
51
|
+
],
|
|
52
|
+
"isMajorChange": false,
|
|
53
|
+
"actionRequiredByDateTime": null,
|
|
54
|
+
"services": [
|
|
55
|
+
"SharePoint Online"
|
|
56
|
+
],
|
|
57
|
+
"expiryDateTime": null,
|
|
58
|
+
"hasAttachments": false,
|
|
59
|
+
"viewPoint": null,
|
|
60
|
+
"details": [],
|
|
61
|
+
"body": {
|
|
62
|
+
"contentType": "html",
|
|
63
|
+
"content": "<p>Updated June 7, 2022: We have updated the rollout timeline below. Thank you for your patience.</p><p>This new feature will support the addition of custom list templates from your organization alongside the ready-made templates Microsoft provides to make it easy to get started tracking and managing information.</p> \\\n<p>[Key points]</p> \\\n<ul> \\\n<li>Microsoft 365 <a href=\"https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=70753\" target=\"_blank\">Roadmap ID: 70753</a></li> \\\n<li>Timing:<ul><li>Targeted release (entire org): Complete</li><li>Standard release: will roll out in mid-September (previously mid-May) and be complete by early November (previously mid-June)</li></ul></li> \\\n<li>Roll-out: tenant level </li> \\\n<li>Control type: user control / admin control</li> \\\n<li>Action: review, assess and educate</li></ul><p>[How this will affect your organization]</p><p>This feature will give organizations the ability to create their own custom list templates with custom formatting and schema. It will also empower organizations to create repeatable solutions within the same Microsoft Lists infrastructure (including list creation in SharePoint, Teams, and within the Lists app itself).</p><p>End-user impact:</p>\\\n<p>Visual updates to the list creation dialog and the addition of a<i> From your organization</i> tab when creating a new list. This new tab is where your custom list templates appear alongside the ready-made templates from Microsoft.</p>\\\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81n?ver=c93f\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"><br>\\\nAdmin impact:</p>\\\n<p>Custom list templates can only be uploaded by a SharePoint administrator for Microsoft 365 by using PowerShell cmdlets. For consistency, the process of defining and uploading custom list templates is like the custom site templates experience.</p><p>To define and upload custom list templates, admins will use the following site template PowerShell cmdlets:</p><ul><li>Use the <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/get-spositescriptfromlist?view=sharepoint-ps\" target=\"_blank\">Get-SPOSiteScriptFromList</a> cmdlet to extract the site script from any list</li><li>Run <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/add-spositescript?view=sharepoint-ps\" target=\"_blank\">Add-SPOSiteScript</a> and <b style=\"\">Add-SPOListDesign</b> to add the custom list template to your organization.</li><li>Scope who sees the template by using <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/grant-spositedesignrights?view=sharepoint-ps\" target=\"_blank\">Grant-SPOSiteDesignRights</a> (Optional).</li></ul><p>The visual updates for this feature will be seen by end-users in the updated user interface (UI) when creating a list.</p><p>The <i>From your organization</i> tab will be empty until your organization defines and publishes custom list templates.</p>\\\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81t?ver=70be\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"></p><p>[What you need to do to prepare]</p><p>You might want to notify your users about this new capability and update your training and documentation as appropriate.</p>\\\n<p>Learn more:</p><ul><li><a href=\"https://docs.microsoft.com/sharepoint/dev/declarative-customization/site-design-overview\" target=\"_blank\">PowerShell Cmdlets documentation for custom list templates</a></li><li> <a href=\"https://docs.microsoft.com/sharepoint/lists-custom-template\" target=\"_blank\">Creating custom list templates</a></li></ul>"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
=== "Text"
|
|
70
|
+
|
|
71
|
+
```text
|
|
72
|
+
id title
|
|
73
|
+
-------- ------------------------------------------------
|
|
74
|
+
MC267581 (Updated) Microsoft Lists: Custom list templates
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
=== "CSV"
|
|
78
|
+
|
|
79
|
+
```csv
|
|
80
|
+
id,title
|
|
81
|
+
MC267581,(Updated) Microsoft Lists: Custom list templates
|
|
82
|
+
```
|
|
83
|
+
|
|
32
84
|
## More information
|
|
33
85
|
|
|
34
86
|
- List serviceAnnouncement messages: [https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-messages](https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-messages)
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# todo list get
|
|
2
|
+
|
|
3
|
+
Returns a specific Microsoft To Do task list
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 todo list get [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-i, --id [id]`
|
|
14
|
+
: The id of the list. Specify either `id` or `name` but not both.
|
|
15
|
+
|
|
16
|
+
`-n, --name [name]`
|
|
17
|
+
: The name of the list. Specify either `id` or `name` but not both.
|
|
18
|
+
|
|
19
|
+
--8<-- "docs/cmd/_global.md"
|
|
20
|
+
|
|
21
|
+
## Examples
|
|
22
|
+
|
|
23
|
+
Get a specific Microsoft To Do task list based on id
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
m365 todo list get --id "AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA="
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Get a specific Microsoft To Do task list based on name
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 todo list get --name "Task list"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Response
|
|
36
|
+
|
|
37
|
+
=== "JSON"
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
{
|
|
41
|
+
"displayName": "Task list",
|
|
42
|
+
"isOwner": true,
|
|
43
|
+
"isShared": false,
|
|
44
|
+
"wellknownListName": "defaultList",
|
|
45
|
+
"id": "AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA="
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
=== "Text"
|
|
50
|
+
|
|
51
|
+
```text
|
|
52
|
+
displayName : Task list
|
|
53
|
+
id : AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
=== "CSV"
|
|
57
|
+
|
|
58
|
+
```csv
|
|
59
|
+
displayName,id
|
|
60
|
+
Task list,AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
|
|
61
|
+
```
|
|
@@ -11,26 +11,53 @@ m365 todo task add [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-t, --title <title>`
|
|
14
|
-
: The title of the task
|
|
14
|
+
: The title of the task.
|
|
15
15
|
|
|
16
16
|
`--listName [listName]`
|
|
17
|
-
: The name of the list in which to create the task. Specify either `listName` or `listId` but not both
|
|
17
|
+
: The name of the list in which to create the task. Specify either `listName` or `listId` but not both.
|
|
18
18
|
|
|
19
19
|
`--listId [listId]`
|
|
20
|
-
: The id of the list in which to create the task. Specify either `listName` or `listId` but not both
|
|
20
|
+
: The id of the list in which to create the task. Specify either `listName` or `listId` but not both.
|
|
21
|
+
|
|
22
|
+
`--bodyContent [bodyContent]`
|
|
23
|
+
: The body content of the task. In the UI this is called 'notes'.
|
|
24
|
+
|
|
25
|
+
`--bodyContentType [bodyContentType]`
|
|
26
|
+
: The type of the body content. Possible values are `text` and `html`. Default is `text`.
|
|
27
|
+
|
|
28
|
+
`--dueDateTime [dueDateTime]`
|
|
29
|
+
: The date when the task is due. This should be defined as a valid ISO 8601 string in the UTC time zone. Only date value is needed, time value is always ignored.
|
|
30
|
+
|
|
31
|
+
`--importance [importance]`
|
|
32
|
+
: The importance of the task. Possible values are: `low`, `normal`, `high`. Default is `normal`.
|
|
33
|
+
|
|
34
|
+
`--reminderDateTime [reminderDateTime]`
|
|
35
|
+
: The date and time for a reminder alert of the task to occur. This should be defined as a valid ISO 8601 string in the UTC time zone.
|
|
21
36
|
|
|
22
37
|
--8<-- "docs/cmd/_global.md"
|
|
23
38
|
|
|
24
39
|
## Examples
|
|
25
40
|
|
|
26
|
-
Add a task
|
|
41
|
+
Add a task to Microsoft To Do tasks list with with a specific name
|
|
27
42
|
|
|
28
43
|
```sh
|
|
29
44
|
m365 todo task add --title "New task" --listName "My task list"
|
|
30
45
|
```
|
|
31
46
|
|
|
32
|
-
Add a task
|
|
47
|
+
Add a task to a Microsoft To Do tasks list with a specific id
|
|
33
48
|
|
|
34
49
|
```sh
|
|
35
50
|
m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA=="
|
|
36
51
|
```
|
|
52
|
+
|
|
53
|
+
Create a new task with bodyContent and reminder and flag it as important
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
m365 todo task add --title "New task" --listName "My task list" --bodyContent "I should not forget this" --reminderDateTime 2023-01-01T12:00:00Z --importance high
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Create a new task with a specific due date
|
|
60
|
+
|
|
61
|
+
```sh
|
|
62
|
+
m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==" --dueDateTime 2023-01-01
|
|
63
|
+
```
|