1package changeanalysis
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// ChangeCategory enumerates the values for change category.
10type ChangeCategory string
11
12const (
13	// System ...
14	System ChangeCategory = "System"
15	// User ...
16	User ChangeCategory = "User"
17)
18
19// PossibleChangeCategoryValues returns an array of possible values for the ChangeCategory const type.
20func PossibleChangeCategoryValues() []ChangeCategory {
21	return []ChangeCategory{System, User}
22}
23
24// ChangeType enumerates the values for change type.
25type ChangeType string
26
27const (
28	// Add ...
29	Add ChangeType = "Add"
30	// Remove ...
31	Remove ChangeType = "Remove"
32	// Update ...
33	Update ChangeType = "Update"
34)
35
36// PossibleChangeTypeValues returns an array of possible values for the ChangeType const type.
37func PossibleChangeTypeValues() []ChangeType {
38	return []ChangeType{Add, Remove, Update}
39}
40
41// Level enumerates the values for level.
42type Level string
43
44const (
45	// Important ...
46	Important Level = "Important"
47	// Noisy ...
48	Noisy Level = "Noisy"
49	// Normal ...
50	Normal Level = "Normal"
51)
52
53// PossibleLevelValues returns an array of possible values for the Level const type.
54func PossibleLevelValues() []Level {
55	return []Level{Important, Noisy, Normal}
56}
57