forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
214 lines (188 loc) · 7.84 KB
/
models.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
//go:build go1.9
// +build go1.9
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// This code was auto-generated by:
// github.com/Azure/azure-sdk-for-go/eng/tools/profileBuilder
package webservices
import (
"context"
original "github.com/Azure/azure-sdk-for-go/services/machinelearning/mgmt/2017-01-01/webservices"
)
const (
DefaultBaseURI = original.DefaultBaseURI
)
type AssetType = original.AssetType
const (
AssetTypeModule AssetType = original.AssetTypeModule
AssetTypeResource AssetType = original.AssetTypeResource
)
type ColumnFormat = original.ColumnFormat
const (
Byte ColumnFormat = original.Byte
Char ColumnFormat = original.Char
Complex128 ColumnFormat = original.Complex128
Complex64 ColumnFormat = original.Complex64
DateTime ColumnFormat = original.DateTime
DateTimeOffset ColumnFormat = original.DateTimeOffset
Double ColumnFormat = original.Double
Duration ColumnFormat = original.Duration
Float ColumnFormat = original.Float
Int16 ColumnFormat = original.Int16
Int32 ColumnFormat = original.Int32
Int64 ColumnFormat = original.Int64
Int8 ColumnFormat = original.Int8
Uint16 ColumnFormat = original.Uint16
Uint32 ColumnFormat = original.Uint32
Uint64 ColumnFormat = original.Uint64
Uint8 ColumnFormat = original.Uint8
)
type ColumnType = original.ColumnType
const (
Boolean ColumnType = original.Boolean
Integer ColumnType = original.Integer
Number ColumnType = original.Number
String ColumnType = original.String
)
type DiagnosticsLevel = original.DiagnosticsLevel
const (
All DiagnosticsLevel = original.All
Error DiagnosticsLevel = original.Error
None DiagnosticsLevel = original.None
)
type InputPortType = original.InputPortType
const (
Dataset InputPortType = original.Dataset
)
type OutputPortType = original.OutputPortType
const (
OutputPortTypeDataset OutputPortType = original.OutputPortTypeDataset
)
type PackageType = original.PackageType
const (
PackageTypeGraph PackageType = original.PackageTypeGraph
PackageTypeWebServiceProperties PackageType = original.PackageTypeWebServiceProperties
)
type ParameterType = original.ParameterType
const (
ParameterTypeBoolean ParameterType = original.ParameterTypeBoolean
ParameterTypeColumnPicker ParameterType = original.ParameterTypeColumnPicker
ParameterTypeCredential ParameterType = original.ParameterTypeCredential
ParameterTypeDataGatewayName ParameterType = original.ParameterTypeDataGatewayName
ParameterTypeDouble ParameterType = original.ParameterTypeDouble
ParameterTypeEnumerated ParameterType = original.ParameterTypeEnumerated
ParameterTypeFloat ParameterType = original.ParameterTypeFloat
ParameterTypeInt ParameterType = original.ParameterTypeInt
ParameterTypeMode ParameterType = original.ParameterTypeMode
ParameterTypeParameterRange ParameterType = original.ParameterTypeParameterRange
ParameterTypeScript ParameterType = original.ParameterTypeScript
ParameterTypeString ParameterType = original.ParameterTypeString
)
type ProvisioningState = original.ProvisioningState
const (
Failed ProvisioningState = original.Failed
Provisioning ProvisioningState = original.Provisioning
Succeeded ProvisioningState = original.Succeeded
Unknown ProvisioningState = original.Unknown
)
type AssetItem = original.AssetItem
type AsyncOperationErrorInfo = original.AsyncOperationErrorInfo
type AsyncOperationStatus = original.AsyncOperationStatus
type BaseClient = original.BaseClient
type BasicProperties = original.BasicProperties
type BlobLocation = original.BlobLocation
type Client = original.Client
type ColumnSpecification = original.ColumnSpecification
type CommitmentPlan = original.CommitmentPlan
type CreateOrUpdateFuture = original.CreateOrUpdateFuture
type CreateRegionalPropertiesFuture = original.CreateRegionalPropertiesFuture
type DiagnosticsConfiguration = original.DiagnosticsConfiguration
type ExampleRequest = original.ExampleRequest
type GraphEdge = original.GraphEdge
type GraphNode = original.GraphNode
type GraphPackage = original.GraphPackage
type GraphParameter = original.GraphParameter
type GraphParameterLink = original.GraphParameterLink
type InputPort = original.InputPort
type Keys = original.Keys
type MachineLearningWorkspace = original.MachineLearningWorkspace
type ModeValueInfo = original.ModeValueInfo
type ModuleAssetParameter = original.ModuleAssetParameter
type OperationDisplayInfo = original.OperationDisplayInfo
type OperationEntity = original.OperationEntity
type OperationEntityListResult = original.OperationEntityListResult
type OperationsClient = original.OperationsClient
type OutputPort = original.OutputPort
type PaginatedWebServicesList = original.PaginatedWebServicesList
type PaginatedWebServicesListIterator = original.PaginatedWebServicesListIterator
type PaginatedWebServicesListPage = original.PaginatedWebServicesListPage
type Parameter = original.Parameter
type PatchFuture = original.PatchFuture
type PatchedResource = original.PatchedResource
type PatchedWebService = original.PatchedWebService
type Properties = original.Properties
type PropertiesForGraph = original.PropertiesForGraph
type RealtimeConfiguration = original.RealtimeConfiguration
type RemoveFuture = original.RemoveFuture
type Resource = original.Resource
type ServiceInputOutputSpecification = original.ServiceInputOutputSpecification
type StorageAccount = original.StorageAccount
type TableSpecification = original.TableSpecification
type WebService = original.WebService
func New(subscriptionID string) BaseClient {
return original.New(subscriptionID)
}
func NewClient(subscriptionID string) Client {
return original.NewClient(subscriptionID)
}
func NewClientWithBaseURI(baseURI string, subscriptionID string) Client {
return original.NewClientWithBaseURI(baseURI, subscriptionID)
}
func NewOperationsClient(subscriptionID string) OperationsClient {
return original.NewOperationsClient(subscriptionID)
}
func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient {
return original.NewOperationsClientWithBaseURI(baseURI, subscriptionID)
}
func NewPaginatedWebServicesListIterator(page PaginatedWebServicesListPage) PaginatedWebServicesListIterator {
return original.NewPaginatedWebServicesListIterator(page)
}
func NewPaginatedWebServicesListPage(cur PaginatedWebServicesList, getNextPage func(context.Context, PaginatedWebServicesList) (PaginatedWebServicesList, error)) PaginatedWebServicesListPage {
return original.NewPaginatedWebServicesListPage(cur, getNextPage)
}
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleAssetTypeValues() []AssetType {
return original.PossibleAssetTypeValues()
}
func PossibleColumnFormatValues() []ColumnFormat {
return original.PossibleColumnFormatValues()
}
func PossibleColumnTypeValues() []ColumnType {
return original.PossibleColumnTypeValues()
}
func PossibleDiagnosticsLevelValues() []DiagnosticsLevel {
return original.PossibleDiagnosticsLevelValues()
}
func PossibleInputPortTypeValues() []InputPortType {
return original.PossibleInputPortTypeValues()
}
func PossibleOutputPortTypeValues() []OutputPortType {
return original.PossibleOutputPortTypeValues()
}
func PossiblePackageTypeValues() []PackageType {
return original.PossiblePackageTypeValues()
}
func PossibleParameterTypeValues() []ParameterType {
return original.PossibleParameterTypeValues()
}
func PossibleProvisioningStateValues() []ProvisioningState {
return original.PossibleProvisioningStateValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/latest"
}
func Version() string {
return original.Version()
}