forked from kubeflow/hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_artifact_update.go
More file actions
249 lines (205 loc) · 6.52 KB
/
model_artifact_update.go
File metadata and controls
249 lines (205 loc) · 6.52 KB
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
/*
Model Registry REST API
REST API for Model Registry to create and manage ML model metadata
API version: v1alpha3
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"encoding/json"
"fmt"
)
// ArtifactUpdate - An Artifact to be updated.
type ArtifactUpdate struct {
DataSetUpdate *DataSetUpdate
DocArtifactUpdate *DocArtifactUpdate
MetricUpdate *MetricUpdate
ModelArtifactUpdate *ModelArtifactUpdate
ParameterUpdate *ParameterUpdate
}
// DataSetUpdateAsArtifactUpdate is a convenience function that returns DataSetUpdate wrapped in ArtifactUpdate
func DataSetUpdateAsArtifactUpdate(v *DataSetUpdate) ArtifactUpdate {
return ArtifactUpdate{
DataSetUpdate: v,
}
}
// DocArtifactUpdateAsArtifactUpdate is a convenience function that returns DocArtifactUpdate wrapped in ArtifactUpdate
func DocArtifactUpdateAsArtifactUpdate(v *DocArtifactUpdate) ArtifactUpdate {
return ArtifactUpdate{
DocArtifactUpdate: v,
}
}
// MetricUpdateAsArtifactUpdate is a convenience function that returns MetricUpdate wrapped in ArtifactUpdate
func MetricUpdateAsArtifactUpdate(v *MetricUpdate) ArtifactUpdate {
return ArtifactUpdate{
MetricUpdate: v,
}
}
// ModelArtifactUpdateAsArtifactUpdate is a convenience function that returns ModelArtifactUpdate wrapped in ArtifactUpdate
func ModelArtifactUpdateAsArtifactUpdate(v *ModelArtifactUpdate) ArtifactUpdate {
return ArtifactUpdate{
ModelArtifactUpdate: v,
}
}
// ParameterUpdateAsArtifactUpdate is a convenience function that returns ParameterUpdate wrapped in ArtifactUpdate
func ParameterUpdateAsArtifactUpdate(v *ParameterUpdate) ArtifactUpdate {
return ArtifactUpdate{
ParameterUpdate: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *ArtifactUpdate) UnmarshalJSON(data []byte) error {
var err error
// use discriminator value to speed up the lookup
var jsonDict map[string]interface{}
err = newStrictDecoder(data).Decode(&jsonDict)
if err != nil {
return fmt.Errorf("failed to unmarshal JSON into map for the discriminator lookup")
}
// check if the discriminator value is 'dataset-artifact'
if jsonDict["artifactType"] == "dataset-artifact" {
// try to unmarshal JSON data into DataSetUpdate
err = json.Unmarshal(data, &dst.DataSetUpdate)
if err == nil {
return nil // data stored in dst.DataSetUpdate, return on the first match
} else {
dst.DataSetUpdate = nil
return fmt.Errorf("failed to unmarshal ArtifactUpdate as DataSetUpdate: %s", err.Error())
}
}
// check if the discriminator value is 'doc-artifact'
if jsonDict["artifactType"] == "doc-artifact" {
// try to unmarshal JSON data into DocArtifactUpdate
err = json.Unmarshal(data, &dst.DocArtifactUpdate)
if err == nil {
return nil // data stored in dst.DocArtifactUpdate, return on the first match
} else {
dst.DocArtifactUpdate = nil
return fmt.Errorf("failed to unmarshal ArtifactUpdate as DocArtifactUpdate: %s", err.Error())
}
}
// check if the discriminator value is 'metric'
if jsonDict["artifactType"] == "metric" {
// try to unmarshal JSON data into MetricUpdate
err = json.Unmarshal(data, &dst.MetricUpdate)
if err == nil {
return nil // data stored in dst.MetricUpdate, return on the first match
} else {
dst.MetricUpdate = nil
return fmt.Errorf("failed to unmarshal ArtifactUpdate as MetricUpdate: %s", err.Error())
}
}
// check if the discriminator value is 'model-artifact'
if jsonDict["artifactType"] == "model-artifact" {
// try to unmarshal JSON data into ModelArtifactUpdate
err = json.Unmarshal(data, &dst.ModelArtifactUpdate)
if err == nil {
return nil // data stored in dst.ModelArtifactUpdate, return on the first match
} else {
dst.ModelArtifactUpdate = nil
return fmt.Errorf("failed to unmarshal ArtifactUpdate as ModelArtifactUpdate: %s", err.Error())
}
}
// check if the discriminator value is 'parameter'
if jsonDict["artifactType"] == "parameter" {
// try to unmarshal JSON data into ParameterUpdate
err = json.Unmarshal(data, &dst.ParameterUpdate)
if err == nil {
return nil // data stored in dst.ParameterUpdate, return on the first match
} else {
dst.ParameterUpdate = nil
return fmt.Errorf("failed to unmarshal ArtifactUpdate as ParameterUpdate: %s", err.Error())
}
}
return nil
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src ArtifactUpdate) MarshalJSON() ([]byte, error) {
if src.DataSetUpdate != nil {
return json.Marshal(&src.DataSetUpdate)
}
if src.DocArtifactUpdate != nil {
return json.Marshal(&src.DocArtifactUpdate)
}
if src.MetricUpdate != nil {
return json.Marshal(&src.MetricUpdate)
}
if src.ModelArtifactUpdate != nil {
return json.Marshal(&src.ModelArtifactUpdate)
}
if src.ParameterUpdate != nil {
return json.Marshal(&src.ParameterUpdate)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *ArtifactUpdate) GetActualInstance() interface{} {
if obj == nil {
return nil
}
if obj.DataSetUpdate != nil {
return obj.DataSetUpdate
}
if obj.DocArtifactUpdate != nil {
return obj.DocArtifactUpdate
}
if obj.MetricUpdate != nil {
return obj.MetricUpdate
}
if obj.ModelArtifactUpdate != nil {
return obj.ModelArtifactUpdate
}
if obj.ParameterUpdate != nil {
return obj.ParameterUpdate
}
// all schemas are nil
return nil
}
// Get the actual instance value
func (obj ArtifactUpdate) GetActualInstanceValue() interface{} {
if obj.DataSetUpdate != nil {
return *obj.DataSetUpdate
}
if obj.DocArtifactUpdate != nil {
return *obj.DocArtifactUpdate
}
if obj.MetricUpdate != nil {
return *obj.MetricUpdate
}
if obj.ModelArtifactUpdate != nil {
return *obj.ModelArtifactUpdate
}
if obj.ParameterUpdate != nil {
return *obj.ParameterUpdate
}
// all schemas are nil
return nil
}
type NullableArtifactUpdate struct {
value *ArtifactUpdate
isSet bool
}
func (v NullableArtifactUpdate) Get() *ArtifactUpdate {
return v.value
}
func (v *NullableArtifactUpdate) Set(val *ArtifactUpdate) {
v.value = val
v.isSet = true
}
func (v NullableArtifactUpdate) IsSet() bool {
return v.isSet
}
func (v *NullableArtifactUpdate) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableArtifactUpdate(val *ArtifactUpdate) *NullableArtifactUpdate {
return &NullableArtifactUpdate{value: val, isSet: true}
}
func (v NullableArtifactUpdate) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableArtifactUpdate) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}