forked from kubeflow/hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_artifact_create.go
More file actions
249 lines (205 loc) · 6.52 KB
/
model_artifact_create.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"
)
// ArtifactCreate - An Artifact to be created.
type ArtifactCreate struct {
DataSetCreate *DataSetCreate
DocArtifactCreate *DocArtifactCreate
MetricCreate *MetricCreate
ModelArtifactCreate *ModelArtifactCreate
ParameterCreate *ParameterCreate
}
// DataSetCreateAsArtifactCreate is a convenience function that returns DataSetCreate wrapped in ArtifactCreate
func DataSetCreateAsArtifactCreate(v *DataSetCreate) ArtifactCreate {
return ArtifactCreate{
DataSetCreate: v,
}
}
// DocArtifactCreateAsArtifactCreate is a convenience function that returns DocArtifactCreate wrapped in ArtifactCreate
func DocArtifactCreateAsArtifactCreate(v *DocArtifactCreate) ArtifactCreate {
return ArtifactCreate{
DocArtifactCreate: v,
}
}
// MetricCreateAsArtifactCreate is a convenience function that returns MetricCreate wrapped in ArtifactCreate
func MetricCreateAsArtifactCreate(v *MetricCreate) ArtifactCreate {
return ArtifactCreate{
MetricCreate: v,
}
}
// ModelArtifactCreateAsArtifactCreate is a convenience function that returns ModelArtifactCreate wrapped in ArtifactCreate
func ModelArtifactCreateAsArtifactCreate(v *ModelArtifactCreate) ArtifactCreate {
return ArtifactCreate{
ModelArtifactCreate: v,
}
}
// ParameterCreateAsArtifactCreate is a convenience function that returns ParameterCreate wrapped in ArtifactCreate
func ParameterCreateAsArtifactCreate(v *ParameterCreate) ArtifactCreate {
return ArtifactCreate{
ParameterCreate: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *ArtifactCreate) 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 DataSetCreate
err = json.Unmarshal(data, &dst.DataSetCreate)
if err == nil {
return nil // data stored in dst.DataSetCreate, return on the first match
} else {
dst.DataSetCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as DataSetCreate: %s", err.Error())
}
}
// check if the discriminator value is 'doc-artifact'
if jsonDict["artifactType"] == "doc-artifact" {
// try to unmarshal JSON data into DocArtifactCreate
err = json.Unmarshal(data, &dst.DocArtifactCreate)
if err == nil {
return nil // data stored in dst.DocArtifactCreate, return on the first match
} else {
dst.DocArtifactCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as DocArtifactCreate: %s", err.Error())
}
}
// check if the discriminator value is 'metric'
if jsonDict["artifactType"] == "metric" {
// try to unmarshal JSON data into MetricCreate
err = json.Unmarshal(data, &dst.MetricCreate)
if err == nil {
return nil // data stored in dst.MetricCreate, return on the first match
} else {
dst.MetricCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as MetricCreate: %s", err.Error())
}
}
// check if the discriminator value is 'model-artifact'
if jsonDict["artifactType"] == "model-artifact" {
// try to unmarshal JSON data into ModelArtifactCreate
err = json.Unmarshal(data, &dst.ModelArtifactCreate)
if err == nil {
return nil // data stored in dst.ModelArtifactCreate, return on the first match
} else {
dst.ModelArtifactCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as ModelArtifactCreate: %s", err.Error())
}
}
// check if the discriminator value is 'parameter'
if jsonDict["artifactType"] == "parameter" {
// try to unmarshal JSON data into ParameterCreate
err = json.Unmarshal(data, &dst.ParameterCreate)
if err == nil {
return nil // data stored in dst.ParameterCreate, return on the first match
} else {
dst.ParameterCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as ParameterCreate: %s", err.Error())
}
}
return nil
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src ArtifactCreate) MarshalJSON() ([]byte, error) {
if src.DataSetCreate != nil {
return json.Marshal(&src.DataSetCreate)
}
if src.DocArtifactCreate != nil {
return json.Marshal(&src.DocArtifactCreate)
}
if src.MetricCreate != nil {
return json.Marshal(&src.MetricCreate)
}
if src.ModelArtifactCreate != nil {
return json.Marshal(&src.ModelArtifactCreate)
}
if src.ParameterCreate != nil {
return json.Marshal(&src.ParameterCreate)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *ArtifactCreate) GetActualInstance() interface{} {
if obj == nil {
return nil
}
if obj.DataSetCreate != nil {
return obj.DataSetCreate
}
if obj.DocArtifactCreate != nil {
return obj.DocArtifactCreate
}
if obj.MetricCreate != nil {
return obj.MetricCreate
}
if obj.ModelArtifactCreate != nil {
return obj.ModelArtifactCreate
}
if obj.ParameterCreate != nil {
return obj.ParameterCreate
}
// all schemas are nil
return nil
}
// Get the actual instance value
func (obj ArtifactCreate) GetActualInstanceValue() interface{} {
if obj.DataSetCreate != nil {
return *obj.DataSetCreate
}
if obj.DocArtifactCreate != nil {
return *obj.DocArtifactCreate
}
if obj.MetricCreate != nil {
return *obj.MetricCreate
}
if obj.ModelArtifactCreate != nil {
return *obj.ModelArtifactCreate
}
if obj.ParameterCreate != nil {
return *obj.ParameterCreate
}
// all schemas are nil
return nil
}
type NullableArtifactCreate struct {
value *ArtifactCreate
isSet bool
}
func (v NullableArtifactCreate) Get() *ArtifactCreate {
return v.value
}
func (v *NullableArtifactCreate) Set(val *ArtifactCreate) {
v.value = val
v.isSet = true
}
func (v NullableArtifactCreate) IsSet() bool {
return v.isSet
}
func (v *NullableArtifactCreate) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableArtifactCreate(val *ArtifactCreate) *NullableArtifactCreate {
return &NullableArtifactCreate{value: val, isSet: true}
}
func (v NullableArtifactCreate) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableArtifactCreate) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}