...

Source file src/github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2016-09-01/links/enums.go

Documentation: github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2016-09-01/links

     1  package links
     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  // Filter enumerates the values for filter.
    10  type Filter string
    11  
    12  const (
    13  	// AtScope ...
    14  	AtScope Filter = "atScope()"
    15  )
    16  
    17  // PossibleFilterValues returns an array of possible values for the Filter const type.
    18  func PossibleFilterValues() []Filter {
    19  	return []Filter{AtScope}
    20  }
    21  

View as plain text