Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
231 changes: 231 additions & 0 deletions profiles/preview/cognitiveservices/customimagesearch/models.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,231 @@
// +build go1.9

// Copyright 2018 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// This code was auto-generated by:
// github.com/Azure/azure-sdk-for-go/tools/profileBuilder

package customimagesearch

import original "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/customimagesearch"

const (
DefaultBaseURI = original.DefaultBaseURI
)

type BaseClient = original.BaseClient
type CustomInstanceClient = original.CustomInstanceClient
type ErrorCode = original.ErrorCode

const (
InsufficientAuthorization ErrorCode = original.InsufficientAuthorization
InvalidAuthorization ErrorCode = original.InvalidAuthorization
InvalidRequest ErrorCode = original.InvalidRequest
None ErrorCode = original.None
RateLimitExceeded ErrorCode = original.RateLimitExceeded
ServerError ErrorCode = original.ServerError
)

type ErrorSubCode = original.ErrorSubCode

const (
AuthorizationDisabled ErrorSubCode = original.AuthorizationDisabled
AuthorizationExpired ErrorSubCode = original.AuthorizationExpired
AuthorizationMissing ErrorSubCode = original.AuthorizationMissing
AuthorizationRedundancy ErrorSubCode = original.AuthorizationRedundancy
Blocked ErrorSubCode = original.Blocked
HTTPNotAllowed ErrorSubCode = original.HTTPNotAllowed
NotImplemented ErrorSubCode = original.NotImplemented
ParameterInvalidValue ErrorSubCode = original.ParameterInvalidValue
ParameterMissing ErrorSubCode = original.ParameterMissing
ResourceError ErrorSubCode = original.ResourceError
UnexpectedError ErrorSubCode = original.UnexpectedError
)

type Freshness = original.Freshness

const (
Day Freshness = original.Day
Month Freshness = original.Month
Week Freshness = original.Week
)

type ImageAspect = original.ImageAspect

const (
All ImageAspect = original.All
Square ImageAspect = original.Square
Tall ImageAspect = original.Tall
Wide ImageAspect = original.Wide
)

type ImageColor = original.ImageColor

const (
Black ImageColor = original.Black
Blue ImageColor = original.Blue
Brown ImageColor = original.Brown
ColorOnly ImageColor = original.ColorOnly
Gray ImageColor = original.Gray
Green ImageColor = original.Green
Monochrome ImageColor = original.Monochrome
Orange ImageColor = original.Orange
Pink ImageColor = original.Pink
Purple ImageColor = original.Purple
Red ImageColor = original.Red
Teal ImageColor = original.Teal
White ImageColor = original.White
Yellow ImageColor = original.Yellow
)

type ImageContent = original.ImageContent

const (
Face ImageContent = original.Face
Portrait ImageContent = original.Portrait
)

type ImageLicense = original.ImageLicense

const (
ImageLicenseAll ImageLicense = original.ImageLicenseAll
ImageLicenseAny ImageLicense = original.ImageLicenseAny
ImageLicenseModify ImageLicense = original.ImageLicenseModify
ImageLicenseModifyCommercially ImageLicense = original.ImageLicenseModifyCommercially
ImageLicensePublic ImageLicense = original.ImageLicensePublic
ImageLicenseShare ImageLicense = original.ImageLicenseShare
ImageLicenseShareCommercially ImageLicense = original.ImageLicenseShareCommercially
)

type ImageSize = original.ImageSize

const (
ImageSizeAll ImageSize = original.ImageSizeAll
ImageSizeLarge ImageSize = original.ImageSizeLarge
ImageSizeMedium ImageSize = original.ImageSizeMedium
ImageSizeSmall ImageSize = original.ImageSizeSmall
ImageSizeWallpaper ImageSize = original.ImageSizeWallpaper
)

type ImageType = original.ImageType

const (
AnimatedGif ImageType = original.AnimatedGif
Clipart ImageType = original.Clipart
Line ImageType = original.Line
Photo ImageType = original.Photo
Shopping ImageType = original.Shopping
Transparent ImageType = original.Transparent
)

type SafeSearch = original.SafeSearch

const (
Moderate SafeSearch = original.Moderate
Off SafeSearch = original.Off
Strict SafeSearch = original.Strict
)

type Type = original.Type

const (
TypeAnswer Type = original.TypeAnswer
TypeCreativeWork Type = original.TypeCreativeWork
TypeErrorResponse Type = original.TypeErrorResponse
TypeIdentifiable Type = original.TypeIdentifiable
TypeImageObject Type = original.TypeImageObject
TypeImages Type = original.TypeImages
TypeMediaObject Type = original.TypeMediaObject
TypeResponse Type = original.TypeResponse
TypeResponseBase Type = original.TypeResponseBase
TypeSearchResultsAnswer Type = original.TypeSearchResultsAnswer
TypeThing Type = original.TypeThing
TypeWebPage Type = original.TypeWebPage
)

type BasicAnswer = original.BasicAnswer
type Answer = original.Answer
type BasicCreativeWork = original.BasicCreativeWork
type CreativeWork = original.CreativeWork
type Error = original.Error
type ErrorResponse = original.ErrorResponse
type BasicIdentifiable = original.BasicIdentifiable
type Identifiable = original.Identifiable
type ImageObject = original.ImageObject
type Images = original.Images
type BasicMediaObject = original.BasicMediaObject
type MediaObject = original.MediaObject
type Query = original.Query
type BasicResponse = original.BasicResponse
type Response = original.Response
type BasicResponseBase = original.BasicResponseBase
type ResponseBase = original.ResponseBase
type BasicSearchResultsAnswer = original.BasicSearchResultsAnswer
type SearchResultsAnswer = original.SearchResultsAnswer
type BasicThing = original.BasicThing
type Thing = original.Thing
type WebPage = original.WebPage

func New() BaseClient {
return original.New()
}
func NewWithBaseURI(baseURI string) BaseClient {
return original.NewWithBaseURI(baseURI)
}
func NewCustomInstanceClient() CustomInstanceClient {
return original.NewCustomInstanceClient()
}
func NewCustomInstanceClientWithBaseURI(baseURI string) CustomInstanceClient {
return original.NewCustomInstanceClientWithBaseURI(baseURI)
}
func PossibleErrorCodeValues() []ErrorCode {
return original.PossibleErrorCodeValues()
}
func PossibleErrorSubCodeValues() []ErrorSubCode {
return original.PossibleErrorSubCodeValues()
}
func PossibleFreshnessValues() []Freshness {
return original.PossibleFreshnessValues()
}
func PossibleImageAspectValues() []ImageAspect {
return original.PossibleImageAspectValues()
}
func PossibleImageColorValues() []ImageColor {
return original.PossibleImageColorValues()
}
func PossibleImageContentValues() []ImageContent {
return original.PossibleImageContentValues()
}
func PossibleImageLicenseValues() []ImageLicense {
return original.PossibleImageLicenseValues()
}
func PossibleImageSizeValues() []ImageSize {
return original.PossibleImageSizeValues()
}
func PossibleImageTypeValues() []ImageType {
return original.PossibleImageTypeValues()
}
func PossibleSafeSearchValues() []SafeSearch {
return original.PossibleSafeSearchValues()
}
func PossibleTypeValues() []Type {
return original.PossibleTypeValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/preview"
}
func Version() string {
return original.Version()
}
50 changes: 50 additions & 0 deletions services/cognitiveservices/v1.0/customimagesearch/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading