1package managedservices
2
3// Copyright (c) Microsoft and contributors.  All rights reserved.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13//
14// See the License for the specific language governing permissions and
15// limitations under the License.
16//
17// Code generated by Microsoft (R) AutoRest Code Generator.
18// Changes may cause incorrect behavior and will be lost if the code is regenerated.
19
20// ProvisioningState enumerates the values for provisioning state.
21type ProvisioningState string
22
23const (
24	// Accepted ...
25	Accepted ProvisioningState = "Accepted"
26	// Canceled ...
27	Canceled ProvisioningState = "Canceled"
28	// Created ...
29	Created ProvisioningState = "Created"
30	// Creating ...
31	Creating ProvisioningState = "Creating"
32	// Deleted ...
33	Deleted ProvisioningState = "Deleted"
34	// Deleting ...
35	Deleting ProvisioningState = "Deleting"
36	// Failed ...
37	Failed ProvisioningState = "Failed"
38	// NotSpecified ...
39	NotSpecified ProvisioningState = "NotSpecified"
40	// Ready ...
41	Ready ProvisioningState = "Ready"
42	// Running ...
43	Running ProvisioningState = "Running"
44	// Succeeded ...
45	Succeeded ProvisioningState = "Succeeded"
46	// Updating ...
47	Updating ProvisioningState = "Updating"
48)
49
50// PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type.
51func PossibleProvisioningStateValues() []ProvisioningState {
52	return []ProvisioningState{Accepted, Canceled, Created, Creating, Deleted, Deleting, Failed, NotSpecified, Ready, Running, Succeeded, Updating}
53}
54