1package datacatalog
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// SkuType enumerates the values for sku type.
10type SkuType string
11
12const (
13	// Free ...
14	Free SkuType = "Free"
15	// Standard ...
16	Standard SkuType = "Standard"
17)
18
19// PossibleSkuTypeValues returns an array of possible values for the SkuType const type.
20func PossibleSkuTypeValues() []SkuType {
21	return []SkuType{Free, Standard}
22}
23