@pnp/cli-microsoft365 11.9.0-beta.93bd508 → 11.9.0-beta.f8dc984
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/.devproxy/api-specs/sharepoint.yaml +84 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/spo/commands/list/list-sensitivitylabel-remove.js +83 -0
- package/dist/m365/spo/commands.js +1 -0
- package/docs/docs/cmd/spo/list/list-sensitivitylabel-remove.mdx +77 -0
- package/package.json +1 -1
|
@@ -476,6 +476,90 @@ paths:
|
|
|
476
476
|
responses:
|
|
477
477
|
200:
|
|
478
478
|
description: OK
|
|
479
|
+
/_api/web/lists(guid'{listId}'):
|
|
480
|
+
patch:
|
|
481
|
+
parameters:
|
|
482
|
+
- name: listId
|
|
483
|
+
in: path
|
|
484
|
+
required: true
|
|
485
|
+
description: list GUID
|
|
486
|
+
schema:
|
|
487
|
+
type: string
|
|
488
|
+
example: "b4cfa0d9-b3d7-49ae-a0f0-f14ffdd005f7"
|
|
489
|
+
requestBody:
|
|
490
|
+
required: true
|
|
491
|
+
content:
|
|
492
|
+
application/json:
|
|
493
|
+
example:
|
|
494
|
+
DefaultSensitivityLabelForLibrary: ""
|
|
495
|
+
security:
|
|
496
|
+
- delegated:
|
|
497
|
+
- AllSites.Write
|
|
498
|
+
- AllSites.Manage
|
|
499
|
+
- AllSites.FullControl
|
|
500
|
+
- application:
|
|
501
|
+
- Sites.ReadWrite.All
|
|
502
|
+
- Sites.Manage.All
|
|
503
|
+
- Sites.FullControl.All
|
|
504
|
+
responses:
|
|
505
|
+
204:
|
|
506
|
+
description: No Content
|
|
507
|
+
/_api/web/lists/getByTitle('{listTitle}'):
|
|
508
|
+
patch:
|
|
509
|
+
parameters:
|
|
510
|
+
- name: listTitle
|
|
511
|
+
in: path
|
|
512
|
+
required: true
|
|
513
|
+
description: list title
|
|
514
|
+
schema:
|
|
515
|
+
type: string
|
|
516
|
+
example: "Shared Documents"
|
|
517
|
+
requestBody:
|
|
518
|
+
required: true
|
|
519
|
+
content:
|
|
520
|
+
application/json:
|
|
521
|
+
example:
|
|
522
|
+
DefaultSensitivityLabelForLibrary: ""
|
|
523
|
+
security:
|
|
524
|
+
- delegated:
|
|
525
|
+
- AllSites.Write
|
|
526
|
+
- AllSites.Manage
|
|
527
|
+
- AllSites.FullControl
|
|
528
|
+
- application:
|
|
529
|
+
- Sites.ReadWrite.All
|
|
530
|
+
- Sites.Manage.All
|
|
531
|
+
- Sites.FullControl.All
|
|
532
|
+
responses:
|
|
533
|
+
204:
|
|
534
|
+
description: No Content
|
|
535
|
+
/_api/web/GetList('{listServerRelativeUrl}'):
|
|
536
|
+
patch:
|
|
537
|
+
parameters:
|
|
538
|
+
- name: listServerRelativeUrl
|
|
539
|
+
in: path
|
|
540
|
+
required: true
|
|
541
|
+
description: Server-relative URL of the list
|
|
542
|
+
schema:
|
|
543
|
+
type: string
|
|
544
|
+
example: "/Shared Documents"
|
|
545
|
+
requestBody:
|
|
546
|
+
required: true
|
|
547
|
+
content:
|
|
548
|
+
application/json:
|
|
549
|
+
example:
|
|
550
|
+
DefaultSensitivityLabelForLibrary: ""
|
|
551
|
+
security:
|
|
552
|
+
- delegated:
|
|
553
|
+
- AllSites.Write
|
|
554
|
+
- AllSites.Manage
|
|
555
|
+
- AllSites.FullControl
|
|
556
|
+
- application:
|
|
557
|
+
- Sites.ReadWrite.All
|
|
558
|
+
- Sites.Manage.All
|
|
559
|
+
- Sites.FullControl.All
|
|
560
|
+
responses:
|
|
561
|
+
204:
|
|
562
|
+
description: No Content
|
|
479
563
|
/_api/web/webs:
|
|
480
564
|
get:
|
|
481
565
|
security:
|