-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_universe_schematics_schematic_id_responses.go
824 lines (645 loc) · 28.3 KB
/
get_universe_schematics_schematic_id_responses.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
// Code generated by go-swagger; DO NOT EDIT.
package planetary_interaction
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"fmt"
"io"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
"github.com/ferocious-space/eveapi/models"
)
// GetUniverseSchematicsSchematicIDReader is a Reader for the GetUniverseSchematicsSchematicID structure.
type GetUniverseSchematicsSchematicIDReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetUniverseSchematicsSchematicIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetUniverseSchematicsSchematicIDOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 304:
result := NewGetUniverseSchematicsSchematicIDNotModified()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 400:
result := NewGetUniverseSchematicsSchematicIDBadRequest()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewGetUniverseSchematicsSchematicIDNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 420:
result := NewGetUniverseSchematicsSchematicIDEnhanceYourCalm()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewGetUniverseSchematicsSchematicIDInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 503:
result := NewGetUniverseSchematicsSchematicIDServiceUnavailable()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 504:
result := NewGetUniverseSchematicsSchematicIDGatewayTimeout()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[GET /v1/universe/schematics/{schematic_id}/] get_universe_schematics_schematic_id", response, response.Code())
}
}
// NewGetUniverseSchematicsSchematicIDOK creates a GetUniverseSchematicsSchematicIDOK with default headers values
func NewGetUniverseSchematicsSchematicIDOK() *GetUniverseSchematicsSchematicIDOK {
return &GetUniverseSchematicsSchematicIDOK{}
}
/*
GetUniverseSchematicsSchematicIDOK describes a response with status code 200, with default header values.
Public data about a schematic
*/
type GetUniverseSchematicsSchematicIDOK struct {
/* The caching mechanism used
*/
CacheControl string
/* RFC7232 compliant entity tag
*/
ETag string
/* RFC7231 formatted datetime string
*/
Expires string
/* RFC7231 formatted datetime string
*/
LastModified string
Payload *GetUniverseSchematicsSchematicIDOKBody
}
// IsSuccess returns true when this get universe schematics schematic Id o k response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this get universe schematics schematic Id o k response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id o k response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDOK) IsClientError() bool {
return false
}
// IsServerError returns true when this get universe schematics schematic Id o k response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDOK) IsServerError() bool {
return false
}
// IsCode returns true when this get universe schematics schematic Id o k response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the get universe schematics schematic Id o k response
func (o *GetUniverseSchematicsSchematicIDOK) Code() int {
return 200
}
func (o *GetUniverseSchematicsSchematicIDOK) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdOK %+v", 200, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDOK) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdOK %+v", 200, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDOK) GetPayload() *GetUniverseSchematicsSchematicIDOKBody {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Cache-Control
hdrCacheControl := response.GetHeader("Cache-Control")
if hdrCacheControl != "" {
o.CacheControl = hdrCacheControl
}
// hydrates response header ETag
hdrETag := response.GetHeader("ETag")
if hdrETag != "" {
o.ETag = hdrETag
}
// hydrates response header Expires
hdrExpires := response.GetHeader("Expires")
if hdrExpires != "" {
o.Expires = hdrExpires
}
// hydrates response header Last-Modified
hdrLastModified := response.GetHeader("Last-Modified")
if hdrLastModified != "" {
o.LastModified = hdrLastModified
}
o.Payload = new(GetUniverseSchematicsSchematicIDOKBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUniverseSchematicsSchematicIDNotModified creates a GetUniverseSchematicsSchematicIDNotModified with default headers values
func NewGetUniverseSchematicsSchematicIDNotModified() *GetUniverseSchematicsSchematicIDNotModified {
return &GetUniverseSchematicsSchematicIDNotModified{}
}
/*
GetUniverseSchematicsSchematicIDNotModified describes a response with status code 304, with default header values.
Not modified
*/
type GetUniverseSchematicsSchematicIDNotModified struct {
/* The caching mechanism used
*/
CacheControl string
/* RFC7232 compliant entity tag
*/
ETag string
/* RFC7231 formatted datetime string
*/
Expires string
/* RFC7231 formatted datetime string
*/
LastModified string
}
// IsSuccess returns true when this get universe schematics schematic Id not modified response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDNotModified) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id not modified response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDNotModified) IsRedirect() bool {
return true
}
// IsClientError returns true when this get universe schematics schematic Id not modified response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDNotModified) IsClientError() bool {
return false
}
// IsServerError returns true when this get universe schematics schematic Id not modified response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDNotModified) IsServerError() bool {
return false
}
// IsCode returns true when this get universe schematics schematic Id not modified response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDNotModified) IsCode(code int) bool {
return code == 304
}
// Code gets the status code for the get universe schematics schematic Id not modified response
func (o *GetUniverseSchematicsSchematicIDNotModified) Code() int {
return 304
}
func (o *GetUniverseSchematicsSchematicIDNotModified) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdNotModified ", 304)
}
func (o *GetUniverseSchematicsSchematicIDNotModified) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdNotModified ", 304)
}
func (o *GetUniverseSchematicsSchematicIDNotModified) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Cache-Control
hdrCacheControl := response.GetHeader("Cache-Control")
if hdrCacheControl != "" {
o.CacheControl = hdrCacheControl
}
// hydrates response header ETag
hdrETag := response.GetHeader("ETag")
if hdrETag != "" {
o.ETag = hdrETag
}
// hydrates response header Expires
hdrExpires := response.GetHeader("Expires")
if hdrExpires != "" {
o.Expires = hdrExpires
}
// hydrates response header Last-Modified
hdrLastModified := response.GetHeader("Last-Modified")
if hdrLastModified != "" {
o.LastModified = hdrLastModified
}
return nil
}
// NewGetUniverseSchematicsSchematicIDBadRequest creates a GetUniverseSchematicsSchematicIDBadRequest with default headers values
func NewGetUniverseSchematicsSchematicIDBadRequest() *GetUniverseSchematicsSchematicIDBadRequest {
return &GetUniverseSchematicsSchematicIDBadRequest{}
}
/*
GetUniverseSchematicsSchematicIDBadRequest describes a response with status code 400, with default header values.
Bad request
*/
type GetUniverseSchematicsSchematicIDBadRequest struct {
Payload *models.BadRequest
}
// IsSuccess returns true when this get universe schematics schematic Id bad request response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDBadRequest) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id bad request response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDBadRequest) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id bad request response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDBadRequest) IsClientError() bool {
return true
}
// IsServerError returns true when this get universe schematics schematic Id bad request response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDBadRequest) IsServerError() bool {
return false
}
// IsCode returns true when this get universe schematics schematic Id bad request response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDBadRequest) IsCode(code int) bool {
return code == 400
}
// Code gets the status code for the get universe schematics schematic Id bad request response
func (o *GetUniverseSchematicsSchematicIDBadRequest) Code() int {
return 400
}
func (o *GetUniverseSchematicsSchematicIDBadRequest) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdBadRequest %+v", 400, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDBadRequest) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdBadRequest %+v", 400, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDBadRequest) GetPayload() *models.BadRequest {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.BadRequest)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUniverseSchematicsSchematicIDNotFound creates a GetUniverseSchematicsSchematicIDNotFound with default headers values
func NewGetUniverseSchematicsSchematicIDNotFound() *GetUniverseSchematicsSchematicIDNotFound {
return &GetUniverseSchematicsSchematicIDNotFound{}
}
/*
GetUniverseSchematicsSchematicIDNotFound describes a response with status code 404, with default header values.
Schematic not found
*/
type GetUniverseSchematicsSchematicIDNotFound struct {
Payload *GetUniverseSchematicsSchematicIDNotFoundBody
}
// IsSuccess returns true when this get universe schematics schematic Id not found response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id not found response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id not found response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this get universe schematics schematic Id not found response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this get universe schematics schematic Id not found response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the get universe schematics schematic Id not found response
func (o *GetUniverseSchematicsSchematicIDNotFound) Code() int {
return 404
}
func (o *GetUniverseSchematicsSchematicIDNotFound) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdNotFound %+v", 404, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDNotFound) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdNotFound %+v", 404, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDNotFound) GetPayload() *GetUniverseSchematicsSchematicIDNotFoundBody {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(GetUniverseSchematicsSchematicIDNotFoundBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUniverseSchematicsSchematicIDEnhanceYourCalm creates a GetUniverseSchematicsSchematicIDEnhanceYourCalm with default headers values
func NewGetUniverseSchematicsSchematicIDEnhanceYourCalm() *GetUniverseSchematicsSchematicIDEnhanceYourCalm {
return &GetUniverseSchematicsSchematicIDEnhanceYourCalm{}
}
/*
GetUniverseSchematicsSchematicIDEnhanceYourCalm describes a response with status code 420, with default header values.
Error limited
*/
type GetUniverseSchematicsSchematicIDEnhanceYourCalm struct {
Payload *models.ErrorLimited
}
// IsSuccess returns true when this get universe schematics schematic Id enhance your calm response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id enhance your calm response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id enhance your calm response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) IsClientError() bool {
return true
}
// IsServerError returns true when this get universe schematics schematic Id enhance your calm response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) IsServerError() bool {
return false
}
// IsCode returns true when this get universe schematics schematic Id enhance your calm response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) IsCode(code int) bool {
return code == 420
}
// Code gets the status code for the get universe schematics schematic Id enhance your calm response
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) Code() int {
return 420
}
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdEnhanceYourCalm %+v", 420, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdEnhanceYourCalm %+v", 420, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) GetPayload() *models.ErrorLimited {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDEnhanceYourCalm) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.ErrorLimited)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUniverseSchematicsSchematicIDInternalServerError creates a GetUniverseSchematicsSchematicIDInternalServerError with default headers values
func NewGetUniverseSchematicsSchematicIDInternalServerError() *GetUniverseSchematicsSchematicIDInternalServerError {
return &GetUniverseSchematicsSchematicIDInternalServerError{}
}
/*
GetUniverseSchematicsSchematicIDInternalServerError describes a response with status code 500, with default header values.
Internal server error
*/
type GetUniverseSchematicsSchematicIDInternalServerError struct {
Payload *models.InternalServerError
}
// IsSuccess returns true when this get universe schematics schematic Id internal server error response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id internal server error response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id internal server error response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this get universe schematics schematic Id internal server error response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this get universe schematics schematic Id internal server error response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the get universe schematics schematic Id internal server error response
func (o *GetUniverseSchematicsSchematicIDInternalServerError) Code() int {
return 500
}
func (o *GetUniverseSchematicsSchematicIDInternalServerError) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdInternalServerError %+v", 500, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDInternalServerError) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdInternalServerError %+v", 500, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDInternalServerError) GetPayload() *models.InternalServerError {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.InternalServerError)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUniverseSchematicsSchematicIDServiceUnavailable creates a GetUniverseSchematicsSchematicIDServiceUnavailable with default headers values
func NewGetUniverseSchematicsSchematicIDServiceUnavailable() *GetUniverseSchematicsSchematicIDServiceUnavailable {
return &GetUniverseSchematicsSchematicIDServiceUnavailable{}
}
/*
GetUniverseSchematicsSchematicIDServiceUnavailable describes a response with status code 503, with default header values.
Service unavailable
*/
type GetUniverseSchematicsSchematicIDServiceUnavailable struct {
Payload *models.ServiceUnavailable
}
// IsSuccess returns true when this get universe schematics schematic Id service unavailable response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id service unavailable response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id service unavailable response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) IsClientError() bool {
return false
}
// IsServerError returns true when this get universe schematics schematic Id service unavailable response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) IsServerError() bool {
return true
}
// IsCode returns true when this get universe schematics schematic Id service unavailable response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) IsCode(code int) bool {
return code == 503
}
// Code gets the status code for the get universe schematics schematic Id service unavailable response
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) Code() int {
return 503
}
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdServiceUnavailable %+v", 503, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdServiceUnavailable %+v", 503, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) GetPayload() *models.ServiceUnavailable {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDServiceUnavailable) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.ServiceUnavailable)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUniverseSchematicsSchematicIDGatewayTimeout creates a GetUniverseSchematicsSchematicIDGatewayTimeout with default headers values
func NewGetUniverseSchematicsSchematicIDGatewayTimeout() *GetUniverseSchematicsSchematicIDGatewayTimeout {
return &GetUniverseSchematicsSchematicIDGatewayTimeout{}
}
/*
GetUniverseSchematicsSchematicIDGatewayTimeout describes a response with status code 504, with default header values.
Gateway timeout
*/
type GetUniverseSchematicsSchematicIDGatewayTimeout struct {
Payload *models.GatewayTimeout
}
// IsSuccess returns true when this get universe schematics schematic Id gateway timeout response has a 2xx status code
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get universe schematics schematic Id gateway timeout response has a 3xx status code
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) IsRedirect() bool {
return false
}
// IsClientError returns true when this get universe schematics schematic Id gateway timeout response has a 4xx status code
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) IsClientError() bool {
return false
}
// IsServerError returns true when this get universe schematics schematic Id gateway timeout response has a 5xx status code
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) IsServerError() bool {
return true
}
// IsCode returns true when this get universe schematics schematic Id gateway timeout response a status code equal to that given
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) IsCode(code int) bool {
return code == 504
}
// Code gets the status code for the get universe schematics schematic Id gateway timeout response
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) Code() int {
return 504
}
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) Error() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdGatewayTimeout %+v", 504, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) String() string {
return fmt.Sprintf("[GET /v1/universe/schematics/{schematic_id}/][%d] getUniverseSchematicsSchematicIdGatewayTimeout %+v", 504, o.Payload)
}
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) GetPayload() *models.GatewayTimeout {
return o.Payload
}
func (o *GetUniverseSchematicsSchematicIDGatewayTimeout) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.GatewayTimeout)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
/*
GetUniverseSchematicsSchematicIDNotFoundBody get_universe_schematics_schematic_id_not_found
//
// Schematic not found
swagger:model GetUniverseSchematicsSchematicIDNotFoundBody
*/
type GetUniverseSchematicsSchematicIDNotFoundBody struct {
// get_universe_schematics_schematic_id_error
//
// error message
Error string `json:"error,omitempty"`
}
// Validate validates this get universe schematics schematic ID not found body
func (o *GetUniverseSchematicsSchematicIDNotFoundBody) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this get universe schematics schematic ID not found body based on context it is used
func (o *GetUniverseSchematicsSchematicIDNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (o *GetUniverseSchematicsSchematicIDNotFoundBody) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *GetUniverseSchematicsSchematicIDNotFoundBody) UnmarshalBinary(b []byte) error {
var res GetUniverseSchematicsSchematicIDNotFoundBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*
GetUniverseSchematicsSchematicIDOKBody get_universe_schematics_schematic_id_ok
//
// 200 ok object
swagger:model GetUniverseSchematicsSchematicIDOKBody
*/
type GetUniverseSchematicsSchematicIDOKBody struct {
// get_universe_schematics_schematic_id_cycle_time
//
// Time in seconds to process a run
// Required: true
CycleTime *int32 `json:"cycle_time"`
// get_universe_schematics_schematic_id_schematic_name
//
// schematic_name string
// Required: true
SchematicName *string `json:"schematic_name"`
}
// Validate validates this get universe schematics schematic ID o k body
func (o *GetUniverseSchematicsSchematicIDOKBody) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateCycleTime(formats); err != nil {
res = append(res, err)
}
if err := o.validateSchematicName(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (o *GetUniverseSchematicsSchematicIDOKBody) validateCycleTime(formats strfmt.Registry) error {
if err := validate.Required("getUniverseSchematicsSchematicIdOK"+"."+"cycle_time", "body", o.CycleTime); err != nil {
return err
}
return nil
}
func (o *GetUniverseSchematicsSchematicIDOKBody) validateSchematicName(formats strfmt.Registry) error {
if err := validate.Required("getUniverseSchematicsSchematicIdOK"+"."+"schematic_name", "body", o.SchematicName); err != nil {
return err
}
return nil
}
// ContextValidate validates this get universe schematics schematic ID o k body based on context it is used
func (o *GetUniverseSchematicsSchematicIDOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (o *GetUniverseSchematicsSchematicIDOKBody) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *GetUniverseSchematicsSchematicIDOKBody) UnmarshalBinary(b []byte) error {
var res GetUniverseSchematicsSchematicIDOKBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}