Skip to content

Commit b5a2e36

Browse files
fix(enums): add missing GraphErrorCode values (#1078)
Co-authored-by: Gavin Barron <gavin.barron@gmail.com>
1 parent e1646ee commit b5a2e36

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Microsoft.Graph/Enums/GraphErrorCode.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ public enum GraphErrorCode
4848
InvalidRequest,
4949
/// Invalid start index.
5050
InvalidStartIndex,
51+
/// The image could not be found.
52+
ImageNotFound,
5153
/// The resource could not be found.
5254
ItemNotFound,
5355
/// Lock token does not match existing lock.
@@ -78,6 +80,8 @@ public enum GraphErrorCode
7880
NameAlreadyExists,
7981
/// The action is not allowed by the system.
8082
NotAllowed,
83+
/// The requested item is not found.
84+
NotFound,
8185
/// The request is not supported by the system.
8286
NotSupported,
8387
/// Parameter Exceeds Maximum Length.
@@ -90,6 +94,8 @@ public enum GraphErrorCode
9094
PathTooDeep,
9195
/// Property not updateable.
9296
PropertyNotUpdateable,
97+
/// The requested resource is not found.
98+
Request_ResourceNotFound,
9399
/// The resource being updated has changed since the caller last read it, usually an eTag mismatch.
94100
ResourceModified,
95101
/// Resync required. Replace any local items with the server's version (including deletes)

0 commit comments

Comments
 (0)