-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_post_instances_request.go
933 lines (792 loc) · 25.6 KB
/
model_post_instances_request.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
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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
/*
GCOM API
Grafana.com API (public). Looking for GCOM API client packages? You can find them at [grafana-com-public-clients](https://github.com/grafana/grafana-com-public-clients) repository. If you have any questions, please contact support in the Grafana Cloud UI. This spec is in *Beta* stage, so use it with caution: - Not all endpoint responses are properly typed for the time being. - Some request parameter types may not be precise
API version: public
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package gcom
import (
"encoding/json"
)
// checks if the PostInstancesRequest type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &PostInstancesRequest{}
// PostInstancesRequest struct for PostInstancesRequest
type PostInstancesRequest struct {
AdminUserInstance *bool `json:"adminUserInstance,omitempty"`
Alerts *bool `json:"alerts,omitempty"`
Cluster *string `json:"cluster,omitempty"`
Description *string `json:"description,omitempty"`
Graphite *bool `json:"graphite,omitempty"`
HlInstanceId *int32 `json:"hlInstanceId,omitempty"`
Hosted *bool `json:"hosted,omitempty"`
K6OrgId *int32 `json:"k6OrgId,omitempty"`
Labels *map[string]string `json:"labels,omitempty"`
Logs *bool `json:"logs,omitempty"`
Name string `json:"name"`
Org *string `json:"org,omitempty"`
Plan *string `json:"plan,omitempty"`
Plugins []string `json:"plugins,omitempty"`
Prometheus *bool `json:"prometheus,omitempty"`
PublicInstance *bool `json:"publicInstance,omitempty"`
Region *string `json:"region,omitempty"`
Slug *string `json:"slug,omitempty"`
Url *string `json:"url,omitempty"`
UsernameOrEmail *string `json:"usernameOrEmail,omitempty"`
Version *string `json:"version,omitempty"`
WaitForReadiness *bool `json:"waitForReadiness,omitempty"`
AdditionalProperties map[string]interface{}
}
type _PostInstancesRequest PostInstancesRequest
// NewPostInstancesRequest instantiates a new PostInstancesRequest 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 NewPostInstancesRequest(name string) *PostInstancesRequest {
this := PostInstancesRequest{}
this.Name = name
var waitForReadiness bool = true
this.WaitForReadiness = &waitForReadiness
return &this
}
// NewPostInstancesRequestWithDefaults instantiates a new PostInstancesRequest 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 NewPostInstancesRequestWithDefaults() *PostInstancesRequest {
this := PostInstancesRequest{}
var waitForReadiness bool = true
this.WaitForReadiness = &waitForReadiness
return &this
}
// GetAdminUserInstance returns the AdminUserInstance field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetAdminUserInstance() bool {
if o == nil || IsNil(o.AdminUserInstance) {
var ret bool
return ret
}
return *o.AdminUserInstance
}
// GetAdminUserInstanceOk returns a tuple with the AdminUserInstance field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetAdminUserInstanceOk() (*bool, bool) {
if o == nil || IsNil(o.AdminUserInstance) {
return nil, false
}
return o.AdminUserInstance, true
}
// HasAdminUserInstance returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasAdminUserInstance() bool {
if o != nil && !IsNil(o.AdminUserInstance) {
return true
}
return false
}
// SetAdminUserInstance gets a reference to the given bool and assigns it to the AdminUserInstance field.
func (o *PostInstancesRequest) SetAdminUserInstance(v bool) {
o.AdminUserInstance = &v
}
// GetAlerts returns the Alerts field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetAlerts() bool {
if o == nil || IsNil(o.Alerts) {
var ret bool
return ret
}
return *o.Alerts
}
// GetAlertsOk returns a tuple with the Alerts field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetAlertsOk() (*bool, bool) {
if o == nil || IsNil(o.Alerts) {
return nil, false
}
return o.Alerts, true
}
// HasAlerts returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasAlerts() bool {
if o != nil && !IsNil(o.Alerts) {
return true
}
return false
}
// SetAlerts gets a reference to the given bool and assigns it to the Alerts field.
func (o *PostInstancesRequest) SetAlerts(v bool) {
o.Alerts = &v
}
// GetCluster returns the Cluster field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetCluster() string {
if o == nil || IsNil(o.Cluster) {
var ret string
return ret
}
return *o.Cluster
}
// GetClusterOk returns a tuple with the Cluster field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetClusterOk() (*string, bool) {
if o == nil || IsNil(o.Cluster) {
return nil, false
}
return o.Cluster, true
}
// HasCluster returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasCluster() bool {
if o != nil && !IsNil(o.Cluster) {
return true
}
return false
}
// SetCluster gets a reference to the given string and assigns it to the Cluster field.
func (o *PostInstancesRequest) SetCluster(v string) {
o.Cluster = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetDescription() string {
if o == nil || IsNil(o.Description) {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetDescriptionOk() (*string, bool) {
if o == nil || IsNil(o.Description) {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasDescription() bool {
if o != nil && !IsNil(o.Description) {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *PostInstancesRequest) SetDescription(v string) {
o.Description = &v
}
// GetGraphite returns the Graphite field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetGraphite() bool {
if o == nil || IsNil(o.Graphite) {
var ret bool
return ret
}
return *o.Graphite
}
// GetGraphiteOk returns a tuple with the Graphite field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetGraphiteOk() (*bool, bool) {
if o == nil || IsNil(o.Graphite) {
return nil, false
}
return o.Graphite, true
}
// HasGraphite returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasGraphite() bool {
if o != nil && !IsNil(o.Graphite) {
return true
}
return false
}
// SetGraphite gets a reference to the given bool and assigns it to the Graphite field.
func (o *PostInstancesRequest) SetGraphite(v bool) {
o.Graphite = &v
}
// GetHlInstanceId returns the HlInstanceId field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetHlInstanceId() int32 {
if o == nil || IsNil(o.HlInstanceId) {
var ret int32
return ret
}
return *o.HlInstanceId
}
// GetHlInstanceIdOk returns a tuple with the HlInstanceId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetHlInstanceIdOk() (*int32, bool) {
if o == nil || IsNil(o.HlInstanceId) {
return nil, false
}
return o.HlInstanceId, true
}
// HasHlInstanceId returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasHlInstanceId() bool {
if o != nil && !IsNil(o.HlInstanceId) {
return true
}
return false
}
// SetHlInstanceId gets a reference to the given int32 and assigns it to the HlInstanceId field.
func (o *PostInstancesRequest) SetHlInstanceId(v int32) {
o.HlInstanceId = &v
}
// GetHosted returns the Hosted field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetHosted() bool {
if o == nil || IsNil(o.Hosted) {
var ret bool
return ret
}
return *o.Hosted
}
// GetHostedOk returns a tuple with the Hosted field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetHostedOk() (*bool, bool) {
if o == nil || IsNil(o.Hosted) {
return nil, false
}
return o.Hosted, true
}
// HasHosted returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasHosted() bool {
if o != nil && !IsNil(o.Hosted) {
return true
}
return false
}
// SetHosted gets a reference to the given bool and assigns it to the Hosted field.
func (o *PostInstancesRequest) SetHosted(v bool) {
o.Hosted = &v
}
// GetK6OrgId returns the K6OrgId field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetK6OrgId() int32 {
if o == nil || IsNil(o.K6OrgId) {
var ret int32
return ret
}
return *o.K6OrgId
}
// GetK6OrgIdOk returns a tuple with the K6OrgId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetK6OrgIdOk() (*int32, bool) {
if o == nil || IsNil(o.K6OrgId) {
return nil, false
}
return o.K6OrgId, true
}
// HasK6OrgId returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasK6OrgId() bool {
if o != nil && !IsNil(o.K6OrgId) {
return true
}
return false
}
// SetK6OrgId gets a reference to the given int32 and assigns it to the K6OrgId field.
func (o *PostInstancesRequest) SetK6OrgId(v int32) {
o.K6OrgId = &v
}
// GetLabels returns the Labels field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetLabels() map[string]string {
if o == nil || IsNil(o.Labels) {
var ret map[string]string
return ret
}
return *o.Labels
}
// GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetLabelsOk() (*map[string]string, bool) {
if o == nil || IsNil(o.Labels) {
return nil, false
}
return o.Labels, true
}
// HasLabels returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasLabels() bool {
if o != nil && !IsNil(o.Labels) {
return true
}
return false
}
// SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.
func (o *PostInstancesRequest) SetLabels(v map[string]string) {
o.Labels = &v
}
// GetLogs returns the Logs field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetLogs() bool {
if o == nil || IsNil(o.Logs) {
var ret bool
return ret
}
return *o.Logs
}
// GetLogsOk returns a tuple with the Logs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetLogsOk() (*bool, bool) {
if o == nil || IsNil(o.Logs) {
return nil, false
}
return o.Logs, true
}
// HasLogs returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasLogs() bool {
if o != nil && !IsNil(o.Logs) {
return true
}
return false
}
// SetLogs gets a reference to the given bool and assigns it to the Logs field.
func (o *PostInstancesRequest) SetLogs(v bool) {
o.Logs = &v
}
// GetName returns the Name field value
func (o *PostInstancesRequest) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *PostInstancesRequest) SetName(v string) {
o.Name = v
}
// GetOrg returns the Org field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetOrg() string {
if o == nil || IsNil(o.Org) {
var ret string
return ret
}
return *o.Org
}
// GetOrgOk returns a tuple with the Org field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetOrgOk() (*string, bool) {
if o == nil || IsNil(o.Org) {
return nil, false
}
return o.Org, true
}
// HasOrg returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasOrg() bool {
if o != nil && !IsNil(o.Org) {
return true
}
return false
}
// SetOrg gets a reference to the given string and assigns it to the Org field.
func (o *PostInstancesRequest) SetOrg(v string) {
o.Org = &v
}
// GetPlan returns the Plan field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetPlan() string {
if o == nil || IsNil(o.Plan) {
var ret string
return ret
}
return *o.Plan
}
// GetPlanOk returns a tuple with the Plan field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetPlanOk() (*string, bool) {
if o == nil || IsNil(o.Plan) {
return nil, false
}
return o.Plan, true
}
// HasPlan returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasPlan() bool {
if o != nil && !IsNil(o.Plan) {
return true
}
return false
}
// SetPlan gets a reference to the given string and assigns it to the Plan field.
func (o *PostInstancesRequest) SetPlan(v string) {
o.Plan = &v
}
// GetPlugins returns the Plugins field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetPlugins() []string {
if o == nil || IsNil(o.Plugins) {
var ret []string
return ret
}
return o.Plugins
}
// GetPluginsOk returns a tuple with the Plugins field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetPluginsOk() ([]string, bool) {
if o == nil || IsNil(o.Plugins) {
return nil, false
}
return o.Plugins, true
}
// HasPlugins returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasPlugins() bool {
if o != nil && !IsNil(o.Plugins) {
return true
}
return false
}
// SetPlugins gets a reference to the given []string and assigns it to the Plugins field.
func (o *PostInstancesRequest) SetPlugins(v []string) {
o.Plugins = v
}
// GetPrometheus returns the Prometheus field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetPrometheus() bool {
if o == nil || IsNil(o.Prometheus) {
var ret bool
return ret
}
return *o.Prometheus
}
// GetPrometheusOk returns a tuple with the Prometheus field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetPrometheusOk() (*bool, bool) {
if o == nil || IsNil(o.Prometheus) {
return nil, false
}
return o.Prometheus, true
}
// HasPrometheus returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasPrometheus() bool {
if o != nil && !IsNil(o.Prometheus) {
return true
}
return false
}
// SetPrometheus gets a reference to the given bool and assigns it to the Prometheus field.
func (o *PostInstancesRequest) SetPrometheus(v bool) {
o.Prometheus = &v
}
// GetPublicInstance returns the PublicInstance field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetPublicInstance() bool {
if o == nil || IsNil(o.PublicInstance) {
var ret bool
return ret
}
return *o.PublicInstance
}
// GetPublicInstanceOk returns a tuple with the PublicInstance field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetPublicInstanceOk() (*bool, bool) {
if o == nil || IsNil(o.PublicInstance) {
return nil, false
}
return o.PublicInstance, true
}
// HasPublicInstance returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasPublicInstance() bool {
if o != nil && !IsNil(o.PublicInstance) {
return true
}
return false
}
// SetPublicInstance gets a reference to the given bool and assigns it to the PublicInstance field.
func (o *PostInstancesRequest) SetPublicInstance(v bool) {
o.PublicInstance = &v
}
// GetRegion returns the Region field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetRegion() string {
if o == nil || IsNil(o.Region) {
var ret string
return ret
}
return *o.Region
}
// GetRegionOk returns a tuple with the Region field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetRegionOk() (*string, bool) {
if o == nil || IsNil(o.Region) {
return nil, false
}
return o.Region, true
}
// HasRegion returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasRegion() bool {
if o != nil && !IsNil(o.Region) {
return true
}
return false
}
// SetRegion gets a reference to the given string and assigns it to the Region field.
func (o *PostInstancesRequest) SetRegion(v string) {
o.Region = &v
}
// GetSlug returns the Slug field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetSlug() string {
if o == nil || IsNil(o.Slug) {
var ret string
return ret
}
return *o.Slug
}
// GetSlugOk returns a tuple with the Slug field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetSlugOk() (*string, bool) {
if o == nil || IsNil(o.Slug) {
return nil, false
}
return o.Slug, true
}
// HasSlug returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasSlug() bool {
if o != nil && !IsNil(o.Slug) {
return true
}
return false
}
// SetSlug gets a reference to the given string and assigns it to the Slug field.
func (o *PostInstancesRequest) SetSlug(v string) {
o.Slug = &v
}
// GetUrl returns the Url field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetUrl() string {
if o == nil || IsNil(o.Url) {
var ret string
return ret
}
return *o.Url
}
// GetUrlOk returns a tuple with the Url field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetUrlOk() (*string, bool) {
if o == nil || IsNil(o.Url) {
return nil, false
}
return o.Url, true
}
// HasUrl returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasUrl() bool {
if o != nil && !IsNil(o.Url) {
return true
}
return false
}
// SetUrl gets a reference to the given string and assigns it to the Url field.
func (o *PostInstancesRequest) SetUrl(v string) {
o.Url = &v
}
// GetUsernameOrEmail returns the UsernameOrEmail field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetUsernameOrEmail() string {
if o == nil || IsNil(o.UsernameOrEmail) {
var ret string
return ret
}
return *o.UsernameOrEmail
}
// GetUsernameOrEmailOk returns a tuple with the UsernameOrEmail field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetUsernameOrEmailOk() (*string, bool) {
if o == nil || IsNil(o.UsernameOrEmail) {
return nil, false
}
return o.UsernameOrEmail, true
}
// HasUsernameOrEmail returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasUsernameOrEmail() bool {
if o != nil && !IsNil(o.UsernameOrEmail) {
return true
}
return false
}
// SetUsernameOrEmail gets a reference to the given string and assigns it to the UsernameOrEmail field.
func (o *PostInstancesRequest) SetUsernameOrEmail(v string) {
o.UsernameOrEmail = &v
}
// GetVersion returns the Version field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetVersion() string {
if o == nil || IsNil(o.Version) {
var ret string
return ret
}
return *o.Version
}
// GetVersionOk returns a tuple with the Version field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetVersionOk() (*string, bool) {
if o == nil || IsNil(o.Version) {
return nil, false
}
return o.Version, true
}
// HasVersion returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasVersion() bool {
if o != nil && !IsNil(o.Version) {
return true
}
return false
}
// SetVersion gets a reference to the given string and assigns it to the Version field.
func (o *PostInstancesRequest) SetVersion(v string) {
o.Version = &v
}
// GetWaitForReadiness returns the WaitForReadiness field value if set, zero value otherwise.
func (o *PostInstancesRequest) GetWaitForReadiness() bool {
if o == nil || IsNil(o.WaitForReadiness) {
var ret bool
return ret
}
return *o.WaitForReadiness
}
// GetWaitForReadinessOk returns a tuple with the WaitForReadiness field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PostInstancesRequest) GetWaitForReadinessOk() (*bool, bool) {
if o == nil || IsNil(o.WaitForReadiness) {
return nil, false
}
return o.WaitForReadiness, true
}
// HasWaitForReadiness returns a boolean if a field has been set.
func (o *PostInstancesRequest) HasWaitForReadiness() bool {
if o != nil && !IsNil(o.WaitForReadiness) {
return true
}
return false
}
// SetWaitForReadiness gets a reference to the given bool and assigns it to the WaitForReadiness field.
func (o *PostInstancesRequest) SetWaitForReadiness(v bool) {
o.WaitForReadiness = &v
}
func (o PostInstancesRequest) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o PostInstancesRequest) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.AdminUserInstance) {
toSerialize["adminUserInstance"] = o.AdminUserInstance
}
if !IsNil(o.Alerts) {
toSerialize["alerts"] = o.Alerts
}
if !IsNil(o.Cluster) {
toSerialize["cluster"] = o.Cluster
}
if !IsNil(o.Description) {
toSerialize["description"] = o.Description
}
if !IsNil(o.Graphite) {
toSerialize["graphite"] = o.Graphite
}
if !IsNil(o.HlInstanceId) {
toSerialize["hlInstanceId"] = o.HlInstanceId
}
if !IsNil(o.Hosted) {
toSerialize["hosted"] = o.Hosted
}
if !IsNil(o.K6OrgId) {
toSerialize["k6OrgId"] = o.K6OrgId
}
if !IsNil(o.Labels) {
toSerialize["labels"] = o.Labels
}
if !IsNil(o.Logs) {
toSerialize["logs"] = o.Logs
}
toSerialize["name"] = o.Name
if !IsNil(o.Org) {
toSerialize["org"] = o.Org
}
if !IsNil(o.Plan) {
toSerialize["plan"] = o.Plan
}
if !IsNil(o.Plugins) {
toSerialize["plugins"] = o.Plugins
}
if !IsNil(o.Prometheus) {
toSerialize["prometheus"] = o.Prometheus
}
if !IsNil(o.PublicInstance) {
toSerialize["publicInstance"] = o.PublicInstance
}
if !IsNil(o.Region) {
toSerialize["region"] = o.Region
}
if !IsNil(o.Slug) {
toSerialize["slug"] = o.Slug
}
if !IsNil(o.Url) {
toSerialize["url"] = o.Url
}
if !IsNil(o.UsernameOrEmail) {
toSerialize["usernameOrEmail"] = o.UsernameOrEmail
}
if !IsNil(o.Version) {
toSerialize["version"] = o.Version
}
if !IsNil(o.WaitForReadiness) {
toSerialize["waitForReadiness"] = o.WaitForReadiness
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *PostInstancesRequest) UnmarshalJSON(data []byte) (err error) {
allProperties := make(map[string]interface{})
err = json.Unmarshal(data, &allProperties)
if err != nil {
return err
}
varPostInstancesRequest := _PostInstancesRequest{}
err = json.Unmarshal(data, &varPostInstancesRequest)
if err != nil {
return err
}
*o = PostInstancesRequest(varPostInstancesRequest)
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(data, &additionalProperties); err == nil {
delete(additionalProperties, "adminUserInstance")
delete(additionalProperties, "alerts")
delete(additionalProperties, "cluster")
delete(additionalProperties, "description")
delete(additionalProperties, "graphite")
delete(additionalProperties, "hlInstanceId")
delete(additionalProperties, "hosted")
delete(additionalProperties, "k6OrgId")
delete(additionalProperties, "labels")
delete(additionalProperties, "logs")
delete(additionalProperties, "name")
delete(additionalProperties, "org")
delete(additionalProperties, "plan")
delete(additionalProperties, "plugins")
delete(additionalProperties, "prometheus")
delete(additionalProperties, "publicInstance")
delete(additionalProperties, "region")
delete(additionalProperties, "slug")
delete(additionalProperties, "url")
delete(additionalProperties, "usernameOrEmail")
delete(additionalProperties, "version")
delete(additionalProperties, "waitForReadiness")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullablePostInstancesRequest struct {
value *PostInstancesRequest
isSet bool
}
func (v NullablePostInstancesRequest) Get() *PostInstancesRequest {
return v.value
}
func (v *NullablePostInstancesRequest) Set(val *PostInstancesRequest) {
v.value = val
v.isSet = true
}
func (v NullablePostInstancesRequest) IsSet() bool {
return v.isSet
}
func (v *NullablePostInstancesRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePostInstancesRequest(val *PostInstancesRequest) *NullablePostInstancesRequest {
return &NullablePostInstancesRequest{value: val, isSet: true}
}
func (v NullablePostInstancesRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePostInstancesRequest) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}