...
1
2
3
4
5
6
7
8
9
10 package textanalytics
11
12 import original "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.1/textanalytics"
13
14 type BaseClient = original.BaseClient
15 type DetectedLanguage = original.DetectedLanguage
16 type DocumentStatistics = original.DocumentStatistics
17 type EntitiesBatchResult = original.EntitiesBatchResult
18 type EntitiesBatchResultItem = original.EntitiesBatchResultItem
19 type EntityRecord = original.EntityRecord
20 type ErrorRecord = original.ErrorRecord
21 type ErrorResponse = original.ErrorResponse
22 type InternalError = original.InternalError
23 type KeyPhraseBatchResult = original.KeyPhraseBatchResult
24 type KeyPhraseBatchResultItem = original.KeyPhraseBatchResultItem
25 type LanguageBatchInput = original.LanguageBatchInput
26 type LanguageBatchResult = original.LanguageBatchResult
27 type LanguageBatchResultItem = original.LanguageBatchResultItem
28 type LanguageInput = original.LanguageInput
29 type MatchRecord = original.MatchRecord
30 type MultiLanguageBatchInput = original.MultiLanguageBatchInput
31 type MultiLanguageInput = original.MultiLanguageInput
32 type RequestStatistics = original.RequestStatistics
33 type SentimentBatchResult = original.SentimentBatchResult
34 type SentimentBatchResultItem = original.SentimentBatchResultItem
35
36 func New(endpoint string) BaseClient {
37 return original.New(endpoint)
38 }
39 func NewWithoutDefaults(endpoint string) BaseClient {
40 return original.NewWithoutDefaults(endpoint)
41 }
42 func UserAgent() string {
43 return original.UserAgent() + " profiles/preview"
44 }
45 func Version() string {
46 return original.Version()
47 }
48
View as plain text