-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f0633f
commit 4285b90
Showing
9 changed files
with
1,114 additions
and
882 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/lib/PnP.Framework/Utilities/Context/ManagedIdentityType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
namespace PnP.Framework.Utilities.Context | ||
{ | ||
/// <summary> | ||
/// Types of Managed Identity supported within the Framework | ||
/// </summary> | ||
public enum ManagedIdentityType | ||
{ | ||
/// <summary> | ||
/// System Assigned Managed Identity | ||
/// </summary> | ||
SystemAssigned = 0, | ||
|
||
/// <summary> | ||
/// User Assigned Managed Identity, referenced by its client Id | ||
/// </summary> | ||
UserAssignedByClientId = 1, | ||
|
||
/// <summary> | ||
/// User Assigned Managed Identity, referenced by its object Id | ||
/// </summary> | ||
UserAssignedByObjectId = 2, | ||
|
||
/// <summary> | ||
/// User Assigned Managed Identity, refernced by its resource Id | ||
/// </summary> | ||
UserAssignedByResourceId = 3 | ||
} | ||
} |