1package aad
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// Category enumerates the values for category.
10type Category string
11
12const (
13	// AuditLogs ...
14	AuditLogs Category = "AuditLogs"
15	// SignInLogs ...
16	SignInLogs Category = "SignInLogs"
17)
18
19// PossibleCategoryValues returns an array of possible values for the Category const type.
20func PossibleCategoryValues() []Category {
21	return []Category{AuditLogs, SignInLogs}
22}
23
24// CategoryType enumerates the values for category type.
25type CategoryType string
26
27const (
28	// Logs ...
29	Logs CategoryType = "Logs"
30)
31
32// PossibleCategoryTypeValues returns an array of possible values for the CategoryType const type.
33func PossibleCategoryTypeValues() []CategoryType {
34	return []CategoryType{Logs}
35}
36