1package operationalinsights
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// PurgeState enumerates the values for purge state.
10type PurgeState string
11
12const (
13	// Completed ...
14	Completed PurgeState = "completed"
15	// Pending ...
16	Pending PurgeState = "pending"
17)
18
19// PossiblePurgeStateValues returns an array of possible values for the PurgeState const type.
20func PossiblePurgeStateValues() []PurgeState {
21	return []PurgeState{Completed, Pending}
22}
23
24// SearchSortEnum enumerates the values for search sort enum.
25type SearchSortEnum string
26
27const (
28	// Asc ...
29	Asc SearchSortEnum = "asc"
30	// Desc ...
31	Desc SearchSortEnum = "desc"
32)
33
34// PossibleSearchSortEnumValues returns an array of possible values for the SearchSortEnum const type.
35func PossibleSearchSortEnumValues() []SearchSortEnum {
36	return []SearchSortEnum{Asc, Desc}
37}
38
39// SkuNameEnum enumerates the values for sku name enum.
40type SkuNameEnum string
41
42const (
43	// CapacityReservation ...
44	CapacityReservation SkuNameEnum = "CapacityReservation"
45	// Free ...
46	Free SkuNameEnum = "Free"
47	// PerGB2018 ...
48	PerGB2018 SkuNameEnum = "PerGB2018"
49	// PerNode ...
50	PerNode SkuNameEnum = "PerNode"
51	// Premium ...
52	Premium SkuNameEnum = "Premium"
53	// Standalone ...
54	Standalone SkuNameEnum = "Standalone"
55	// Standard ...
56	Standard SkuNameEnum = "Standard"
57)
58
59// PossibleSkuNameEnumValues returns an array of possible values for the SkuNameEnum const type.
60func PossibleSkuNameEnumValues() []SkuNameEnum {
61	return []SkuNameEnum{CapacityReservation, Free, PerGB2018, PerNode, Premium, Standalone, Standard}
62}
63
64// StorageInsightState enumerates the values for storage insight state.
65type StorageInsightState string
66
67const (
68	// ERROR ...
69	ERROR StorageInsightState = "ERROR"
70	// OK ...
71	OK StorageInsightState = "OK"
72)
73
74// PossibleStorageInsightStateValues returns an array of possible values for the StorageInsightState const type.
75func PossibleStorageInsightStateValues() []StorageInsightState {
76	return []StorageInsightState{ERROR, OK}
77}
78