-
Notifications
You must be signed in to change notification settings - Fork 4
/
oas_schemas_gen.go
886 lines (729 loc) · 20.2 KB
/
oas_schemas_gen.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
// Code generated by ogen, DO NOT EDIT.
package tempoapi
import (
"fmt"
"io"
"time"
)
func (s *ErrorStatusCode) Error() string {
return fmt.Sprintf("code %d: %+v", s.StatusCode, s.Response)
}
// Ref: #/components/schemas/AnyValue
// AnyValue represents sum type.
type AnyValue struct {
Type AnyValueType // switch on this field
StringValue StringValue
BoolValue BoolValue
IntValue IntValue
DoubleValue DoubleValue
ArrayValue ArrayValue
KvlistValue KvlistValue
BytesValue BytesValue
}
// AnyValueType is oneOf type of AnyValue.
type AnyValueType string
// Possible values for AnyValueType.
const (
StringValueAnyValue AnyValueType = "StringValue"
BoolValueAnyValue AnyValueType = "BoolValue"
IntValueAnyValue AnyValueType = "IntValue"
DoubleValueAnyValue AnyValueType = "DoubleValue"
ArrayValueAnyValue AnyValueType = "ArrayValue"
KvlistValueAnyValue AnyValueType = "KvlistValue"
BytesValueAnyValue AnyValueType = "BytesValue"
)
// IsStringValue reports whether AnyValue is StringValue.
func (s AnyValue) IsStringValue() bool { return s.Type == StringValueAnyValue }
// IsBoolValue reports whether AnyValue is BoolValue.
func (s AnyValue) IsBoolValue() bool { return s.Type == BoolValueAnyValue }
// IsIntValue reports whether AnyValue is IntValue.
func (s AnyValue) IsIntValue() bool { return s.Type == IntValueAnyValue }
// IsDoubleValue reports whether AnyValue is DoubleValue.
func (s AnyValue) IsDoubleValue() bool { return s.Type == DoubleValueAnyValue }
// IsArrayValue reports whether AnyValue is ArrayValue.
func (s AnyValue) IsArrayValue() bool { return s.Type == ArrayValueAnyValue }
// IsKvlistValue reports whether AnyValue is KvlistValue.
func (s AnyValue) IsKvlistValue() bool { return s.Type == KvlistValueAnyValue }
// IsBytesValue reports whether AnyValue is BytesValue.
func (s AnyValue) IsBytesValue() bool { return s.Type == BytesValueAnyValue }
// SetStringValue sets AnyValue to StringValue.
func (s *AnyValue) SetStringValue(v StringValue) {
s.Type = StringValueAnyValue
s.StringValue = v
}
// GetStringValue returns StringValue and true boolean if AnyValue is StringValue.
func (s AnyValue) GetStringValue() (v StringValue, ok bool) {
if !s.IsStringValue() {
return v, false
}
return s.StringValue, true
}
// NewStringValueAnyValue returns new AnyValue from StringValue.
func NewStringValueAnyValue(v StringValue) AnyValue {
var s AnyValue
s.SetStringValue(v)
return s
}
// SetBoolValue sets AnyValue to BoolValue.
func (s *AnyValue) SetBoolValue(v BoolValue) {
s.Type = BoolValueAnyValue
s.BoolValue = v
}
// GetBoolValue returns BoolValue and true boolean if AnyValue is BoolValue.
func (s AnyValue) GetBoolValue() (v BoolValue, ok bool) {
if !s.IsBoolValue() {
return v, false
}
return s.BoolValue, true
}
// NewBoolValueAnyValue returns new AnyValue from BoolValue.
func NewBoolValueAnyValue(v BoolValue) AnyValue {
var s AnyValue
s.SetBoolValue(v)
return s
}
// SetIntValue sets AnyValue to IntValue.
func (s *AnyValue) SetIntValue(v IntValue) {
s.Type = IntValueAnyValue
s.IntValue = v
}
// GetIntValue returns IntValue and true boolean if AnyValue is IntValue.
func (s AnyValue) GetIntValue() (v IntValue, ok bool) {
if !s.IsIntValue() {
return v, false
}
return s.IntValue, true
}
// NewIntValueAnyValue returns new AnyValue from IntValue.
func NewIntValueAnyValue(v IntValue) AnyValue {
var s AnyValue
s.SetIntValue(v)
return s
}
// SetDoubleValue sets AnyValue to DoubleValue.
func (s *AnyValue) SetDoubleValue(v DoubleValue) {
s.Type = DoubleValueAnyValue
s.DoubleValue = v
}
// GetDoubleValue returns DoubleValue and true boolean if AnyValue is DoubleValue.
func (s AnyValue) GetDoubleValue() (v DoubleValue, ok bool) {
if !s.IsDoubleValue() {
return v, false
}
return s.DoubleValue, true
}
// NewDoubleValueAnyValue returns new AnyValue from DoubleValue.
func NewDoubleValueAnyValue(v DoubleValue) AnyValue {
var s AnyValue
s.SetDoubleValue(v)
return s
}
// SetArrayValue sets AnyValue to ArrayValue.
func (s *AnyValue) SetArrayValue(v ArrayValue) {
s.Type = ArrayValueAnyValue
s.ArrayValue = v
}
// GetArrayValue returns ArrayValue and true boolean if AnyValue is ArrayValue.
func (s AnyValue) GetArrayValue() (v ArrayValue, ok bool) {
if !s.IsArrayValue() {
return v, false
}
return s.ArrayValue, true
}
// NewArrayValueAnyValue returns new AnyValue from ArrayValue.
func NewArrayValueAnyValue(v ArrayValue) AnyValue {
var s AnyValue
s.SetArrayValue(v)
return s
}
// SetKvlistValue sets AnyValue to KvlistValue.
func (s *AnyValue) SetKvlistValue(v KvlistValue) {
s.Type = KvlistValueAnyValue
s.KvlistValue = v
}
// GetKvlistValue returns KvlistValue and true boolean if AnyValue is KvlistValue.
func (s AnyValue) GetKvlistValue() (v KvlistValue, ok bool) {
if !s.IsKvlistValue() {
return v, false
}
return s.KvlistValue, true
}
// NewKvlistValueAnyValue returns new AnyValue from KvlistValue.
func NewKvlistValueAnyValue(v KvlistValue) AnyValue {
var s AnyValue
s.SetKvlistValue(v)
return s
}
// SetBytesValue sets AnyValue to BytesValue.
func (s *AnyValue) SetBytesValue(v BytesValue) {
s.Type = BytesValueAnyValue
s.BytesValue = v
}
// GetBytesValue returns BytesValue and true boolean if AnyValue is BytesValue.
func (s AnyValue) GetBytesValue() (v BytesValue, ok bool) {
if !s.IsBytesValue() {
return v, false
}
return s.BytesValue, true
}
// NewBytesValueAnyValue returns new AnyValue from BytesValue.
func NewBytesValueAnyValue(v BytesValue) AnyValue {
var s AnyValue
s.SetBytesValue(v)
return s
}
// Ref: #/components/schemas/ArrayValue
type ArrayValue struct {
ArrayValue []AnyValue `json:"arrayValue"`
}
// GetArrayValue returns the value of ArrayValue.
func (s *ArrayValue) GetArrayValue() []AnyValue {
return s.ArrayValue
}
// SetArrayValue sets the value of ArrayValue.
func (s *ArrayValue) SetArrayValue(val []AnyValue) {
s.ArrayValue = val
}
type Attributes []KeyValue
// Ref: #/components/schemas/BoolValue
type BoolValue struct {
BoolValue bool `json:"boolValue"`
}
// GetBoolValue returns the value of BoolValue.
func (s *BoolValue) GetBoolValue() bool {
return s.BoolValue
}
// SetBoolValue sets the value of BoolValue.
func (s *BoolValue) SetBoolValue(val bool) {
s.BoolValue = val
}
// Ref: #/components/schemas/BytesValue
type BytesValue struct {
BytesValue []byte `json:"bytesValue"`
}
// GetBytesValue returns the value of BytesValue.
func (s *BytesValue) GetBytesValue() []byte {
return s.BytesValue
}
// SetBytesValue sets the value of BytesValue.
func (s *BytesValue) SetBytesValue(val []byte) {
s.BytesValue = val
}
// Ref: #/components/schemas/DoubleValue
type DoubleValue struct {
DoubleValue float64 `json:"doubleValue"`
}
// GetDoubleValue returns the value of DoubleValue.
func (s *DoubleValue) GetDoubleValue() float64 {
return s.DoubleValue
}
// SetDoubleValue sets the value of DoubleValue.
func (s *DoubleValue) SetDoubleValue(val float64) {
s.DoubleValue = val
}
type EchoOK struct {
Data io.Reader
}
// Read reads data from the Data reader.
//
// Kept to satisfy the io.Reader interface.
func (s EchoOK) Read(p []byte) (n int, err error) {
if s.Data == nil {
return 0, io.EOF
}
return s.Data.Read(p)
}
type Error string
// ErrorStatusCode wraps Error with StatusCode.
type ErrorStatusCode struct {
StatusCode int
Response Error
}
// GetStatusCode returns the value of StatusCode.
func (s *ErrorStatusCode) GetStatusCode() int {
return s.StatusCode
}
// GetResponse returns the value of Response.
func (s *ErrorStatusCode) GetResponse() Error {
return s.Response
}
// SetStatusCode sets the value of StatusCode.
func (s *ErrorStatusCode) SetStatusCode(val int) {
s.StatusCode = val
}
// SetResponse sets the value of Response.
func (s *ErrorStatusCode) SetResponse(val Error) {
s.Response = val
}
// Ref: #/components/schemas/IntValue
type IntValue struct {
IntValue int64 `json:"intValue"`
}
// GetIntValue returns the value of IntValue.
func (s *IntValue) GetIntValue() int64 {
return s.IntValue
}
// SetIntValue sets the value of IntValue.
func (s *IntValue) SetIntValue(val int64) {
s.IntValue = val
}
// Ref: #/components/schemas/KeyValue
type KeyValue struct {
Key string `json:"key"`
Value AnyValue `json:"value"`
}
// GetKey returns the value of Key.
func (s *KeyValue) GetKey() string {
return s.Key
}
// GetValue returns the value of Value.
func (s *KeyValue) GetValue() AnyValue {
return s.Value
}
// SetKey sets the value of Key.
func (s *KeyValue) SetKey(val string) {
s.Key = val
}
// SetValue sets the value of Value.
func (s *KeyValue) SetValue(val AnyValue) {
s.Value = val
}
// Ref: #/components/schemas/KvlistValue
type KvlistValue struct {
KvlistValue []KeyValue `json:"kvlistValue"`
}
// GetKvlistValue returns the value of KvlistValue.
func (s *KvlistValue) GetKvlistValue() []KeyValue {
return s.KvlistValue
}
// SetKvlistValue sets the value of KvlistValue.
func (s *KvlistValue) SetKvlistValue(val []KeyValue) {
s.KvlistValue = val
}
// NewOptDuration returns new OptDuration with value set to v.
func NewOptDuration(v time.Duration) OptDuration {
return OptDuration{
Value: v,
Set: true,
}
}
// OptDuration is optional time.Duration.
type OptDuration struct {
Value time.Duration
Set bool
}
// IsSet returns true if OptDuration was set.
func (o OptDuration) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptDuration) Reset() {
var v time.Duration
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptDuration) SetTo(v time.Duration) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptDuration) Get() (v time.Duration, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptDuration) Or(d time.Duration) time.Duration {
if v, ok := o.Get(); ok {
return v
}
return d
}
// NewOptInt returns new OptInt with value set to v.
func NewOptInt(v int) OptInt {
return OptInt{
Value: v,
Set: true,
}
}
// OptInt is optional int.
type OptInt struct {
Value int
Set bool
}
// IsSet returns true if OptInt was set.
func (o OptInt) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptInt) Reset() {
var v int
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptInt) SetTo(v int) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptInt) Get() (v int, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptInt) Or(d int) int {
if v, ok := o.Get(); ok {
return v
}
return d
}
// NewOptString returns new OptString with value set to v.
func NewOptString(v string) OptString {
return OptString{
Value: v,
Set: true,
}
}
// OptString is optional string.
type OptString struct {
Value string
Set bool
}
// IsSet returns true if OptString was set.
func (o OptString) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptString) Reset() {
var v string
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptString) SetTo(v string) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptString) Get() (v string, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptString) Or(d string) string {
if v, ok := o.Get(); ok {
return v
}
return d
}
// NewOptTempoSpanSet returns new OptTempoSpanSet with value set to v.
func NewOptTempoSpanSet(v TempoSpanSet) OptTempoSpanSet {
return OptTempoSpanSet{
Value: v,
Set: true,
}
}
// OptTempoSpanSet is optional TempoSpanSet.
type OptTempoSpanSet struct {
Value TempoSpanSet
Set bool
}
// IsSet returns true if OptTempoSpanSet was set.
func (o OptTempoSpanSet) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptTempoSpanSet) Reset() {
var v TempoSpanSet
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptTempoSpanSet) SetTo(v TempoSpanSet) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptTempoSpanSet) Get() (v TempoSpanSet, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptTempoSpanSet) Or(d TempoSpanSet) TempoSpanSet {
if v, ok := o.Get(); ok {
return v
}
return d
}
// NewOptUnixSeconds returns new OptUnixSeconds with value set to v.
func NewOptUnixSeconds(v time.Time) OptUnixSeconds {
return OptUnixSeconds{
Value: v,
Set: true,
}
}
// OptUnixSeconds is optional time.Time.
type OptUnixSeconds struct {
Value time.Time
Set bool
}
// IsSet returns true if OptUnixSeconds was set.
func (o OptUnixSeconds) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptUnixSeconds) Reset() {
var v time.Time
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptUnixSeconds) SetTo(v time.Time) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptUnixSeconds) Get() (v time.Time, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptUnixSeconds) Or(d time.Time) time.Time {
if v, ok := o.Get(); ok {
return v
}
return d
}
// Ref: #/components/schemas/StringValue
type StringValue struct {
StringValue string `json:"stringValue"`
}
// GetStringValue returns the value of StringValue.
func (s *StringValue) GetStringValue() string {
return s.StringValue
}
// SetStringValue sets the value of StringValue.
func (s *StringValue) SetStringValue(val string) {
s.StringValue = val
}
// Ref: #/components/schemas/TagNames
type TagNames struct {
TagNames []string `json:"tagNames"`
}
// GetTagNames returns the value of TagNames.
func (s *TagNames) GetTagNames() []string {
return s.TagNames
}
// SetTagNames sets the value of TagNames.
func (s *TagNames) SetTagNames(val []string) {
s.TagNames = val
}
// Ref: #/components/schemas/TagValue
type TagValue struct {
Type string `json:"type"`
Value string `json:"value"`
}
// GetType returns the value of Type.
func (s *TagValue) GetType() string {
return s.Type
}
// GetValue returns the value of Value.
func (s *TagValue) GetValue() string {
return s.Value
}
// SetType sets the value of Type.
func (s *TagValue) SetType(val string) {
s.Type = val
}
// SetValue sets the value of Value.
func (s *TagValue) SetValue(val string) {
s.Value = val
}
// Ref: #/components/schemas/TagValues
type TagValues struct {
TagValues []string `json:"tagValues"`
}
// GetTagValues returns the value of TagValues.
func (s *TagValues) GetTagValues() []string {
return s.TagValues
}
// SetTagValues sets the value of TagValues.
func (s *TagValues) SetTagValues(val []string) {
s.TagValues = val
}
// Ref: #/components/schemas/TagValuesV2
type TagValuesV2 struct {
TagValues []TagValue `json:"tagValues"`
}
// GetTagValues returns the value of TagValues.
func (s *TagValuesV2) GetTagValues() []TagValue {
return s.TagValues
}
// SetTagValues sets the value of TagValues.
func (s *TagValuesV2) SetTagValues(val []TagValue) {
s.TagValues = val
}
// Ref: #/components/schemas/TempoSpan
type TempoSpan struct {
SpanID string `json:"spanID"`
Name OptString `json:"name"`
StartTimeUnixNano time.Time `json:"startTimeUnixNano"`
DurationNanos int64 `json:"durationNanos"`
Attributes Attributes `json:"attributes"`
}
// GetSpanID returns the value of SpanID.
func (s *TempoSpan) GetSpanID() string {
return s.SpanID
}
// GetName returns the value of Name.
func (s *TempoSpan) GetName() OptString {
return s.Name
}
// GetStartTimeUnixNano returns the value of StartTimeUnixNano.
func (s *TempoSpan) GetStartTimeUnixNano() time.Time {
return s.StartTimeUnixNano
}
// GetDurationNanos returns the value of DurationNanos.
func (s *TempoSpan) GetDurationNanos() int64 {
return s.DurationNanos
}
// GetAttributes returns the value of Attributes.
func (s *TempoSpan) GetAttributes() Attributes {
return s.Attributes
}
// SetSpanID sets the value of SpanID.
func (s *TempoSpan) SetSpanID(val string) {
s.SpanID = val
}
// SetName sets the value of Name.
func (s *TempoSpan) SetName(val OptString) {
s.Name = val
}
// SetStartTimeUnixNano sets the value of StartTimeUnixNano.
func (s *TempoSpan) SetStartTimeUnixNano(val time.Time) {
s.StartTimeUnixNano = val
}
// SetDurationNanos sets the value of DurationNanos.
func (s *TempoSpan) SetDurationNanos(val int64) {
s.DurationNanos = val
}
// SetAttributes sets the value of Attributes.
func (s *TempoSpan) SetAttributes(val Attributes) {
s.Attributes = val
}
// Ref: #/components/schemas/TempoSpanSet
type TempoSpanSet struct {
Spans []TempoSpan `json:"spans"`
Matched OptInt `json:"matched"`
Attributes Attributes `json:"attributes"`
}
// GetSpans returns the value of Spans.
func (s *TempoSpanSet) GetSpans() []TempoSpan {
return s.Spans
}
// GetMatched returns the value of Matched.
func (s *TempoSpanSet) GetMatched() OptInt {
return s.Matched
}
// GetAttributes returns the value of Attributes.
func (s *TempoSpanSet) GetAttributes() Attributes {
return s.Attributes
}
// SetSpans sets the value of Spans.
func (s *TempoSpanSet) SetSpans(val []TempoSpan) {
s.Spans = val
}
// SetMatched sets the value of Matched.
func (s *TempoSpanSet) SetMatched(val OptInt) {
s.Matched = val
}
// SetAttributes sets the value of Attributes.
func (s *TempoSpanSet) SetAttributes(val Attributes) {
s.Attributes = val
}
type TraceByID struct {
Data io.Reader
}
// Read reads data from the Data reader.
//
// Kept to satisfy the io.Reader interface.
func (s TraceByID) Read(p []byte) (n int, err error) {
if s.Data == nil {
return 0, io.EOF
}
return s.Data.Read(p)
}
func (*TraceByID) traceByIDRes() {}
// Ref: #/components/responses/TraceByIDNotFound
type TraceByIDNotFound struct{}
func (*TraceByIDNotFound) traceByIDRes() {}
// Ref: #/components/schemas/TraceSearchMetadata
type TraceSearchMetadata struct {
TraceID string `json:"traceID"`
RootServiceName OptString `json:"rootServiceName"`
RootTraceName OptString `json:"rootTraceName"`
StartTimeUnixNano time.Time `json:"startTimeUnixNano"`
DurationMs OptInt `json:"durationMs"`
SpanSet OptTempoSpanSet `json:"spanSet"`
}
// GetTraceID returns the value of TraceID.
func (s *TraceSearchMetadata) GetTraceID() string {
return s.TraceID
}
// GetRootServiceName returns the value of RootServiceName.
func (s *TraceSearchMetadata) GetRootServiceName() OptString {
return s.RootServiceName
}
// GetRootTraceName returns the value of RootTraceName.
func (s *TraceSearchMetadata) GetRootTraceName() OptString {
return s.RootTraceName
}
// GetStartTimeUnixNano returns the value of StartTimeUnixNano.
func (s *TraceSearchMetadata) GetStartTimeUnixNano() time.Time {
return s.StartTimeUnixNano
}
// GetDurationMs returns the value of DurationMs.
func (s *TraceSearchMetadata) GetDurationMs() OptInt {
return s.DurationMs
}
// GetSpanSet returns the value of SpanSet.
func (s *TraceSearchMetadata) GetSpanSet() OptTempoSpanSet {
return s.SpanSet
}
// SetTraceID sets the value of TraceID.
func (s *TraceSearchMetadata) SetTraceID(val string) {
s.TraceID = val
}
// SetRootServiceName sets the value of RootServiceName.
func (s *TraceSearchMetadata) SetRootServiceName(val OptString) {
s.RootServiceName = val
}
// SetRootTraceName sets the value of RootTraceName.
func (s *TraceSearchMetadata) SetRootTraceName(val OptString) {
s.RootTraceName = val
}
// SetStartTimeUnixNano sets the value of StartTimeUnixNano.
func (s *TraceSearchMetadata) SetStartTimeUnixNano(val time.Time) {
s.StartTimeUnixNano = val
}
// SetDurationMs sets the value of DurationMs.
func (s *TraceSearchMetadata) SetDurationMs(val OptInt) {
s.DurationMs = val
}
// SetSpanSet sets the value of SpanSet.
func (s *TraceSearchMetadata) SetSpanSet(val OptTempoSpanSet) {
s.SpanSet = val
}
// Ref: #/components/schemas/Traces
type Traces struct {
Traces []TraceSearchMetadata `json:"traces"`
}
// GetTraces returns the value of Traces.
func (s *Traces) GetTraces() []TraceSearchMetadata {
return s.Traces
}
// SetTraces sets the value of Traces.
func (s *Traces) SetTraces(val []TraceSearchMetadata) {
s.Traces = val
}