1 package subscriptions 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 // ResourceNameStatus enumerates the values for resource name status. 10 type ResourceNameStatus string 11 12 const ( 13 // Allowed ... 14 Allowed ResourceNameStatus = "Allowed" 15 // Reserved ... 16 Reserved ResourceNameStatus = "Reserved" 17 ) 18 19 // PossibleResourceNameStatusValues returns an array of possible values for the ResourceNameStatus const type. 20 func PossibleResourceNameStatusValues() []ResourceNameStatus { 21 return []ResourceNameStatus{Allowed, Reserved} 22 } 23