-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathmodel_instance.go
More file actions
588 lines (479 loc) · 18.7 KB
/
model_instance.go
File metadata and controls
588 lines (479 loc) · 18.7 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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
/*
STACKIT Secrets Manager API
This API provides endpoints for managing the Secrets-Manager.
API version: 1.4.2
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package secretsmanager
import (
"encoding/json"
)
// checks if the Instance type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &Instance{}
/*
types and functions for apiUrl
*/
// isNotNullableString
type InstanceGetApiUrlAttributeType = *string
func getInstanceGetApiUrlAttributeTypeOk(arg InstanceGetApiUrlAttributeType) (ret InstanceGetApiUrlRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetApiUrlAttributeType(arg *InstanceGetApiUrlAttributeType, val InstanceGetApiUrlRetType) {
*arg = &val
}
type InstanceGetApiUrlArgType = string
type InstanceGetApiUrlRetType = string
/*
types and functions for creationFinishedDate
*/
// isNotNullableString
type InstanceGetCreationFinishedDateAttributeType = *string
func getInstanceGetCreationFinishedDateAttributeTypeOk(arg InstanceGetCreationFinishedDateAttributeType) (ret InstanceGetCreationFinishedDateRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetCreationFinishedDateAttributeType(arg *InstanceGetCreationFinishedDateAttributeType, val InstanceGetCreationFinishedDateRetType) {
*arg = &val
}
type InstanceGetCreationFinishedDateArgType = string
type InstanceGetCreationFinishedDateRetType = string
/*
types and functions for creationStartDate
*/
// isNotNullableString
type InstanceGetCreationStartDateAttributeType = *string
func getInstanceGetCreationStartDateAttributeTypeOk(arg InstanceGetCreationStartDateAttributeType) (ret InstanceGetCreationStartDateRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetCreationStartDateAttributeType(arg *InstanceGetCreationStartDateAttributeType, val InstanceGetCreationStartDateRetType) {
*arg = &val
}
type InstanceGetCreationStartDateArgType = string
type InstanceGetCreationStartDateRetType = string
/*
types and functions for id
*/
// isNotNullableString
type InstanceGetIdAttributeType = *string
func getInstanceGetIdAttributeTypeOk(arg InstanceGetIdAttributeType) (ret InstanceGetIdRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetIdAttributeType(arg *InstanceGetIdAttributeType, val InstanceGetIdRetType) {
*arg = &val
}
type InstanceGetIdArgType = string
type InstanceGetIdRetType = string
/*
types and functions for kmsKey
*/
// isModel
type InstanceGetKmsKeyAttributeType = *KmsKeyPayload
type InstanceGetKmsKeyArgType = KmsKeyPayload
type InstanceGetKmsKeyRetType = KmsKeyPayload
func getInstanceGetKmsKeyAttributeTypeOk(arg InstanceGetKmsKeyAttributeType) (ret InstanceGetKmsKeyRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetKmsKeyAttributeType(arg *InstanceGetKmsKeyAttributeType, val InstanceGetKmsKeyRetType) {
*arg = &val
}
/*
types and functions for name
*/
// isNotNullableString
type InstanceGetNameAttributeType = *string
func getInstanceGetNameAttributeTypeOk(arg InstanceGetNameAttributeType) (ret InstanceGetNameRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetNameAttributeType(arg *InstanceGetNameAttributeType, val InstanceGetNameRetType) {
*arg = &val
}
type InstanceGetNameArgType = string
type InstanceGetNameRetType = string
/*
types and functions for secretCount
*/
// isInteger
type InstanceGetSecretCountAttributeType = *int64
type InstanceGetSecretCountArgType = int64
type InstanceGetSecretCountRetType = int64
func getInstanceGetSecretCountAttributeTypeOk(arg InstanceGetSecretCountAttributeType) (ret InstanceGetSecretCountRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetSecretCountAttributeType(arg *InstanceGetSecretCountAttributeType, val InstanceGetSecretCountRetType) {
*arg = &val
}
/*
types and functions for secretsEngine
*/
// isNotNullableString
type InstanceGetSecretsEngineAttributeType = *string
func getInstanceGetSecretsEngineAttributeTypeOk(arg InstanceGetSecretsEngineAttributeType) (ret InstanceGetSecretsEngineRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetSecretsEngineAttributeType(arg *InstanceGetSecretsEngineAttributeType, val InstanceGetSecretsEngineRetType) {
*arg = &val
}
type InstanceGetSecretsEngineArgType = string
type InstanceGetSecretsEngineRetType = string
/*
types and functions for state
*/
// isNotNullableString
type InstanceGetStateAttributeType = *string
func getInstanceGetStateAttributeTypeOk(arg InstanceGetStateAttributeType) (ret InstanceGetStateRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetStateAttributeType(arg *InstanceGetStateAttributeType, val InstanceGetStateRetType) {
*arg = &val
}
type InstanceGetStateArgType = string
type InstanceGetStateRetType = string
/*
types and functions for updateFinishedDate
*/
// isNotNullableString
type InstanceGetUpdateFinishedDateAttributeType = *string
func getInstanceGetUpdateFinishedDateAttributeTypeOk(arg InstanceGetUpdateFinishedDateAttributeType) (ret InstanceGetUpdateFinishedDateRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetUpdateFinishedDateAttributeType(arg *InstanceGetUpdateFinishedDateAttributeType, val InstanceGetUpdateFinishedDateRetType) {
*arg = &val
}
type InstanceGetUpdateFinishedDateArgType = string
type InstanceGetUpdateFinishedDateRetType = string
/*
types and functions for updateStartDate
*/
// isNotNullableString
type InstanceGetUpdateStartDateAttributeType = *string
func getInstanceGetUpdateStartDateAttributeTypeOk(arg InstanceGetUpdateStartDateAttributeType) (ret InstanceGetUpdateStartDateRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setInstanceGetUpdateStartDateAttributeType(arg *InstanceGetUpdateStartDateAttributeType, val InstanceGetUpdateStartDateRetType) {
*arg = &val
}
type InstanceGetUpdateStartDateArgType = string
type InstanceGetUpdateStartDateRetType = string
// Instance struct for Instance
type Instance struct {
// The API endpoint for connecting to the secrets engine.
// REQUIRED
ApiUrl InstanceGetApiUrlAttributeType `json:"apiUrl" required:"true"`
// The date and time the creation of the Secrets Manager instance was finished.
CreationFinishedDate InstanceGetCreationFinishedDateAttributeType `json:"creationFinishedDate,omitempty"`
// The date and time the creation of the Secrets Manager instance was triggered.
// REQUIRED
CreationStartDate InstanceGetCreationStartDateAttributeType `json:"creationStartDate" required:"true"`
// A auto generated unique id which identifies the secrets manager instances.
// REQUIRED
Id InstanceGetIdAttributeType `json:"id" required:"true"`
KmsKey InstanceGetKmsKeyAttributeType `json:"kmsKey,omitempty"`
// A user chosen name to distinguish multiple secrets manager instances.
// REQUIRED
Name InstanceGetNameAttributeType `json:"name" required:"true"`
// The number of secrets currently stored inside of the instance. This value will be updated once per hour.
// REQUIRED
SecretCount InstanceGetSecretCountAttributeType `json:"secretCount" required:"true"`
// The name of the secrets engine.
// REQUIRED
SecretsEngine InstanceGetSecretsEngineAttributeType `json:"secretsEngine" required:"true"`
// The current state of the Secrets Manager instance.
// REQUIRED
State InstanceGetStateAttributeType `json:"state" required:"true"`
UpdateFinishedDate InstanceGetUpdateFinishedDateAttributeType `json:"updateFinishedDate,omitempty"`
UpdateStartDate InstanceGetUpdateStartDateAttributeType `json:"updateStartDate,omitempty"`
}
type _Instance Instance
// NewInstance instantiates a new Instance 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 NewInstance(apiUrl InstanceGetApiUrlArgType, creationStartDate InstanceGetCreationStartDateArgType, id InstanceGetIdArgType, name InstanceGetNameArgType, secretCount InstanceGetSecretCountArgType, secretsEngine InstanceGetSecretsEngineArgType, state InstanceGetStateArgType) *Instance {
this := Instance{}
setInstanceGetApiUrlAttributeType(&this.ApiUrl, apiUrl)
setInstanceGetCreationStartDateAttributeType(&this.CreationStartDate, creationStartDate)
setInstanceGetIdAttributeType(&this.Id, id)
setInstanceGetNameAttributeType(&this.Name, name)
setInstanceGetSecretCountAttributeType(&this.SecretCount, secretCount)
setInstanceGetSecretsEngineAttributeType(&this.SecretsEngine, secretsEngine)
setInstanceGetStateAttributeType(&this.State, state)
return &this
}
// NewInstanceWithDefaults instantiates a new Instance 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 NewInstanceWithDefaults() *Instance {
this := Instance{}
return &this
}
// GetApiUrl returns the ApiUrl field value
func (o *Instance) GetApiUrl() (ret InstanceGetApiUrlRetType) {
ret, _ = o.GetApiUrlOk()
return ret
}
// GetApiUrlOk returns a tuple with the ApiUrl field value
// and a boolean to check if the value has been set.
func (o *Instance) GetApiUrlOk() (ret InstanceGetApiUrlRetType, ok bool) {
return getInstanceGetApiUrlAttributeTypeOk(o.ApiUrl)
}
// SetApiUrl sets field value
func (o *Instance) SetApiUrl(v InstanceGetApiUrlRetType) {
setInstanceGetApiUrlAttributeType(&o.ApiUrl, v)
}
// GetCreationFinishedDate returns the CreationFinishedDate field value if set, zero value otherwise.
func (o *Instance) GetCreationFinishedDate() (res InstanceGetCreationFinishedDateRetType) {
res, _ = o.GetCreationFinishedDateOk()
return
}
// GetCreationFinishedDateOk returns a tuple with the CreationFinishedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Instance) GetCreationFinishedDateOk() (ret InstanceGetCreationFinishedDateRetType, ok bool) {
return getInstanceGetCreationFinishedDateAttributeTypeOk(o.CreationFinishedDate)
}
// HasCreationFinishedDate returns a boolean if a field has been set.
func (o *Instance) HasCreationFinishedDate() bool {
_, ok := o.GetCreationFinishedDateOk()
return ok
}
// SetCreationFinishedDate gets a reference to the given string and assigns it to the CreationFinishedDate field.
func (o *Instance) SetCreationFinishedDate(v InstanceGetCreationFinishedDateRetType) {
setInstanceGetCreationFinishedDateAttributeType(&o.CreationFinishedDate, v)
}
// GetCreationStartDate returns the CreationStartDate field value
func (o *Instance) GetCreationStartDate() (ret InstanceGetCreationStartDateRetType) {
ret, _ = o.GetCreationStartDateOk()
return ret
}
// GetCreationStartDateOk returns a tuple with the CreationStartDate field value
// and a boolean to check if the value has been set.
func (o *Instance) GetCreationStartDateOk() (ret InstanceGetCreationStartDateRetType, ok bool) {
return getInstanceGetCreationStartDateAttributeTypeOk(o.CreationStartDate)
}
// SetCreationStartDate sets field value
func (o *Instance) SetCreationStartDate(v InstanceGetCreationStartDateRetType) {
setInstanceGetCreationStartDateAttributeType(&o.CreationStartDate, v)
}
// GetId returns the Id field value
func (o *Instance) GetId() (ret InstanceGetIdRetType) {
ret, _ = o.GetIdOk()
return ret
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *Instance) GetIdOk() (ret InstanceGetIdRetType, ok bool) {
return getInstanceGetIdAttributeTypeOk(o.Id)
}
// SetId sets field value
func (o *Instance) SetId(v InstanceGetIdRetType) {
setInstanceGetIdAttributeType(&o.Id, v)
}
// GetKmsKey returns the KmsKey field value if set, zero value otherwise.
func (o *Instance) GetKmsKey() (res InstanceGetKmsKeyRetType) {
res, _ = o.GetKmsKeyOk()
return
}
// GetKmsKeyOk returns a tuple with the KmsKey field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Instance) GetKmsKeyOk() (ret InstanceGetKmsKeyRetType, ok bool) {
return getInstanceGetKmsKeyAttributeTypeOk(o.KmsKey)
}
// HasKmsKey returns a boolean if a field has been set.
func (o *Instance) HasKmsKey() bool {
_, ok := o.GetKmsKeyOk()
return ok
}
// SetKmsKey gets a reference to the given KmsKeyPayload and assigns it to the KmsKey field.
func (o *Instance) SetKmsKey(v InstanceGetKmsKeyRetType) {
setInstanceGetKmsKeyAttributeType(&o.KmsKey, v)
}
// GetName returns the Name field value
func (o *Instance) GetName() (ret InstanceGetNameRetType) {
ret, _ = o.GetNameOk()
return ret
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *Instance) GetNameOk() (ret InstanceGetNameRetType, ok bool) {
return getInstanceGetNameAttributeTypeOk(o.Name)
}
// SetName sets field value
func (o *Instance) SetName(v InstanceGetNameRetType) {
setInstanceGetNameAttributeType(&o.Name, v)
}
// GetSecretCount returns the SecretCount field value
func (o *Instance) GetSecretCount() (ret InstanceGetSecretCountRetType) {
ret, _ = o.GetSecretCountOk()
return ret
}
// GetSecretCountOk returns a tuple with the SecretCount field value
// and a boolean to check if the value has been set.
func (o *Instance) GetSecretCountOk() (ret InstanceGetSecretCountRetType, ok bool) {
return getInstanceGetSecretCountAttributeTypeOk(o.SecretCount)
}
// SetSecretCount sets field value
func (o *Instance) SetSecretCount(v InstanceGetSecretCountRetType) {
setInstanceGetSecretCountAttributeType(&o.SecretCount, v)
}
// GetSecretsEngine returns the SecretsEngine field value
func (o *Instance) GetSecretsEngine() (ret InstanceGetSecretsEngineRetType) {
ret, _ = o.GetSecretsEngineOk()
return ret
}
// GetSecretsEngineOk returns a tuple with the SecretsEngine field value
// and a boolean to check if the value has been set.
func (o *Instance) GetSecretsEngineOk() (ret InstanceGetSecretsEngineRetType, ok bool) {
return getInstanceGetSecretsEngineAttributeTypeOk(o.SecretsEngine)
}
// SetSecretsEngine sets field value
func (o *Instance) SetSecretsEngine(v InstanceGetSecretsEngineRetType) {
setInstanceGetSecretsEngineAttributeType(&o.SecretsEngine, v)
}
// GetState returns the State field value
func (o *Instance) GetState() (ret InstanceGetStateRetType) {
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 *Instance) GetStateOk() (ret InstanceGetStateRetType, ok bool) {
return getInstanceGetStateAttributeTypeOk(o.State)
}
// SetState sets field value
func (o *Instance) SetState(v InstanceGetStateRetType) {
setInstanceGetStateAttributeType(&o.State, v)
}
// GetUpdateFinishedDate returns the UpdateFinishedDate field value if set, zero value otherwise.
func (o *Instance) GetUpdateFinishedDate() (res InstanceGetUpdateFinishedDateRetType) {
res, _ = o.GetUpdateFinishedDateOk()
return
}
// GetUpdateFinishedDateOk returns a tuple with the UpdateFinishedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Instance) GetUpdateFinishedDateOk() (ret InstanceGetUpdateFinishedDateRetType, ok bool) {
return getInstanceGetUpdateFinishedDateAttributeTypeOk(o.UpdateFinishedDate)
}
// HasUpdateFinishedDate returns a boolean if a field has been set.
func (o *Instance) HasUpdateFinishedDate() bool {
_, ok := o.GetUpdateFinishedDateOk()
return ok
}
// SetUpdateFinishedDate gets a reference to the given string and assigns it to the UpdateFinishedDate field.
func (o *Instance) SetUpdateFinishedDate(v InstanceGetUpdateFinishedDateRetType) {
setInstanceGetUpdateFinishedDateAttributeType(&o.UpdateFinishedDate, v)
}
// GetUpdateStartDate returns the UpdateStartDate field value if set, zero value otherwise.
func (o *Instance) GetUpdateStartDate() (res InstanceGetUpdateStartDateRetType) {
res, _ = o.GetUpdateStartDateOk()
return
}
// GetUpdateStartDateOk returns a tuple with the UpdateStartDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Instance) GetUpdateStartDateOk() (ret InstanceGetUpdateStartDateRetType, ok bool) {
return getInstanceGetUpdateStartDateAttributeTypeOk(o.UpdateStartDate)
}
// HasUpdateStartDate returns a boolean if a field has been set.
func (o *Instance) HasUpdateStartDate() bool {
_, ok := o.GetUpdateStartDateOk()
return ok
}
// SetUpdateStartDate gets a reference to the given string and assigns it to the UpdateStartDate field.
func (o *Instance) SetUpdateStartDate(v InstanceGetUpdateStartDateRetType) {
setInstanceGetUpdateStartDateAttributeType(&o.UpdateStartDate, v)
}
func (o Instance) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getInstanceGetApiUrlAttributeTypeOk(o.ApiUrl); ok {
toSerialize["ApiUrl"] = val
}
if val, ok := getInstanceGetCreationFinishedDateAttributeTypeOk(o.CreationFinishedDate); ok {
toSerialize["CreationFinishedDate"] = val
}
if val, ok := getInstanceGetCreationStartDateAttributeTypeOk(o.CreationStartDate); ok {
toSerialize["CreationStartDate"] = val
}
if val, ok := getInstanceGetIdAttributeTypeOk(o.Id); ok {
toSerialize["Id"] = val
}
if val, ok := getInstanceGetKmsKeyAttributeTypeOk(o.KmsKey); ok {
toSerialize["KmsKey"] = val
}
if val, ok := getInstanceGetNameAttributeTypeOk(o.Name); ok {
toSerialize["Name"] = val
}
if val, ok := getInstanceGetSecretCountAttributeTypeOk(o.SecretCount); ok {
toSerialize["SecretCount"] = val
}
if val, ok := getInstanceGetSecretsEngineAttributeTypeOk(o.SecretsEngine); ok {
toSerialize["SecretsEngine"] = val
}
if val, ok := getInstanceGetStateAttributeTypeOk(o.State); ok {
toSerialize["State"] = val
}
if val, ok := getInstanceGetUpdateFinishedDateAttributeTypeOk(o.UpdateFinishedDate); ok {
toSerialize["UpdateFinishedDate"] = val
}
if val, ok := getInstanceGetUpdateStartDateAttributeTypeOk(o.UpdateStartDate); ok {
toSerialize["UpdateStartDate"] = val
}
return toSerialize, nil
}
type NullableInstance struct {
value *Instance
isSet bool
}
func (v NullableInstance) Get() *Instance {
return v.value
}
func (v *NullableInstance) Set(val *Instance) {
v.value = val
v.isSet = true
}
func (v NullableInstance) IsSet() bool {
return v.isSet
}
func (v *NullableInstance) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableInstance(val *Instance) *NullableInstance {
return &NullableInstance{value: val, isSet: true}
}
func (v NullableInstance) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableInstance) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}