1package enterpriseknowledgegraphservice
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// ProvisioningState enumerates the values for provisioning state.
10type ProvisioningState string
11
12const (
13	// Creating ...
14	Creating ProvisioningState = "Creating"
15	// Deleting ...
16	Deleting ProvisioningState = "Deleting"
17	// Failed ...
18	Failed ProvisioningState = "Failed"
19	// Succeeded ...
20	Succeeded ProvisioningState = "Succeeded"
21)
22
23// PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type.
24func PossibleProvisioningStateValues() []ProvisioningState {
25	return []ProvisioningState{Creating, Deleting, Failed, Succeeded}
26}
27
28// SkuName enumerates the values for sku name.
29type SkuName string
30
31const (
32	// F0 ...
33	F0 SkuName = "F0"
34	// S1 ...
35	S1 SkuName = "S1"
36)
37
38// PossibleSkuNameValues returns an array of possible values for the SkuName const type.
39func PossibleSkuNameValues() []SkuName {
40	return []SkuName{F0, S1}
41}
42