This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 659
/
Copy pathCmdletHelpCategory.cs
62 lines (61 loc) · 1.9 KB
/
CmdletHelpCategory.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System.Runtime.Serialization;
namespace PnP.PowerShell.CmdletHelpAttributes
{
/// <summary>
/// The available categories for cmdlet help categorization
/// </summary>
public enum CmdletHelpCategory
{
[EnumMember(Value = "Tenant Administration")]
TenantAdmin = 0,
Apps = 1,
[EnumMember(Value = "Base Cmdlets")]
Base = 2,
Branding = 3,
[EnumMember(Value = "Content Types")]
ContentTypes = 4,
[EnumMember(Value = "Document Sets")]
DocumentSets = 5,
[EnumMember(Value = "Event Receivers")]
EventReceivers = 6,
Features = 7,
Fields = 8,
[EnumMember(Value = "Information Management")]
InformationManagement = 9,
Lists = 10,
[EnumMember(Value = "User and group management")]
Principals = 11,
Publishing = 12,
Search = 13,
Sites = 14,
Taxonomy = 15,
[EnumMember(Value = "User Profiles")]
UserProfiles = 16,
Utilities = 17,
Webs = 18,
[EnumMember(Value = "Web Parts")]
WebParts = 19,
Workflows = 20,
Provisioning = 21,
[EnumMember(Value = "Files and Folders")]
Files = 22,
[EnumMember(Value = "Microsoft Graph")]
Graph = 23,
[EnumMember(Value = "SharePoint Recycle Bin")]
RecycleBin = 24,
[EnumMember(Value = "SharePoint WebHooks")]
Webhooks = 25,
[EnumMember(Value = "Records Management")]
RecordsManagement = 26,
[EnumMember(Value = "Client-Side Pages")]
ClientSidePages = 27,
[EnumMember(Value = "Diagnostic utilities")]
Diagnostic = 28,
[EnumMember(Value = "Site Designs")]
SiteDesigns = 29,
[EnumMember(Value = "Management API")]
ManagementApi = 30,
[EnumMember(Value = "Microsoft Teams")]
Teams = 31
}
}