forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enums.go
349 lines (318 loc) · 14 KB
/
enums.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
package entitysearch
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// AnswerType enumerates the values for answer type.
type AnswerType string
const (
// AnswerTypeEntities ...
AnswerTypeEntities AnswerType = "Entities"
// AnswerTypePlaces ...
AnswerTypePlaces AnswerType = "Places"
)
// PossibleAnswerTypeValues returns an array of possible values for the AnswerType const type.
func PossibleAnswerTypeValues() []AnswerType {
return []AnswerType{AnswerTypeEntities, AnswerTypePlaces}
}
// EntityQueryScenario enumerates the values for entity query scenario.
type EntityQueryScenario string
const (
// Disambiguation ...
Disambiguation EntityQueryScenario = "Disambiguation"
// DominantEntity ...
DominantEntity EntityQueryScenario = "DominantEntity"
// DominantEntityWithDisambiguation ...
DominantEntityWithDisambiguation EntityQueryScenario = "DominantEntityWithDisambiguation"
// List ...
List EntityQueryScenario = "List"
// ListWithPivot ...
ListWithPivot EntityQueryScenario = "ListWithPivot"
)
// PossibleEntityQueryScenarioValues returns an array of possible values for the EntityQueryScenario const type.
func PossibleEntityQueryScenarioValues() []EntityQueryScenario {
return []EntityQueryScenario{Disambiguation, DominantEntity, DominantEntityWithDisambiguation, List, ListWithPivot}
}
// EntityScenario enumerates the values for entity scenario.
type EntityScenario string
const (
// EntityScenarioDisambiguationItem ...
EntityScenarioDisambiguationItem EntityScenario = "DisambiguationItem"
// EntityScenarioDominantEntity ...
EntityScenarioDominantEntity EntityScenario = "DominantEntity"
// EntityScenarioListItem ...
EntityScenarioListItem EntityScenario = "ListItem"
)
// PossibleEntityScenarioValues returns an array of possible values for the EntityScenario const type.
func PossibleEntityScenarioValues() []EntityScenario {
return []EntityScenario{EntityScenarioDisambiguationItem, EntityScenarioDominantEntity, EntityScenarioListItem}
}
// EntityType enumerates the values for entity type.
type EntityType string
const (
// EntityTypeActor ...
EntityTypeActor EntityType = "Actor"
// EntityTypeAnimal ...
EntityTypeAnimal EntityType = "Animal"
// EntityTypeArtist ...
EntityTypeArtist EntityType = "Artist"
// EntityTypeAttorney ...
EntityTypeAttorney EntityType = "Attorney"
// EntityTypeAttraction ...
EntityTypeAttraction EntityType = "Attraction"
// EntityTypeBook ...
EntityTypeBook EntityType = "Book"
// EntityTypeCar ...
EntityTypeCar EntityType = "Car"
// EntityTypeCity ...
EntityTypeCity EntityType = "City"
// EntityTypeCollegeOrUniversity ...
EntityTypeCollegeOrUniversity EntityType = "CollegeOrUniversity"
// EntityTypeComposition ...
EntityTypeComposition EntityType = "Composition"
// EntityTypeContinent ...
EntityTypeContinent EntityType = "Continent"
// EntityTypeCountry ...
EntityTypeCountry EntityType = "Country"
// EntityTypeDrug ...
EntityTypeDrug EntityType = "Drug"
// EntityTypeEvent ...
EntityTypeEvent EntityType = "Event"
// EntityTypeFood ...
EntityTypeFood EntityType = "Food"
// EntityTypeGeneric ...
EntityTypeGeneric EntityType = "Generic"
// EntityTypeHotel ...
EntityTypeHotel EntityType = "Hotel"
// EntityTypeHouse ...
EntityTypeHouse EntityType = "House"
// EntityTypeLocalBusiness ...
EntityTypeLocalBusiness EntityType = "LocalBusiness"
// EntityTypeLocality ...
EntityTypeLocality EntityType = "Locality"
// EntityTypeMedia ...
EntityTypeMedia EntityType = "Media"
// EntityTypeMinorRegion ...
EntityTypeMinorRegion EntityType = "MinorRegion"
// EntityTypeMovie ...
EntityTypeMovie EntityType = "Movie"
// EntityTypeMusicAlbum ...
EntityTypeMusicAlbum EntityType = "MusicAlbum"
// EntityTypeMusicGroup ...
EntityTypeMusicGroup EntityType = "MusicGroup"
// EntityTypeMusicRecording ...
EntityTypeMusicRecording EntityType = "MusicRecording"
// EntityTypeNeighborhood ...
EntityTypeNeighborhood EntityType = "Neighborhood"
// EntityTypeOrganization ...
EntityTypeOrganization EntityType = "Organization"
// EntityTypeOther ...
EntityTypeOther EntityType = "Other"
// EntityTypePerson ...
EntityTypePerson EntityType = "Person"
// EntityTypePlace ...
EntityTypePlace EntityType = "Place"
// EntityTypePointOfInterest ...
EntityTypePointOfInterest EntityType = "PointOfInterest"
// EntityTypePostalCode ...
EntityTypePostalCode EntityType = "PostalCode"
// EntityTypeProduct ...
EntityTypeProduct EntityType = "Product"
// EntityTypeRadioStation ...
EntityTypeRadioStation EntityType = "RadioStation"
// EntityTypeRegion ...
EntityTypeRegion EntityType = "Region"
// EntityTypeRestaurant ...
EntityTypeRestaurant EntityType = "Restaurant"
// EntityTypeSchool ...
EntityTypeSchool EntityType = "School"
// EntityTypeSpeciality ...
EntityTypeSpeciality EntityType = "Speciality"
// EntityTypeSportsTeam ...
EntityTypeSportsTeam EntityType = "SportsTeam"
// EntityTypeState ...
EntityTypeState EntityType = "State"
// EntityTypeStreetAddress ...
EntityTypeStreetAddress EntityType = "StreetAddress"
// EntityTypeSubRegion ...
EntityTypeSubRegion EntityType = "SubRegion"
// EntityTypeTelevisionSeason ...
EntityTypeTelevisionSeason EntityType = "TelevisionSeason"
// EntityTypeTelevisionShow ...
EntityTypeTelevisionShow EntityType = "TelevisionShow"
// EntityTypeTheaterPlay ...
EntityTypeTheaterPlay EntityType = "TheaterPlay"
// EntityTypeTouristAttraction ...
EntityTypeTouristAttraction EntityType = "TouristAttraction"
// EntityTypeTravel ...
EntityTypeTravel EntityType = "Travel"
// EntityTypeVideoGame ...
EntityTypeVideoGame EntityType = "VideoGame"
)
// PossibleEntityTypeValues returns an array of possible values for the EntityType const type.
func PossibleEntityTypeValues() []EntityType {
return []EntityType{EntityTypeActor, EntityTypeAnimal, EntityTypeArtist, EntityTypeAttorney, EntityTypeAttraction, EntityTypeBook, EntityTypeCar, EntityTypeCity, EntityTypeCollegeOrUniversity, EntityTypeComposition, EntityTypeContinent, EntityTypeCountry, EntityTypeDrug, EntityTypeEvent, EntityTypeFood, EntityTypeGeneric, EntityTypeHotel, EntityTypeHouse, EntityTypeLocalBusiness, EntityTypeLocality, EntityTypeMedia, EntityTypeMinorRegion, EntityTypeMovie, EntityTypeMusicAlbum, EntityTypeMusicGroup, EntityTypeMusicRecording, EntityTypeNeighborhood, EntityTypeOrganization, EntityTypeOther, EntityTypePerson, EntityTypePlace, EntityTypePointOfInterest, EntityTypePostalCode, EntityTypeProduct, EntityTypeRadioStation, EntityTypeRegion, EntityTypeRestaurant, EntityTypeSchool, EntityTypeSpeciality, EntityTypeSportsTeam, EntityTypeState, EntityTypeStreetAddress, EntityTypeSubRegion, EntityTypeTelevisionSeason, EntityTypeTelevisionShow, EntityTypeTheaterPlay, EntityTypeTouristAttraction, EntityTypeTravel, EntityTypeVideoGame}
}
// ErrorCode enumerates the values for error code.
type ErrorCode string
const (
// InsufficientAuthorization ...
InsufficientAuthorization ErrorCode = "InsufficientAuthorization"
// InvalidAuthorization ...
InvalidAuthorization ErrorCode = "InvalidAuthorization"
// InvalidRequest ...
InvalidRequest ErrorCode = "InvalidRequest"
// None ...
None ErrorCode = "None"
// RateLimitExceeded ...
RateLimitExceeded ErrorCode = "RateLimitExceeded"
// ServerError ...
ServerError ErrorCode = "ServerError"
)
// PossibleErrorCodeValues returns an array of possible values for the ErrorCode const type.
func PossibleErrorCodeValues() []ErrorCode {
return []ErrorCode{InsufficientAuthorization, InvalidAuthorization, InvalidRequest, None, RateLimitExceeded, ServerError}
}
// ErrorSubCode enumerates the values for error sub code.
type ErrorSubCode string
const (
// AuthorizationDisabled ...
AuthorizationDisabled ErrorSubCode = "AuthorizationDisabled"
// AuthorizationExpired ...
AuthorizationExpired ErrorSubCode = "AuthorizationExpired"
// AuthorizationMissing ...
AuthorizationMissing ErrorSubCode = "AuthorizationMissing"
// AuthorizationRedundancy ...
AuthorizationRedundancy ErrorSubCode = "AuthorizationRedundancy"
// Blocked ...
Blocked ErrorSubCode = "Blocked"
// HTTPNotAllowed ...
HTTPNotAllowed ErrorSubCode = "HttpNotAllowed"
// NotImplemented ...
NotImplemented ErrorSubCode = "NotImplemented"
// ParameterInvalidValue ...
ParameterInvalidValue ErrorSubCode = "ParameterInvalidValue"
// ParameterMissing ...
ParameterMissing ErrorSubCode = "ParameterMissing"
// ResourceError ...
ResourceError ErrorSubCode = "ResourceError"
// UnexpectedError ...
UnexpectedError ErrorSubCode = "UnexpectedError"
)
// PossibleErrorSubCodeValues returns an array of possible values for the ErrorSubCode const type.
func PossibleErrorSubCodeValues() []ErrorSubCode {
return []ErrorSubCode{AuthorizationDisabled, AuthorizationExpired, AuthorizationMissing, AuthorizationRedundancy, Blocked, HTTPNotAllowed, NotImplemented, ParameterInvalidValue, ParameterMissing, ResourceError, UnexpectedError}
}
// ResponseFormat enumerates the values for response format.
type ResponseFormat string
const (
// JSON ...
JSON ResponseFormat = "Json"
// JSONLd ...
JSONLd ResponseFormat = "JsonLd"
)
// PossibleResponseFormatValues returns an array of possible values for the ResponseFormat const type.
func PossibleResponseFormatValues() []ResponseFormat {
return []ResponseFormat{JSON, JSONLd}
}
// SafeSearch enumerates the values for safe search.
type SafeSearch string
const (
// Moderate ...
Moderate SafeSearch = "Moderate"
// Off ...
Off SafeSearch = "Off"
// Strict ...
Strict SafeSearch = "Strict"
)
// PossibleSafeSearchValues returns an array of possible values for the SafeSearch const type.
func PossibleSafeSearchValues() []SafeSearch {
return []SafeSearch{Moderate, Off, Strict}
}
// Type enumerates the values for type.
type Type string
const (
// TypeContractualRulesAttribution ...
TypeContractualRulesAttribution Type = "ContractualRules/Attribution"
// TypeContractualRulesContractualRule ...
TypeContractualRulesContractualRule Type = "ContractualRules/ContractualRule"
// TypeContractualRulesLicenseAttribution ...
TypeContractualRulesLicenseAttribution Type = "ContractualRules/LicenseAttribution"
// TypeContractualRulesLinkAttribution ...
TypeContractualRulesLinkAttribution Type = "ContractualRules/LinkAttribution"
// TypeContractualRulesMediaAttribution ...
TypeContractualRulesMediaAttribution Type = "ContractualRules/MediaAttribution"
// TypeContractualRulesTextAttribution ...
TypeContractualRulesTextAttribution Type = "ContractualRules/TextAttribution"
)
// PossibleTypeValues returns an array of possible values for the Type const type.
func PossibleTypeValues() []Type {
return []Type{TypeContractualRulesAttribution, TypeContractualRulesContractualRule, TypeContractualRulesLicenseAttribution, TypeContractualRulesLinkAttribution, TypeContractualRulesMediaAttribution, TypeContractualRulesTextAttribution}
}
// TypeBasicResponseBase enumerates the values for type basic response base.
type TypeBasicResponseBase string
const (
// TypeAirport ...
TypeAirport TypeBasicResponseBase = "Airport"
// TypeAnswer ...
TypeAnswer TypeBasicResponseBase = "Answer"
// TypeCivicStructure ...
TypeCivicStructure TypeBasicResponseBase = "CivicStructure"
// TypeCreativeWork ...
TypeCreativeWork TypeBasicResponseBase = "CreativeWork"
// TypeEntertainmentBusiness ...
TypeEntertainmentBusiness TypeBasicResponseBase = "EntertainmentBusiness"
// TypeEntities ...
TypeEntities TypeBasicResponseBase = "Entities"
// TypeErrorResponse ...
TypeErrorResponse TypeBasicResponseBase = "ErrorResponse"
// TypeFoodEstablishment ...
TypeFoodEstablishment TypeBasicResponseBase = "FoodEstablishment"
// TypeHotel ...
TypeHotel TypeBasicResponseBase = "Hotel"
// TypeIdentifiable ...
TypeIdentifiable TypeBasicResponseBase = "Identifiable"
// TypeImageObject ...
TypeImageObject TypeBasicResponseBase = "ImageObject"
// TypeIntangible ...
TypeIntangible TypeBasicResponseBase = "Intangible"
// TypeLicense ...
TypeLicense TypeBasicResponseBase = "License"
// TypeLocalBusiness ...
TypeLocalBusiness TypeBasicResponseBase = "LocalBusiness"
// TypeLodgingBusiness ...
TypeLodgingBusiness TypeBasicResponseBase = "LodgingBusiness"
// TypeMediaObject ...
TypeMediaObject TypeBasicResponseBase = "MediaObject"
// TypeMovieTheater ...
TypeMovieTheater TypeBasicResponseBase = "MovieTheater"
// TypeOrganization ...
TypeOrganization TypeBasicResponseBase = "Organization"
// TypePlace ...
TypePlace TypeBasicResponseBase = "Place"
// TypePlaces ...
TypePlaces TypeBasicResponseBase = "Places"
// TypePostalAddress ...
TypePostalAddress TypeBasicResponseBase = "PostalAddress"
// TypeResponse ...
TypeResponse TypeBasicResponseBase = "Response"
// TypeResponseBase ...
TypeResponseBase TypeBasicResponseBase = "ResponseBase"
// TypeRestaurant ...
TypeRestaurant TypeBasicResponseBase = "Restaurant"
// TypeSearchResponse ...
TypeSearchResponse TypeBasicResponseBase = "SearchResponse"
// TypeSearchResultsAnswer ...
TypeSearchResultsAnswer TypeBasicResponseBase = "SearchResultsAnswer"
// TypeStructuredValue ...
TypeStructuredValue TypeBasicResponseBase = "StructuredValue"
// TypeThing ...
TypeThing TypeBasicResponseBase = "Thing"
// TypeTouristAttraction ...
TypeTouristAttraction TypeBasicResponseBase = "TouristAttraction"
)
// PossibleTypeBasicResponseBaseValues returns an array of possible values for the TypeBasicResponseBase const type.
func PossibleTypeBasicResponseBaseValues() []TypeBasicResponseBase {
return []TypeBasicResponseBase{TypeAirport, TypeAnswer, TypeCivicStructure, TypeCreativeWork, TypeEntertainmentBusiness, TypeEntities, TypeErrorResponse, TypeFoodEstablishment, TypeHotel, TypeIdentifiable, TypeImageObject, TypeIntangible, TypeLicense, TypeLocalBusiness, TypeLodgingBusiness, TypeMediaObject, TypeMovieTheater, TypeOrganization, TypePlace, TypePlaces, TypePostalAddress, TypeResponse, TypeResponseBase, TypeRestaurant, TypeSearchResponse, TypeSearchResultsAnswer, TypeStructuredValue, TypeThing, TypeTouristAttraction}
}