-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmodel_instance_last_operation.go
More file actions
425 lines (350 loc) · 13.3 KB
/
Copy pathmodel_instance_last_operation.go
File metadata and controls
425 lines (350 loc) · 13.3 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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/*
STACKIT Opensearch API
The STACKIT Opensearch API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
API version: 1.1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package opensearch
import (
"encoding/json"
"fmt"
)
// checks if the InstanceLastOperation type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &InstanceLastOperation{}
/*
types and functions for description
*/
// isNotNullableString
type InstanceLastOperationGetDescriptionAttributeType = *string
func getInstanceLastOperationGetDescriptionAttributeTypeOk(arg InstanceLastOperationGetDescriptionAttributeType) (ret InstanceLastOperationGetDescriptionRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceLastOperationGetDescriptionAttributeType(arg *InstanceLastOperationGetDescriptionAttributeType, val InstanceLastOperationGetDescriptionRetType) {
*arg = &val
}
type InstanceLastOperationGetDescriptionArgType = string
type InstanceLastOperationGetDescriptionRetType = string
/*
types and functions for state
*/
// isEnum
// InstanceLastOperationState the model 'InstanceLastOperation'
// value type for enums
type InstanceLastOperationState string
// List of State
const (
INSTANCELASTOPERATIONSTATE_IN_PROGRESS InstanceLastOperationState = "in progress"
INSTANCELASTOPERATIONSTATE_SUCCEEDED InstanceLastOperationState = "succeeded"
INSTANCELASTOPERATIONSTATE_FAILED InstanceLastOperationState = "failed"
)
// All allowed values of InstanceLastOperation enum
var AllowedInstanceLastOperationStateEnumValues = []InstanceLastOperationState{
"in progress",
"succeeded",
"failed",
}
func (v *InstanceLastOperationState) UnmarshalJSON(src []byte) error {
// use a type alias to prevent infinite recursion during unmarshal,
// see https://biscuit.ninja/posts/go-avoid-an-infitine-loop-with-custom-json-unmarshallers
type TmpJson InstanceLastOperationState
var value TmpJson
err := json.Unmarshal(src, &value)
if err != nil {
return err
}
// Allow unmarshalling zero value for testing purposes
var zeroValue TmpJson
if value == zeroValue {
return nil
}
enumTypeValue := InstanceLastOperationState(value)
for _, existing := range AllowedInstanceLastOperationStateEnumValues {
if existing == enumTypeValue {
*v = enumTypeValue
return nil
}
}
return fmt.Errorf("%+v is not a valid InstanceLastOperation", value)
}
// NewInstanceLastOperationStateFromValue returns a pointer to a valid InstanceLastOperationState
// for the value passed as argument, or an error if the value passed is not allowed by the enum
func NewInstanceLastOperationStateFromValue(v InstanceLastOperationState) (*InstanceLastOperationState, error) {
ev := InstanceLastOperationState(v)
if ev.IsValid() {
return &ev, nil
} else {
return nil, fmt.Errorf("invalid value '%v' for InstanceLastOperationState: valid values are %v", v, AllowedInstanceLastOperationStateEnumValues)
}
}
// IsValid return true if the value is valid for the enum, false otherwise
func (v InstanceLastOperationState) IsValid() bool {
for _, existing := range AllowedInstanceLastOperationStateEnumValues {
if existing == v {
return true
}
}
return false
}
// Ptr returns reference to StateState value
func (v InstanceLastOperationState) Ptr() *InstanceLastOperationState {
return &v
}
type NullableInstanceLastOperationState struct {
value *InstanceLastOperationState
isSet bool
}
func (v NullableInstanceLastOperationState) Get() *InstanceLastOperationState {
return v.value
}
func (v *NullableInstanceLastOperationState) Set(val *InstanceLastOperationState) {
v.value = val
v.isSet = true
}
func (v NullableInstanceLastOperationState) IsSet() bool {
return v.isSet
}
func (v *NullableInstanceLastOperationState) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableInstanceLastOperationState(val *InstanceLastOperationState) *NullableInstanceLastOperationState {
return &NullableInstanceLastOperationState{value: val, isSet: true}
}
func (v NullableInstanceLastOperationState) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableInstanceLastOperationState) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
type InstanceLastOperationGetStateAttributeType = *InstanceLastOperationState
type InstanceLastOperationGetStateArgType = InstanceLastOperationState
type InstanceLastOperationGetStateRetType = InstanceLastOperationState
func getInstanceLastOperationGetStateAttributeTypeOk(arg InstanceLastOperationGetStateAttributeType) (ret InstanceLastOperationGetStateRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceLastOperationGetStateAttributeType(arg *InstanceLastOperationGetStateAttributeType, val InstanceLastOperationGetStateRetType) {
*arg = &val
}
/*
types and functions for type
*/
// isEnum
// InstanceLastOperationTypes the model 'InstanceLastOperation'
// value type for enums
type InstanceLastOperationTypes string
// List of Type
const (
INSTANCELASTOPERATIONTYPE_CREATE InstanceLastOperationTypes = "create"
INSTANCELASTOPERATIONTYPE_UPDATE InstanceLastOperationTypes = "update"
INSTANCELASTOPERATIONTYPE_DELETE InstanceLastOperationTypes = "delete"
)
// All allowed values of InstanceLastOperation enum
var AllowedInstanceLastOperationTypesEnumValues = []InstanceLastOperationTypes{
"create",
"update",
"delete",
}
func (v *InstanceLastOperationTypes) UnmarshalJSON(src []byte) error {
// use a type alias to prevent infinite recursion during unmarshal,
// see https://biscuit.ninja/posts/go-avoid-an-infitine-loop-with-custom-json-unmarshallers
type TmpJson InstanceLastOperationTypes
var value TmpJson
err := json.Unmarshal(src, &value)
if err != nil {
return err
}
// Allow unmarshalling zero value for testing purposes
var zeroValue TmpJson
if value == zeroValue {
return nil
}
enumTypeValue := InstanceLastOperationTypes(value)
for _, existing := range AllowedInstanceLastOperationTypesEnumValues {
if existing == enumTypeValue {
*v = enumTypeValue
return nil
}
}
return fmt.Errorf("%+v is not a valid InstanceLastOperation", value)
}
// NewInstanceLastOperationTypesFromValue returns a pointer to a valid InstanceLastOperationTypes
// for the value passed as argument, or an error if the value passed is not allowed by the enum
func NewInstanceLastOperationTypesFromValue(v InstanceLastOperationTypes) (*InstanceLastOperationTypes, error) {
ev := InstanceLastOperationTypes(v)
if ev.IsValid() {
return &ev, nil
} else {
return nil, fmt.Errorf("invalid value '%v' for InstanceLastOperationTypes: valid values are %v", v, AllowedInstanceLastOperationTypesEnumValues)
}
}
// IsValid return true if the value is valid for the enum, false otherwise
func (v InstanceLastOperationTypes) IsValid() bool {
for _, existing := range AllowedInstanceLastOperationTypesEnumValues {
if existing == v {
return true
}
}
return false
}
// Ptr returns reference to TypeTypes value
func (v InstanceLastOperationTypes) Ptr() *InstanceLastOperationTypes {
return &v
}
type NullableInstanceLastOperationTypes struct {
value *InstanceLastOperationTypes
isSet bool
}
func (v NullableInstanceLastOperationTypes) Get() *InstanceLastOperationTypes {
return v.value
}
func (v *NullableInstanceLastOperationTypes) Set(val *InstanceLastOperationTypes) {
v.value = val
v.isSet = true
}
func (v NullableInstanceLastOperationTypes) IsSet() bool {
return v.isSet
}
func (v *NullableInstanceLastOperationTypes) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableInstanceLastOperationTypes(val *InstanceLastOperationTypes) *NullableInstanceLastOperationTypes {
return &NullableInstanceLastOperationTypes{value: val, isSet: true}
}
func (v NullableInstanceLastOperationTypes) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableInstanceLastOperationTypes) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
type InstanceLastOperationGetTypeAttributeType = *InstanceLastOperationTypes
type InstanceLastOperationGetTypeArgType = InstanceLastOperationTypes
type InstanceLastOperationGetTypeRetType = InstanceLastOperationTypes
func getInstanceLastOperationGetTypeAttributeTypeOk(arg InstanceLastOperationGetTypeAttributeType) (ret InstanceLastOperationGetTypeRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceLastOperationGetTypeAttributeType(arg *InstanceLastOperationGetTypeAttributeType, val InstanceLastOperationGetTypeRetType) {
*arg = &val
}
// InstanceLastOperation struct for InstanceLastOperation
type InstanceLastOperation struct {
// REQUIRED
Description InstanceLastOperationGetDescriptionAttributeType `json:"description" required:"true"`
// REQUIRED
State InstanceLastOperationGetStateAttributeType `json:"state" required:"true"`
// REQUIRED
Type InstanceLastOperationGetTypeAttributeType `json:"type" required:"true"`
}
type _InstanceLastOperation InstanceLastOperation
// NewInstanceLastOperation instantiates a new InstanceLastOperation object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewInstanceLastOperation(description InstanceLastOperationGetDescriptionArgType, state InstanceLastOperationGetStateArgType, types InstanceLastOperationGetTypeArgType) *InstanceLastOperation {
this := InstanceLastOperation{}
setInstanceLastOperationGetDescriptionAttributeType(&this.Description, description)
setInstanceLastOperationGetStateAttributeType(&this.State, state)
setInstanceLastOperationGetTypeAttributeType(&this.Type, types)
return &this
}
// NewInstanceLastOperationWithDefaults instantiates a new InstanceLastOperation object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewInstanceLastOperationWithDefaults() *InstanceLastOperation {
this := InstanceLastOperation{}
return &this
}
// GetDescription returns the Description field value
func (o *InstanceLastOperation) GetDescription() (ret InstanceLastOperationGetDescriptionRetType) {
ret, _ = o.GetDescriptionOk()
return ret
}
// GetDescriptionOk returns a tuple with the Description field value
// and a boolean to check if the value has been set.
func (o *InstanceLastOperation) GetDescriptionOk() (ret InstanceLastOperationGetDescriptionRetType, ok bool) {
return getInstanceLastOperationGetDescriptionAttributeTypeOk(o.Description)
}
// SetDescription sets field value
func (o *InstanceLastOperation) SetDescription(v InstanceLastOperationGetDescriptionRetType) {
setInstanceLastOperationGetDescriptionAttributeType(&o.Description, v)
}
// GetState returns the State field value
func (o *InstanceLastOperation) GetState() (ret InstanceLastOperationGetStateRetType) {
ret, _ = o.GetStateOk()
return ret
}
// GetStateOk returns a tuple with the State field value
// and a boolean to check if the value has been set.
func (o *InstanceLastOperation) GetStateOk() (ret InstanceLastOperationGetStateRetType, ok bool) {
return getInstanceLastOperationGetStateAttributeTypeOk(o.State)
}
// SetState sets field value
func (o *InstanceLastOperation) SetState(v InstanceLastOperationGetStateRetType) {
setInstanceLastOperationGetStateAttributeType(&o.State, v)
}
// GetType returns the Type field value
func (o *InstanceLastOperation) GetType() (ret InstanceLastOperationGetTypeRetType) {
ret, _ = o.GetTypeOk()
return ret
}
// GetTypeOk returns a tuple with the Type field value
// and a boolean to check if the value has been set.
func (o *InstanceLastOperation) GetTypeOk() (ret InstanceLastOperationGetTypeRetType, ok bool) {
return getInstanceLastOperationGetTypeAttributeTypeOk(o.Type)
}
// SetType sets field value
func (o *InstanceLastOperation) SetType(v InstanceLastOperationGetTypeRetType) {
setInstanceLastOperationGetTypeAttributeType(&o.Type, v)
}
func (o InstanceLastOperation) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getInstanceLastOperationGetDescriptionAttributeTypeOk(o.Description); ok {
toSerialize["Description"] = val
}
if val, ok := getInstanceLastOperationGetStateAttributeTypeOk(o.State); ok {
toSerialize["State"] = val
}
if val, ok := getInstanceLastOperationGetTypeAttributeTypeOk(o.Type); ok {
toSerialize["Type"] = val
}
return toSerialize, nil
}
type NullableInstanceLastOperation struct {
value *InstanceLastOperation
isSet bool
}
func (v NullableInstanceLastOperation) Get() *InstanceLastOperation {
return v.value
}
func (v *NullableInstanceLastOperation) Set(val *InstanceLastOperation) {
v.value = val
v.isSet = true
}
func (v NullableInstanceLastOperation) IsSet() bool {
return v.isSet
}
func (v *NullableInstanceLastOperation) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableInstanceLastOperation(val *InstanceLastOperation) *NullableInstanceLastOperation {
return &NullableInstanceLastOperation{value: val, isSet: true}
}
func (v NullableInstanceLastOperation) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableInstanceLastOperation) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}