Skip to content

Commit e99ebe5

Browse files
committed
Fileservices updates
1 parent b9c640d commit e99ebe5

5 files changed

Lines changed: 122 additions & 8 deletions

File tree

api-reference/beta/resources/list.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Represents a list in a [site](site.md). This resource contains the top level pro
5050
| displayName | String | The displayable title of the list. |
5151
| eTag | String | ETag for the item. Inherited from [baseItem](baseitem.md). |
5252
| id | String | The unique identifier of the item. Read-only. Inherited from [baseItem](baseitem.md). |
53+
| itemCount | Int32 | The number of items in the list. Read-only. |
5354
| lastModifiedBy | [identitySet](identityset.md) | Identity of the last modifier of this item. Read-only. Inherited from [baseItem](baseitem.md). |
5455
| lastModifiedDateTime | DateTimeOffset | The date and time when the item was last modified. Read-only. Inherited from [baseItem](baseitem.md). |
5556
| list | [listInfo](listinfo.md) | Contains more details about the list. |
@@ -92,6 +93,7 @@ The following JSON representation shows the resource type.
9293
"lastModifiedBy": { "@odata.type": "microsoft.graph.identitySet" },
9394
"lastModifiedDateTime": "String (timestamp)",
9495
"list": { "@odata.type": "microsoft.graph.listInfo" },
96+
"itemCount": 1024,
9597
"name": "String",
9698
"parentReference": { "@odata.type": "microsoft.graph.itemReference" },
9799
"sharepointIds": { "@odata.type": "microsoft.graph.sharepointIds" },

api-reference/beta/resources/sharepointgroup.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Represents a cohort of users or Microsoft 365 groups that are localized to a Sha
3333
|:---|:---|:---|
3434
|description|String|The user-visible description of the **sharePointGroup**. Read-write.|
3535
|id|String|The unique stable identifier of the **sharePointGroup**. This ID is unique only within the context of a single SharePoint Embedded container or SharePoint site. Read-only.|
36+
|principalId|String|The principal ID of the SharePoint group in the tenant. Read-only.|
3637
|title|String|The user-visible title of the **sharePointGroup**. Read-write.|
3738

