1package policy
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// Type enumerates the values for type.
10type Type string
11
12const (
13	// BuiltIn ...
14	BuiltIn Type = "BuiltIn"
15	// Custom ...
16	Custom Type = "Custom"
17	// NotSpecified ...
18	NotSpecified Type = "NotSpecified"
19)
20
21// PossibleTypeValues returns an array of possible values for the Type const type.
22func PossibleTypeValues() []Type {
23	return []Type{BuiltIn, Custom, NotSpecified}
24}
25