1 package experimentation 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. 10 type ProvisioningState string 11 12 const ( 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 // Updating ... 22 Updating ProvisioningState = "Updating" 23 ) 24 25 // PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type. 26 func PossibleProvisioningStateValues() []ProvisioningState { 27 return []ProvisioningState{Creating, Deleting, Failed, Succeeded, Updating} 28 } 29