3839
## Relationships
@@ -54,6 +55,7 @@ The following JSON representation shows the resource type.
5455
"@odata.type": "#microsoft.graph.sharePointGroup",
5556
"description": "String",
5657
"id": "String (identifier)",
58+
"principalId": "String",
5759
"title": "String"
5860
}
5961
```
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
author: spgraph-docs-team
3+
description: "Represents the identity of a SharePoint group."
4+
title: "sharePointGroupIdentity resource type"
5+
ms.localizationpriority: medium
6+
ms.subservice: "sharepoint"
7+
doc_type: resourcePageType
8+
ms.date: 03/23/2026
9+
---
10+
11+
# sharePointGroupIdentity resource type
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Represents the identity of a SharePoint group. Extends the [identity](identity.md) type with SharePoint-specific properties.
18+
19+
Inherits from [identity](identity.md).
20+
21+
## Properties
22+
23+
| Property | Type | Description |
24+
|:-------------|:-------|:-------------------------------------------------------------------------------------------------|
25+
| displayName | String | The display name of the SharePoint group. Inherited from [identity](identity.md). Read-only. |
26+
| id | String | The unique identifier of the SharePoint group. Inherited from [identity](identity.md). Read-only. |
27+
| principalId | String | The principal ID of the SharePoint group in the tenant. Read-only. |
28+
| title | String | The title of the SharePoint group. Read-only. |
29+
30+
## Relationships
31+
32+
None.
33+
34+
## JSON representation
35+
36+
The following JSON representation shows the resource type.
37+
38+
<!-- {
39+
"blockType": "resource",
40+
"optionalProperties": [],
41+
"@odata.type": "microsoft.graph.sharePointGroupIdentity"
42+
}-->
43+
44+
```json
45+
{
46+
"@odata.type": "#microsoft.graph.sharePointGroupIdentity",
47+
"displayName": "String",
48+
"id": "String",
49+
"principalId": "String",
50+
"title": "String"
51+
}
52+
```
53+
54+
## Related content
55+
56+
- [sharePointIdentitySet resource type](sharepointidentityset.md)
57+
- [identity resource type](identity.md)
58+
- [sharePointGroup resource type](sharepointgroup.md)
59+
60+
<!--
61+
{
62+
"type": "#page.annotation",
63+
"description": "The sharePointGroupIdentity resource represents the identity of a SharePoint group.",
64+
"keywords": "identity,sharepoint,group",
65+
"section": "documentation",
66+
"tocPath": "Resources/SharePointGroupIdentity",
67+
"suppressions": []
68+
}
69+
-->

api-reference/beta/resources/sharepointidentityset.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@ For usage information, see [driveItem][].
1919

2020
## Properties
2121

22-
| Property | Type | Description |
23-
|:------------|:-----------------------|:----------------------------------------------------------- |
24-
| application | [identity][] | The application associated with this action. Optional. |
25-
| device | [identity][] | The device associated with this action. Optional. |
26-
| group | [identity][] | The group associated with this action. Optional. |
27-
| user | [identity][] | The user associated with this action. Optional. |
28-
| siteUser | [sharePointIdentity][] | The SharePoint user associated with this action. Optional. |
29-
| siteGroup | [sharePointIdentity][] | The SharePoint group associated with this action. Optional. |
22+
| Property | Type | Description |
23+
|:---|:---|:---|
24+
| application | [identity][] | The application associated with this action. Optional. |
25+
| device | [identity][] | The device associated with this action. Optional. |
26+
| group | [identity][] | The group associated with this action. Optional. |
27+
| sharePointGroup | [sharePointGroupIdentity][] | The SharePoint group associated with this action. Optional. |
28+
| siteGroup | [sharePointIdentity][] | The SharePoint group associated with this action. Optional. |
29+
| siteUser | [sharePointIdentity][] | The SharePoint user associated with this action. Optional. |
30+
| user | [identity][] | The user associated with this action. Optional. |
3031

3132
## Relationships
33+
3234
None.
3335

3436
## JSON representation
@@ -47,13 +49,15 @@ The following JSON representation shows the resource type.
4749
"user": {"@odata.type": "microsoft.graph.identity"},
4850

4951
"group": {"@odata.type": "microsoft.graph.identity"},
52+
"sharePointGroup": {"@odata.type": "microsoft.graph.sharePointGroupIdentity"},
5053
"siteUser": {"@odata.type": "microsoft.graph.sharePointIdentity"},
5154
"siteGroup":{"@odata.type": "microsoft.graph.sharePointIdentity"}
5255
}
5356
```
5457

5558
[driveItem]: driveitem.md
5659
[identity]: identity.md
60+
[sharePointGroupIdentity]: sharepointgroupidentity.md
5761
[sharePointIdentity]: sharePointidentity.md
5862

5963
<!-- {

ervices-updates

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS
3+
4+
Commands marked with * may be preceded by a number, _N.
5+
Notes in parentheses indicate the behavior if _N is given.
6+
A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K.
7+
8+
h H Display this help.
9+
q :q Q :Q ZZ Exit.
10+
---------------------------------------------------------------------------
11+
12+
MMOOVVIINNGG
13+
14+
e ^E j ^N CR * Forward one line (or _N lines).
15+
y ^Y k ^K ^P * Backward one line (or _N lines).
16+
ESC-j * Forward one file line (or _N file lines).
17+
ESC-k * Backward one file line (or _N file lines).
18+
f ^F ^V SPACE * Forward one window (or _N lines).
19+
b ^B ESC-v * Backward one window (or _N lines).
20+
z * Forward one window (and set window to _N).
21+
w * Backward one window (and set window to _N).
22+
ESC-SPACE * Forward one window, but don't stop at end-of-file.
23+
ESC-b * Backward one window, but don't stop at beginning-of-file.
24+
d ^D * Forward one half-window (and set half-window to _N).
25+
u ^U * Backward one half-window (and set half-window to _N).
26+
ESC-) RightArrow * Right one half screen width (or _N positions).
27+
ESC-( LeftArrow * Left one half screen width (or _N positions).
28+
ESC-} ^RightArrow Right to last column displayed.
29+
ESC-{ ^LeftArrow Left to first column.
30+
F Forward forever; like "tail -f".
31+
ESC-F Like F but stop when search pattern is found.
32+
r ^R ^L Repaint screen.
33+
R Repaint screen, discarding buffered input.
34+
---------------------------------------------------
35+
Default "window" is the screen height.
36+
Default "half-window" is half of the screen height.
37+
---------------------------------------------------------------------------

0 commit comments

Comments
 (0)