-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflex.pb.cc
More file actions
11411 lines (10684 loc) · 485 KB
/
Copy pathflex.pb.cc
File metadata and controls
11411 lines (10684 loc) · 485 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
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
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: flex.proto
// Protobuf C++ Version: 5.29.2
#include "flex.pb.h"
#include <algorithm>
#include <type_traits>
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
#include "google/protobuf/reflection_ops.h"
#include "google/protobuf/wire_format.h"
// @@protoc_insertion_point(includes)
// Must be included last.
#include "google/protobuf/port_def.inc"
PROTOBUF_PRAGMA_INIT_SEG
namespace _pb = ::google::protobuf;
namespace _pbi = ::google::protobuf::internal;
namespace _fl = ::google::protobuf::internal::field_layout;
namespace flex {
inline constexpr WorkRequest_Segment::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: offset_start_{::int64_t{0}},
offset_stop_{::int64_t{0}},
parts_start_{0},
parts_stop_{0},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR WorkRequest_Segment::WorkRequest_Segment(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct WorkRequest_SegmentDefaultTypeInternal {
PROTOBUF_CONSTEXPR WorkRequest_SegmentDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~WorkRequest_SegmentDefaultTypeInternal() {}
union {
WorkRequest_Segment _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WorkRequest_SegmentDefaultTypeInternal _WorkRequest_Segment_default_instance_;
inline constexpr Work_Status::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: message_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
state_{static_cast< ::flex::Work_State >(0)},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR Work_Status::Work_Status(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct Work_StatusDefaultTypeInternal {
PROTOBUF_CONSTEXPR Work_StatusDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~Work_StatusDefaultTypeInternal() {}
union {
Work_Status _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Work_StatusDefaultTypeInternal _Work_Status_default_instance_;
inline constexpr Work_Part::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: entity_tag_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
checksum_sha256_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
offset_start_{::int64_t{0}},
offset_stop_{::int64_t{0}},
part_number_{0},
completed_{false},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR Work_Part::Work_Part(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct Work_PartDefaultTypeInternal {
PROTOBUF_CONSTEXPR Work_PartDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~Work_PartDefaultTypeInternal() {}
union {
Work_Part _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Work_PartDefaultTypeInternal _Work_Part_default_instance_;
inline constexpr UpdateWorkRequest::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: job_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
request_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
new_state_{static_cast< ::flex::UpdateWorkRequest_NewState >(0)},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR UpdateWorkRequest::UpdateWorkRequest(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct UpdateWorkRequestDefaultTypeInternal {
PROTOBUF_CONSTEXPR UpdateWorkRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~UpdateWorkRequestDefaultTypeInternal() {}
union {
UpdateWorkRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateWorkRequestDefaultTypeInternal _UpdateWorkRequest_default_instance_;
inline constexpr UpdateConfigResponse::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: message_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
result_{static_cast< ::flex::UpdateConfigResponse_Result >(0)},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR UpdateConfigResponse::UpdateConfigResponse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct UpdateConfigResponseDefaultTypeInternal {
PROTOBUF_CONSTEXPR UpdateConfigResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~UpdateConfigResponseDefaultTypeInternal() {}
union {
UpdateConfigResponse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateConfigResponseDefaultTypeInternal _UpdateConfigResponse_default_instance_;
template <typename>
PROTOBUF_CONSTEXPR SyncJob_MetadataEntry_DoNotUse::SyncJob_MetadataEntry_DoNotUse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: SyncJob_MetadataEntry_DoNotUse::MapEntry(_class_data_.base()){}
#else // PROTOBUF_CUSTOM_VTABLE
: SyncJob_MetadataEntry_DoNotUse::MapEntry() {
}
#endif // PROTOBUF_CUSTOM_VTABLE
struct SyncJob_MetadataEntry_DoNotUseDefaultTypeInternal {
PROTOBUF_CONSTEXPR SyncJob_MetadataEntry_DoNotUseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~SyncJob_MetadataEntry_DoNotUseDefaultTypeInternal() {}
union {
SyncJob_MetadataEntry_DoNotUse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SyncJob_MetadataEntry_DoNotUseDefaultTypeInternal _SyncJob_MetadataEntry_DoNotUse_default_instance_;
inline constexpr RemoteStorageTarget_S3::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: endpoint_url_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
partition_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
region_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
bucket_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
access_key_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
secret_key_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR RemoteStorageTarget_S3::RemoteStorageTarget_S3(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct RemoteStorageTarget_S3DefaultTypeInternal {
PROTOBUF_CONSTEXPR RemoteStorageTarget_S3DefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~RemoteStorageTarget_S3DefaultTypeInternal() {}
union {
RemoteStorageTarget_S3 _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RemoteStorageTarget_S3DefaultTypeInternal _RemoteStorageTarget_S3_default_instance_;
inline constexpr RemoteStorageTarget_Policies::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: fast_start_max_size_{::int64_t{0}},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR RemoteStorageTarget_Policies::RemoteStorageTarget_Policies(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct RemoteStorageTarget_PoliciesDefaultTypeInternal {
PROTOBUF_CONSTEXPR RemoteStorageTarget_PoliciesDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~RemoteStorageTarget_PoliciesDefaultTypeInternal() {}
union {
RemoteStorageTarget_Policies _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RemoteStorageTarget_PoliciesDefaultTypeInternal _RemoteStorageTarget_Policies_default_instance_;
inline constexpr RemoteStorageTarget_POSIX::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR RemoteStorageTarget_POSIX::RemoteStorageTarget_POSIX(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct RemoteStorageTarget_POSIXDefaultTypeInternal {
PROTOBUF_CONSTEXPR RemoteStorageTarget_POSIXDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~RemoteStorageTarget_POSIXDefaultTypeInternal() {}
union {
RemoteStorageTarget_POSIX _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RemoteStorageTarget_POSIXDefaultTypeInternal _RemoteStorageTarget_POSIX_default_instance_;
template <typename>
PROTOBUF_CONSTEXPR JobRequestCfg_MetadataEntry_DoNotUse::JobRequestCfg_MetadataEntry_DoNotUse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: JobRequestCfg_MetadataEntry_DoNotUse::MapEntry(_class_data_.base()){}
#else // PROTOBUF_CUSTOM_VTABLE
: JobRequestCfg_MetadataEntry_DoNotUse::MapEntry() {
}
#endif // PROTOBUF_CUSTOM_VTABLE
struct JobRequestCfg_MetadataEntry_DoNotUseDefaultTypeInternal {
PROTOBUF_CONSTEXPR JobRequestCfg_MetadataEntry_DoNotUseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~JobRequestCfg_MetadataEntry_DoNotUseDefaultTypeInternal() {}
union {
JobRequestCfg_MetadataEntry_DoNotUse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 JobRequestCfg_MetadataEntry_DoNotUseDefaultTypeInternal _JobRequestCfg_MetadataEntry_DoNotUse_default_instance_;
template <typename>
PROTOBUF_CONSTEXPR JobLockedInfo_UserXattrsEntry_DoNotUse::JobLockedInfo_UserXattrsEntry_DoNotUse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: JobLockedInfo_UserXattrsEntry_DoNotUse::MapEntry(_class_data_.base()){}
#else // PROTOBUF_CUSTOM_VTABLE
: JobLockedInfo_UserXattrsEntry_DoNotUse::MapEntry() {
}
#endif // PROTOBUF_CUSTOM_VTABLE
struct JobLockedInfo_UserXattrsEntry_DoNotUseDefaultTypeInternal {
PROTOBUF_CONSTEXPR JobLockedInfo_UserXattrsEntry_DoNotUseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~JobLockedInfo_UserXattrsEntry_DoNotUseDefaultTypeInternal() {}
union {
JobLockedInfo_UserXattrsEntry_DoNotUse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 JobLockedInfo_UserXattrsEntry_DoNotUseDefaultTypeInternal _JobLockedInfo_UserXattrsEntry_DoNotUse_default_instance_;
template <typename>
PROTOBUF_CONSTEXPR JobLockedInfo_RemoteUserXattrsEntry_DoNotUse::JobLockedInfo_RemoteUserXattrsEntry_DoNotUse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: JobLockedInfo_RemoteUserXattrsEntry_DoNotUse::MapEntry(_class_data_.base()){}
#else // PROTOBUF_CUSTOM_VTABLE
: JobLockedInfo_RemoteUserXattrsEntry_DoNotUse::MapEntry() {
}
#endif // PROTOBUF_CUSTOM_VTABLE
struct JobLockedInfo_RemoteUserXattrsEntry_DoNotUseDefaultTypeInternal {
PROTOBUF_CONSTEXPR JobLockedInfo_RemoteUserXattrsEntry_DoNotUseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~JobLockedInfo_RemoteUserXattrsEntry_DoNotUseDefaultTypeInternal() {}
union {
JobLockedInfo_RemoteUserXattrsEntry_DoNotUse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 JobLockedInfo_RemoteUserXattrsEntry_DoNotUseDefaultTypeInternal _JobLockedInfo_RemoteUserXattrsEntry_DoNotUse_default_instance_;
inline constexpr HeartbeatRequest::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: include_stats_{false},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR HeartbeatRequest::HeartbeatRequest(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct HeartbeatRequestDefaultTypeInternal {
PROTOBUF_CONSTEXPR HeartbeatRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~HeartbeatRequestDefaultTypeInternal() {}
union {
HeartbeatRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HeartbeatRequestDefaultTypeInternal _HeartbeatRequest_default_instance_;
inline constexpr BulkUpdateWorkResponse::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: message_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
success_{false},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR BulkUpdateWorkResponse::BulkUpdateWorkResponse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct BulkUpdateWorkResponseDefaultTypeInternal {
PROTOBUF_CONSTEXPR BulkUpdateWorkResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~BulkUpdateWorkResponseDefaultTypeInternal() {}
union {
BulkUpdateWorkResponse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BulkUpdateWorkResponseDefaultTypeInternal _BulkUpdateWorkResponse_default_instance_;
inline constexpr BulkUpdateWorkRequest::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: new_state_{static_cast< ::flex::BulkUpdateWorkRequest_NewState >(0)},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR BulkUpdateWorkRequest::BulkUpdateWorkRequest(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct BulkUpdateWorkRequestDefaultTypeInternal {
PROTOBUF_CONSTEXPR BulkUpdateWorkRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~BulkUpdateWorkRequestDefaultTypeInternal() {}
union {
BulkUpdateWorkRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BulkUpdateWorkRequestDefaultTypeInternal _BulkUpdateWorkRequest_default_instance_;
inline constexpr BeeRemoteNode::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
address_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
mgmtd_address_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
mgmtd_tls_cert_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
auth_secret_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
mgmtd_tls_disable_verification_{false},
mgmtd_tls_disable_{false},
mgmtd_use_proxy_{false},
auth_disable_{false},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR BeeRemoteNode::BeeRemoteNode(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct BeeRemoteNodeDefaultTypeInternal {
PROTOBUF_CONSTEXPR BeeRemoteNodeDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~BeeRemoteNodeDefaultTypeInternal() {}
union {
BeeRemoteNode _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BeeRemoteNodeDefaultTypeInternal _BeeRemoteNode_default_instance_;
inline constexpr Work::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
parts_{},
path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
job_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
request_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
status_{nullptr},
job_builder_{false} {}
template <typename>
PROTOBUF_CONSTEXPR Work::Work(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct WorkDefaultTypeInternal {
PROTOBUF_CONSTEXPR WorkDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~WorkDefaultTypeInternal() {}
union {
Work _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WorkDefaultTypeInternal _Work_default_instance_;
inline constexpr RemoteStorageTarget_Azure::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
account_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
s3_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR RemoteStorageTarget_Azure::RemoteStorageTarget_Azure(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct RemoteStorageTarget_AzureDefaultTypeInternal {
PROTOBUF_CONSTEXPR RemoteStorageTarget_AzureDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~RemoteStorageTarget_AzureDefaultTypeInternal() {}
union {
RemoteStorageTarget_Azure _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RemoteStorageTarget_AzureDefaultTypeInternal _RemoteStorageTarget_Azure_default_instance_;
inline constexpr NodeStats::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
timestamp_{nullptr},
active_requests_{::int64_t{0}} {}
template <typename>
PROTOBUF_CONSTEXPR NodeStats::NodeStats(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct NodeStatsDefaultTypeInternal {
PROTOBUF_CONSTEXPR NodeStatsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~NodeStatsDefaultTypeInternal() {}
union {
NodeStats _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 NodeStatsDefaultTypeInternal _NodeStats_default_instance_;
inline constexpr JobLockedInfo::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
user_xattrs_{},
remote_user_xattrs_{},
stub_url_path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
externalid_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
mtime_{nullptr},
remote_mtime_{nullptr},
read_write_locked_{false},
exists_{false},
mode_{0u},
size_{::int64_t{0}},
remote_size_{::int64_t{0}},
stub_url_rst_id_{0u} {}
template <typename>
PROTOBUF_CONSTEXPR JobLockedInfo::JobLockedInfo(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct JobLockedInfoDefaultTypeInternal {
PROTOBUF_CONSTEXPR JobLockedInfoDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~JobLockedInfoDefaultTypeInternal() {}
union {
JobLockedInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 JobLockedInfoDefaultTypeInternal _JobLockedInfo_default_instance_;
inline constexpr UpdateWorkResponse::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
work_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR UpdateWorkResponse::UpdateWorkResponse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct UpdateWorkResponseDefaultTypeInternal {
PROTOBUF_CONSTEXPR UpdateWorkResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~UpdateWorkResponseDefaultTypeInternal() {}
union {
UpdateWorkResponse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateWorkResponseDefaultTypeInternal _UpdateWorkResponse_default_instance_;
inline constexpr SyncJob::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
metadata_{},
remote_path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
tagging_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
locked_info_{nullptr},
operation_{static_cast< ::flex::SyncJob_Operation >(0)},
overwrite_{false},
flatten_{false},
update_{false} {}
template <typename>
PROTOBUF_CONSTEXPR SyncJob::SyncJob(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct SyncJobDefaultTypeInternal {
PROTOBUF_CONSTEXPR SyncJobDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~SyncJobDefaultTypeInternal() {}
union {
SyncJob _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SyncJobDefaultTypeInternal _SyncJob_default_instance_;
inline constexpr SubmitWorkResponse::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
work_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR SubmitWorkResponse::SubmitWorkResponse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct SubmitWorkResponseDefaultTypeInternal {
PROTOBUF_CONSTEXPR SubmitWorkResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~SubmitWorkResponseDefaultTypeInternal() {}
union {
SubmitWorkResponse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SubmitWorkResponseDefaultTypeInternal _SubmitWorkResponse_default_instance_;
inline constexpr RemoteStorageTarget::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
name_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
policies_{nullptr},
id_{0u},
type_{},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR RemoteStorageTarget::RemoteStorageTarget(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct RemoteStorageTargetDefaultTypeInternal {
PROTOBUF_CONSTEXPR RemoteStorageTargetDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~RemoteStorageTargetDefaultTypeInternal() {}
union {
RemoteStorageTarget _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RemoteStorageTargetDefaultTypeInternal _RemoteStorageTarget_default_instance_;
inline constexpr JobRequestCfg::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
metadata_{},
path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
remotepath_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
tagging_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
locked_info_{nullptr},
remotestoragetarget_{0u},
download_{false},
stub_local_{false},
overwrite_{false},
flatten_{false},
force_{false},
update_{false},
enable_xattr_{false} {}
template <typename>
PROTOBUF_CONSTEXPR JobRequestCfg::JobRequestCfg(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct JobRequestCfgDefaultTypeInternal {
PROTOBUF_CONSTEXPR JobRequestCfgDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~JobRequestCfgDefaultTypeInternal() {}
union {
JobRequestCfg _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 JobRequestCfgDefaultTypeInternal _JobRequestCfg_default_instance_;
inline constexpr HeartbeatResponse::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
node_stats_{nullptr},
is_ready_{false} {}
template <typename>
PROTOBUF_CONSTEXPR HeartbeatResponse::HeartbeatResponse(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct HeartbeatResponseDefaultTypeInternal {
PROTOBUF_CONSTEXPR HeartbeatResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~HeartbeatResponseDefaultTypeInternal() {}
union {
HeartbeatResponse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HeartbeatResponseDefaultTypeInternal _HeartbeatResponse_default_instance_;
inline constexpr UpdateConfigRequest::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
rsts_{},
bee_remote_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR UpdateConfigRequest::UpdateConfigRequest(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct UpdateConfigRequestDefaultTypeInternal {
PROTOBUF_CONSTEXPR UpdateConfigRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~UpdateConfigRequestDefaultTypeInternal() {}
union {
UpdateConfigRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateConfigRequestDefaultTypeInternal _UpdateConfigRequest_default_instance_;
inline constexpr MockJob::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
external_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
locked_info_{nullptr},
cfg_{nullptr},
file_size_{::int64_t{0}},
num_test_segments_{0},
should_fail_{false} {}
template <typename>
PROTOBUF_CONSTEXPR MockJob::MockJob(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct MockJobDefaultTypeInternal {
PROTOBUF_CONSTEXPR MockJobDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~MockJobDefaultTypeInternal() {}
union {
MockJob _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MockJobDefaultTypeInternal _MockJob_default_instance_;
inline constexpr BuilderJob::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
cfg_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR BuilderJob::BuilderJob(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct BuilderJobDefaultTypeInternal {
PROTOBUF_CONSTEXPR BuilderJobDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~BuilderJobDefaultTypeInternal() {}
union {
BuilderJob _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BuilderJobDefaultTypeInternal _BuilderJob_default_instance_;
inline constexpr WorkRequest::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
job_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
request_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
external_id_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
segment_{nullptr},
remote_storage_target_{0u},
stub_local_{false},
Type_{},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR WorkRequest::WorkRequest(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct WorkRequestDefaultTypeInternal {
PROTOBUF_CONSTEXPR WorkRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~WorkRequestDefaultTypeInternal() {}
union {
WorkRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WorkRequestDefaultTypeInternal _WorkRequest_default_instance_;
inline constexpr SubmitWorkRequest::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
request_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR SubmitWorkRequest::SubmitWorkRequest(::_pbi::ConstantInitialized)
#if defined(PROTOBUF_CUSTOM_VTABLE)
: ::google::protobuf::Message(_class_data_.base()),
#else // PROTOBUF_CUSTOM_VTABLE
: ::google::protobuf::Message(),
#endif // PROTOBUF_CUSTOM_VTABLE
_impl_(::_pbi::ConstantInitialized()) {
}
struct SubmitWorkRequestDefaultTypeInternal {
PROTOBUF_CONSTEXPR SubmitWorkRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~SubmitWorkRequestDefaultTypeInternal() {}
union {
SubmitWorkRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SubmitWorkRequestDefaultTypeInternal _SubmitWorkRequest_default_instance_;
} // namespace flex
static const ::_pb::EnumDescriptor* file_level_enum_descriptors_flex_2eproto[5];
static constexpr const ::_pb::ServiceDescriptor**
file_level_service_descriptors_flex_2eproto = nullptr;
const ::uint32_t
TableStruct_flex_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE(
protodesc_cold) = {
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::flex::HeartbeatRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
~0u, // no _split_
~0u, // no sizeof(Split)
PROTOBUF_FIELD_OFFSET(::flex::HeartbeatRequest, _impl_.include_stats_),
PROTOBUF_FIELD_OFFSET(::flex::HeartbeatResponse, _impl_._has_bits_),
PROTOBUF_FIELD_OFFSET(::flex::HeartbeatResponse, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
~0u, // no _split_
~0u, // no sizeof(Split)
PROTOBUF_FIELD_OFFSET(::flex::HeartbeatResponse, _impl_.is_ready_),
PROTOBUF_FIELD_OFFSET(::flex::HeartbeatResponse, _impl_.node_stats_),
~0u,
0,
PROTOBUF_FIELD_OFFSET(::flex::NodeStats, _impl_._has_bits_),
PROTOBUF_FIELD_OFFSET(::flex::NodeStats, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
~0u, // no _split_
~0u, // no sizeof(Split)
PROTOBUF_FIELD_OFFSET(::flex::NodeStats, _impl_.timestamp_),
PROTOBUF_FIELD_OFFSET(::flex::NodeStats, _impl_.active_requests_),
0,
~0u,
PROTOBUF_FIELD_OFFSET(::flex::SubmitWorkRequest, _impl_._has_bits_),
PROTOBUF_FIELD_OFFSET(::flex::SubmitWorkRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
~0u, // no _split_
~0u, // no sizeof(Split)
PROTOBUF_FIELD_OFFSET(::flex::SubmitWorkRequest, _impl_.request_),
0,
PROTOBUF_FIELD_OFFSET(::flex::SubmitWorkResponse, _impl_._has_bits_),
PROTOBUF_FIELD_OFFSET(::flex::SubmitWorkResponse, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
~0u, // no _split_
~0u, // no sizeof(Split)
PROTOBUF_FIELD_OFFSET(::flex::SubmitWorkResponse, _impl_.work_),
0,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::flex::UpdateWorkRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
~0u, // no _split_
~0u, // no sizeof(Split)
PROTOBUF_FIELD_OFFSET(::flex::UpdateWorkRequest, _impl_.job_id_),
PROTOBUF_FIELD_OFFSET(::flex::UpdateWorkRequest, _impl_.request_id_),
PROTOBUF_FIELD_OFFSET(::flex::UpdateWorkRequest, _impl_.new_state_),
PROTOBUF_FIELD_OFFSET(::flex::UpdateWorkResponse, _impl_._has_bits_),