-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathreconfigure.pb.h
More file actions
1500 lines (1380 loc) · 58.4 KB
/
Copy pathreconfigure.pb.h
File metadata and controls
1500 lines (1380 loc) · 58.4 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: reconfigure.proto
// Protobuf C++ Version: 7.34.0
#ifndef reconfigure_2eproto_2epb_2eh
#define reconfigure_2eproto_2epb_2eh
#include <limits>
#include <string>
#include <type_traits>
#include <utility>
// clang-format off
#include "google/protobuf/runtime_version.h"
#if PROTOBUF_VERSION != 7034000
#error "Protobuf C++ gencode is built with an incompatible version of"
#error "Protobuf C++ headers/runtime. See"
#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp"
#endif
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/arena.h"
#include "google/protobuf/arenastring.h"
#include "google/protobuf/generated_message_tctable_decl.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/metadata_lite.h"
#include "google/protobuf/generated_message_reflection.h"
#include "google/protobuf/message.h"
#include "google/protobuf/message_lite.h"
#include "google/protobuf/repeated_field.h" // IWYU pragma: export
#include "google/protobuf/extension_set.h" // IWYU pragma: export
#include "google/protobuf/unknown_field_set.h"
#include "common.pb.h"
// @@protoc_insertion_point(includes)
// Must be included last.
#include "google/protobuf/port_def.inc"
#define PROTOBUF_INTERNAL_EXPORT_reconfigure_2eproto
namespace google {
namespace protobuf {
namespace internal {
template <typename T>
::absl::string_view GetAnyMessageName();
} // namespace internal
} // namespace protobuf
} // namespace google
// Internal implementation detail -- do not use these members.
struct TableStruct_reconfigure_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
extern const ::google::protobuf::internal::DescriptorTable descriptor_table_reconfigure_2eproto;
} // extern "C"
namespace grpcagent {
class ReconfigureBody;
struct ReconfigureBodyDefaultTypeInternal;
extern ReconfigureBodyDefaultTypeInternal _ReconfigureBody_default_instance_;
extern const ::google::protobuf::internal::ClassDataFull ReconfigureBody_class_data_;
class ReconfigureEvent;
struct ReconfigureEventDefaultTypeInternal;
extern ReconfigureEventDefaultTypeInternal _ReconfigureEvent_default_instance_;
extern const ::google::protobuf::internal::ClassDataFull ReconfigureEvent_class_data_;
} // namespace grpcagent
namespace google {
namespace protobuf {
} // namespace protobuf
} // namespace google
namespace grpcagent {
// ===================================================================
// -------------------------------------------------------------------
class PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED ReconfigureBody final : public ::google::protobuf::Message
/* @@protoc_insertion_point(class_definition:grpcagent.ReconfigureBody) */ {
public:
inline ReconfigureBody() : ReconfigureBody(nullptr) {}
~ReconfigureBody() PROTOBUF_FINAL;
#if defined(PROTOBUF_CUSTOM_VTABLE)
void operator delete(ReconfigureBody* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
SharedDtor(*msg);
::google::protobuf::internal::SizedDelete(msg, sizeof(ReconfigureBody));
}
#endif
template <typename = void>
explicit constexpr ReconfigureBody(::google::protobuf::internal::ConstantInitialized);
inline ReconfigureBody(const ReconfigureBody& from) : ReconfigureBody(nullptr, from) {}
inline ReconfigureBody(ReconfigureBody&& from) noexcept
: ReconfigureBody(nullptr, ::std::move(from)) {}
inline ReconfigureBody& operator=(const ReconfigureBody& from) {
CopyFrom(from);
return *this;
}
inline ReconfigureBody& operator=(ReconfigureBody&& from) noexcept {
if (this == &from) return *this;
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
ABSL_ATTRIBUTE_LIFETIME_BOUND {
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
}
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
}
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
return GetDescriptor();
}
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
return default_instance().GetMetadata().reflection;
}
[[nodiscard]] static const ReconfigureBody& default_instance() {
return *reinterpret_cast<const ReconfigureBody*>(
&_ReconfigureBody_default_instance_);
}
static constexpr int kIndexInFileMessages = 0;
friend void swap(ReconfigureBody& a, ReconfigureBody& b) { a.Swap(&b); }
inline void Swap(ReconfigureBody* PROTOBUF_NONNULL other) {
if (other == this) return;
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
InternalSwap(other);
} else {
::google::protobuf::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(ReconfigureBody* PROTOBUF_NONNULL other) {
if (other == this) return;
ABSL_DCHECK(GetArena() == other->GetArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
[[nodiscard]] ReconfigureBody* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<ReconfigureBody>(arena);
}
using ::google::protobuf::Message::CopyFrom;
void CopyFrom(const ReconfigureBody& from);
using ::google::protobuf::Message::MergeFrom;
void MergeFrom(const ReconfigureBody& from) { ReconfigureBody::MergeImpl(*this, from); }
private:
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
[[nodiscard]] bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
#if defined(PROTOBUF_CUSTOM_VTABLE)
private:
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
[[nodiscard]] ::size_t ByteSizeLong() const final;
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
[[nodiscard]] int GetCachedSize() const {
return _impl_._cached_size_.Get();
}
private:
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
static void SharedDtor(MessageLite& self);
void InternalSwap(ReconfigureBody* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "grpcagent.ReconfigureBody"; }
explicit ReconfigureBody(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
ReconfigureBody(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const ReconfigureBody& from);
ReconfigureBody(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, ReconfigureBody&& from) noexcept
: ReconfigureBody(arena) {
*this = ::std::move(from);
}
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
static void* PROTOBUF_NONNULL PlacementNew_(
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
static constexpr auto InternalNewImpl_();
public:
static constexpr auto InternalGenerateClassData_();
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kTagsFieldNumber = 9,
kStatsdFieldNumber = 6,
kStatsdBucketFieldNumber = 7,
kStatsdTagsFieldNumber = 8,
kBlockedLoopThresholdFieldNumber = 1,
kIntervalFieldNumber = 2,
kPauseMetricsFieldNumber = 3,
kPromiseTrackingFieldNumber = 4,
kRedactSnapshotsFieldNumber = 5,
kTracingEnabledFieldNumber = 10,
kTracingModulesBlacklistFieldNumber = 11,
kTraceSampleRateFieldNumber = 14,
kContCpuProfileFieldNumber = 12,
kAssetsEnabledFieldNumber = 13,
};
// repeated string tags = 9;
[[nodiscard]] int tags_size()
const;
private:
int _internal_tags_size() const;
public:
void clear_tags() ;
[[nodiscard]] const ::std::string& tags(int index) const;
::std::string* PROTOBUF_NONNULL mutable_tags(int index);
template <typename Arg_ = const ::std::string&, typename... Args_>
void set_tags(int index, Arg_&& value, Args_... args);
::std::string* PROTOBUF_NONNULL add_tags();
template <typename Arg_ = const ::std::string&, typename... Args_>
void add_tags(Arg_&& value, Args_... args);
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::std::string>&
tags() const;
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::std::string>* PROTOBUF_NONNULL
mutable_tags();
private:
const ::google::protobuf::RepeatedPtrField<::std::string>& _internal_tags() const;
::google::protobuf::RepeatedPtrField<::std::string>* PROTOBUF_NONNULL _internal_mutable_tags();
public:
// optional string statsd = 6;
[[nodiscard]] bool has_statsd()
const;
void clear_statsd() ;
[[nodiscard]] const ::std::string& statsd() const;
template <typename Arg_ = const ::std::string&, typename... Args_>
void set_statsd(Arg_&& arg, Args_... args);
::std::string* PROTOBUF_NONNULL mutable_statsd();
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_statsd();
void set_allocated_statsd(::std::string* PROTOBUF_NULLABLE value);
private:
const ::std::string& _internal_statsd() const;
PROTOBUF_ALWAYS_INLINE void _internal_set_statsd(const ::std::string& value);
::std::string* PROTOBUF_NONNULL _internal_mutable_statsd();
public:
// optional string statsdBucket = 7;
[[nodiscard]] bool has_statsdbucket()
const;
void clear_statsdbucket() ;
[[nodiscard]] const ::std::string& statsdbucket() const;
template <typename Arg_ = const ::std::string&, typename... Args_>
void set_statsdbucket(Arg_&& arg, Args_... args);
::std::string* PROTOBUF_NONNULL mutable_statsdbucket();
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_statsdbucket();
void set_allocated_statsdbucket(::std::string* PROTOBUF_NULLABLE value);
private:
const ::std::string& _internal_statsdbucket() const;
PROTOBUF_ALWAYS_INLINE void _internal_set_statsdbucket(const ::std::string& value);
::std::string* PROTOBUF_NONNULL _internal_mutable_statsdbucket();
public:
// optional string statsdTags = 8;
[[nodiscard]] bool has_statsdtags()
const;
void clear_statsdtags() ;
[[nodiscard]] const ::std::string& statsdtags() const;
template <typename Arg_ = const ::std::string&, typename... Args_>
void set_statsdtags(Arg_&& arg, Args_... args);
::std::string* PROTOBUF_NONNULL mutable_statsdtags();
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_statsdtags();
void set_allocated_statsdtags(::std::string* PROTOBUF_NULLABLE value);
private:
const ::std::string& _internal_statsdtags() const;
PROTOBUF_ALWAYS_INLINE void _internal_set_statsdtags(const ::std::string& value);
::std::string* PROTOBUF_NONNULL _internal_mutable_statsdtags();
public:
// optional uint64 blockedLoopThreshold = 1;
[[nodiscard]] bool has_blockedloopthreshold()
const;
void clear_blockedloopthreshold() ;
[[nodiscard]] ::uint64_t blockedloopthreshold() const;
void set_blockedloopthreshold(::uint64_t value);
private:
::uint64_t _internal_blockedloopthreshold() const;
void _internal_set_blockedloopthreshold(::uint64_t value);
public:
// optional uint64 interval = 2;
[[nodiscard]] bool has_interval()
const;
void clear_interval() ;
[[nodiscard]] ::uint64_t interval() const;
void set_interval(::uint64_t value);
private:
::uint64_t _internal_interval() const;
void _internal_set_interval(::uint64_t value);
public:
// optional bool pauseMetrics = 3;
[[nodiscard]] bool has_pausemetrics()
const;
void clear_pausemetrics() ;
[[nodiscard]] bool pausemetrics() const;
void set_pausemetrics(bool value);
private:
bool _internal_pausemetrics() const;
void _internal_set_pausemetrics(bool value);
public:
// optional bool promiseTracking = 4;
[[nodiscard]] bool has_promisetracking()
const;
void clear_promisetracking() ;
[[nodiscard]] bool promisetracking() const;
void set_promisetracking(bool value);
private:
bool _internal_promisetracking() const;
void _internal_set_promisetracking(bool value);
public:
// optional bool redactSnapshots = 5;
[[nodiscard]] bool has_redactsnapshots()
const;
void clear_redactsnapshots() ;
[[nodiscard]] bool redactsnapshots() const;
void set_redactsnapshots(bool value);
private:
bool _internal_redactsnapshots() const;
void _internal_set_redactsnapshots(bool value);
public:
// optional bool tracingEnabled = 10;
[[nodiscard]] bool has_tracingenabled()
const;
void clear_tracingenabled() ;
[[nodiscard]] bool tracingenabled() const;
void set_tracingenabled(bool value);
private:
bool _internal_tracingenabled() const;
void _internal_set_tracingenabled(bool value);
public:
// optional uint32 tracingModulesBlacklist = 11;
[[nodiscard]] bool has_tracingmodulesblacklist()
const;
void clear_tracingmodulesblacklist() ;
[[nodiscard]] ::uint32_t tracingmodulesblacklist() const;
void set_tracingmodulesblacklist(::uint32_t value);
private:
::uint32_t _internal_tracingmodulesblacklist() const;
void _internal_set_tracingmodulesblacklist(::uint32_t value);
public:
// optional double traceSampleRate = 14;
[[nodiscard]] bool has_tracesamplerate()
const;
void clear_tracesamplerate() ;
[[nodiscard]] double tracesamplerate() const;
void set_tracesamplerate(double value);
private:
double _internal_tracesamplerate() const;
void _internal_set_tracesamplerate(double value);
public:
// optional bool contCpuProfile = 12;
[[nodiscard]] bool has_contcpuprofile()
const;
void clear_contcpuprofile() ;
[[nodiscard]] bool contcpuprofile() const;
void set_contcpuprofile(bool value);
private:
bool _internal_contcpuprofile() const;
void _internal_set_contcpuprofile(bool value);
public:
// optional bool assetsEnabled = 13;
[[nodiscard]] bool has_assetsenabled()
const;
void clear_assetsenabled() ;
[[nodiscard]] bool assetsenabled() const;
void set_assetsenabled(bool value);
private:
bool _internal_assetsenabled() const;
void _internal_set_assetsenabled(bool value);
public:
// @@protoc_insertion_point(class_scope:grpcagent.ReconfigureBody)
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<4, 14,
0, 74,
2>
_table_;
friend class ::google::protobuf::MessageLite;
friend class ::google::protobuf::Arena;
friend ::google::protobuf::internal::PrivateAccess;
template <typename T>
friend class ::google::protobuf::Arena::InternalHelper;
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
const ReconfigureBody& from_msg);
::google::protobuf::internal::HasBits<1> _has_bits_;
::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::RepeatedPtrField<::std::string> tags_;
::google::protobuf::internal::ArenaStringPtr statsd_;
::google::protobuf::internal::ArenaStringPtr statsdbucket_;
::google::protobuf::internal::ArenaStringPtr statsdtags_;
::uint64_t blockedloopthreshold_;
::uint64_t interval_;
bool pausemetrics_;
bool promisetracking_;
bool redactsnapshots_;
bool tracingenabled_;
::uint32_t tracingmodulesblacklist_;
double tracesamplerate_;
bool contcpuprofile_;
bool assetsenabled_;
PROTOBUF_TSAN_DECLARE_MEMBER
};
union { Impl_ _impl_; };
friend struct ::TableStruct_reconfigure_2eproto;
};
extern const ::google::protobuf::internal::ClassDataFull ReconfigureBody_class_data_;
// -------------------------------------------------------------------
class PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED ReconfigureEvent final : public ::google::protobuf::Message
/* @@protoc_insertion_point(class_definition:grpcagent.ReconfigureEvent) */ {
public:
inline ReconfigureEvent() : ReconfigureEvent(nullptr) {}
~ReconfigureEvent() PROTOBUF_FINAL;
#if defined(PROTOBUF_CUSTOM_VTABLE)
void operator delete(ReconfigureEvent* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
SharedDtor(*msg);
::google::protobuf::internal::SizedDelete(msg, sizeof(ReconfigureEvent));
}
#endif
template <typename = void>
explicit constexpr ReconfigureEvent(::google::protobuf::internal::ConstantInitialized);
inline ReconfigureEvent(const ReconfigureEvent& from) : ReconfigureEvent(nullptr, from) {}
inline ReconfigureEvent(ReconfigureEvent&& from) noexcept
: ReconfigureEvent(nullptr, ::std::move(from)) {}
inline ReconfigureEvent& operator=(const ReconfigureEvent& from) {
CopyFrom(from);
return *this;
}
inline ReconfigureEvent& operator=(ReconfigureEvent&& from) noexcept {
if (this == &from) return *this;
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
ABSL_ATTRIBUTE_LIFETIME_BOUND {
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
}
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
}
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
return GetDescriptor();
}
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
return default_instance().GetMetadata().reflection;
}
[[nodiscard]] static const ReconfigureEvent& default_instance() {
return *reinterpret_cast<const ReconfigureEvent*>(
&_ReconfigureEvent_default_instance_);
}
static constexpr int kIndexInFileMessages = 1;
friend void swap(ReconfigureEvent& a, ReconfigureEvent& b) { a.Swap(&b); }
inline void Swap(ReconfigureEvent* PROTOBUF_NONNULL other) {
if (other == this) return;
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
InternalSwap(other);
} else {
::google::protobuf::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(ReconfigureEvent* PROTOBUF_NONNULL other) {
if (other == this) return;
ABSL_DCHECK(GetArena() == other->GetArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
[[nodiscard]] ReconfigureEvent* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<ReconfigureEvent>(arena);
}
using ::google::protobuf::Message::CopyFrom;
void CopyFrom(const ReconfigureEvent& from);
using ::google::protobuf::Message::MergeFrom;
void MergeFrom(const ReconfigureEvent& from) { ReconfigureEvent::MergeImpl(*this, from); }
private:
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
[[nodiscard]] bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
#if defined(PROTOBUF_CUSTOM_VTABLE)
private:
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
[[nodiscard]] ::size_t ByteSizeLong() const final;
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
[[nodiscard]] int GetCachedSize() const {
return _impl_._cached_size_.Get();
}
private:
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
static void SharedDtor(MessageLite& self);
void InternalSwap(ReconfigureEvent* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "grpcagent.ReconfigureEvent"; }
explicit ReconfigureEvent(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
ReconfigureEvent(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const ReconfigureEvent& from);
ReconfigureEvent(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, ReconfigureEvent&& from) noexcept
: ReconfigureEvent(arena) {
*this = ::std::move(from);
}
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
static void* PROTOBUF_NONNULL PlacementNew_(
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
static constexpr auto InternalNewImpl_();
public:
static constexpr auto InternalGenerateClassData_();
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kCommonFieldNumber = 1,
kBodyFieldNumber = 2,
};
// .grpcagent.CommonResponse common = 1;
[[nodiscard]] bool has_common()
const;
void clear_common() ;
[[nodiscard]] const ::grpcagent::CommonResponse& common() const;
[[nodiscard]] ::grpcagent::CommonResponse* PROTOBUF_NULLABLE release_common();
::grpcagent::CommonResponse* PROTOBUF_NONNULL mutable_common();
void set_allocated_common(::grpcagent::CommonResponse* PROTOBUF_NULLABLE value);
void unsafe_arena_set_allocated_common(::grpcagent::CommonResponse* PROTOBUF_NULLABLE value);
::grpcagent::CommonResponse* PROTOBUF_NULLABLE unsafe_arena_release_common();
private:
const ::grpcagent::CommonResponse& _internal_common() const;
::grpcagent::CommonResponse* PROTOBUF_NONNULL _internal_mutable_common();
public:
// .grpcagent.ReconfigureBody body = 2;
[[nodiscard]] bool has_body()
const;
void clear_body() ;
[[nodiscard]] const ::grpcagent::ReconfigureBody& body() const;
[[nodiscard]] ::grpcagent::ReconfigureBody* PROTOBUF_NULLABLE release_body();
::grpcagent::ReconfigureBody* PROTOBUF_NONNULL mutable_body();
void set_allocated_body(::grpcagent::ReconfigureBody* PROTOBUF_NULLABLE value);
void unsafe_arena_set_allocated_body(::grpcagent::ReconfigureBody* PROTOBUF_NULLABLE value);
::grpcagent::ReconfigureBody* PROTOBUF_NULLABLE unsafe_arena_release_body();
private:
const ::grpcagent::ReconfigureBody& _internal_body() const;
::grpcagent::ReconfigureBody* PROTOBUF_NONNULL _internal_mutable_body();
public:
// @@protoc_insertion_point(class_scope:grpcagent.ReconfigureEvent)
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<1, 2,
2, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
friend class ::google::protobuf::Arena;
friend ::google::protobuf::internal::PrivateAccess;
template <typename T>
friend class ::google::protobuf::Arena::InternalHelper;
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
const ReconfigureEvent& from_msg);
::google::protobuf::internal::HasBits<1> _has_bits_;
::google::protobuf::internal::CachedSize _cached_size_;
::grpcagent::CommonResponse* PROTOBUF_NULLABLE common_;
::grpcagent::ReconfigureBody* PROTOBUF_NULLABLE body_;
PROTOBUF_TSAN_DECLARE_MEMBER
};
union { Impl_ _impl_; };
friend struct ::TableStruct_reconfigure_2eproto;
};
extern const ::google::protobuf::internal::ClassDataFull ReconfigureEvent_class_data_;
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// -------------------------------------------------------------------
// ReconfigureBody
// optional uint64 blockedLoopThreshold = 1;
inline bool ReconfigureBody::has_blockedloopthreshold() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000010U);
return value;
}
inline void ReconfigureBody::clear_blockedloopthreshold() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.blockedloopthreshold_ = ::uint64_t{0u};
ClearHasBit(_impl_._has_bits_[0],
0x00000010U);
}
inline ::uint64_t ReconfigureBody::blockedloopthreshold() const {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.blockedLoopThreshold)
return _internal_blockedloopthreshold();
}
inline void ReconfigureBody::set_blockedloopthreshold(::uint64_t value) {
_internal_set_blockedloopthreshold(value);
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.blockedLoopThreshold)
}
inline ::uint64_t ReconfigureBody::_internal_blockedloopthreshold() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.blockedloopthreshold_;
}
inline void ReconfigureBody::_internal_set_blockedloopthreshold(::uint64_t value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.blockedloopthreshold_ = value;
}
// optional uint64 interval = 2;
inline bool ReconfigureBody::has_interval() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000020U);
return value;
}
inline void ReconfigureBody::clear_interval() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.interval_ = ::uint64_t{0u};
ClearHasBit(_impl_._has_bits_[0],
0x00000020U);
}
inline ::uint64_t ReconfigureBody::interval() const {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.interval)
return _internal_interval();
}
inline void ReconfigureBody::set_interval(::uint64_t value) {
_internal_set_interval(value);
SetHasBit(_impl_._has_bits_[0], 0x00000020U);
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.interval)
}
inline ::uint64_t ReconfigureBody::_internal_interval() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.interval_;
}
inline void ReconfigureBody::_internal_set_interval(::uint64_t value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.interval_ = value;
}
// optional bool pauseMetrics = 3;
inline bool ReconfigureBody::has_pausemetrics() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000040U);
return value;
}
inline void ReconfigureBody::clear_pausemetrics() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.pausemetrics_ = false;
ClearHasBit(_impl_._has_bits_[0],
0x00000040U);
}
inline bool ReconfigureBody::pausemetrics() const {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.pauseMetrics)
return _internal_pausemetrics();
}
inline void ReconfigureBody::set_pausemetrics(bool value) {
_internal_set_pausemetrics(value);
SetHasBit(_impl_._has_bits_[0], 0x00000040U);
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.pauseMetrics)
}
inline bool ReconfigureBody::_internal_pausemetrics() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.pausemetrics_;
}
inline void ReconfigureBody::_internal_set_pausemetrics(bool value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.pausemetrics_ = value;
}
// optional bool promiseTracking = 4;
inline bool ReconfigureBody::has_promisetracking() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000080U);
return value;
}
inline void ReconfigureBody::clear_promisetracking() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.promisetracking_ = false;
ClearHasBit(_impl_._has_bits_[0],
0x00000080U);
}
inline bool ReconfigureBody::promisetracking() const {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.promiseTracking)
return _internal_promisetracking();
}
inline void ReconfigureBody::set_promisetracking(bool value) {
_internal_set_promisetracking(value);
SetHasBit(_impl_._has_bits_[0], 0x00000080U);
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.promiseTracking)
}
inline bool ReconfigureBody::_internal_promisetracking() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.promisetracking_;
}
inline void ReconfigureBody::_internal_set_promisetracking(bool value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.promisetracking_ = value;
}
// optional bool redactSnapshots = 5;
inline bool ReconfigureBody::has_redactsnapshots() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000100U);
return value;
}
inline void ReconfigureBody::clear_redactsnapshots() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.redactsnapshots_ = false;
ClearHasBit(_impl_._has_bits_[0],
0x00000100U);
}
inline bool ReconfigureBody::redactsnapshots() const {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.redactSnapshots)
return _internal_redactsnapshots();
}
inline void ReconfigureBody::set_redactsnapshots(bool value) {
_internal_set_redactsnapshots(value);
SetHasBit(_impl_._has_bits_[0], 0x00000100U);
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.redactSnapshots)
}
inline bool ReconfigureBody::_internal_redactsnapshots() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.redactsnapshots_;
}
inline void ReconfigureBody::_internal_set_redactsnapshots(bool value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.redactsnapshots_ = value;
}
// optional string statsd = 6;
inline bool ReconfigureBody::has_statsd() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000002U);
return value;
}
inline void ReconfigureBody::clear_statsd() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.statsd_.ClearToEmpty();
ClearHasBit(_impl_._has_bits_[0],
0x00000002U);
}
inline const ::std::string& ReconfigureBody::statsd() const
ABSL_ATTRIBUTE_LIFETIME_BOUND {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.statsd)
return _internal_statsd();
}
template <typename Arg_, typename... Args_>
PROTOBUF_ALWAYS_INLINE void ReconfigureBody::set_statsd(Arg_&& arg, Args_... args) {
::google::protobuf::internal::TSanWrite(&_impl_);
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
_impl_.statsd_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.statsd)
}
inline ::std::string* PROTOBUF_NONNULL ReconfigureBody::mutable_statsd()
ABSL_ATTRIBUTE_LIFETIME_BOUND {
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
::std::string* _s = _internal_mutable_statsd();
// @@protoc_insertion_point(field_mutable:grpcagent.ReconfigureBody.statsd)
return _s;
}
inline const ::std::string& ReconfigureBody::_internal_statsd() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.statsd_.Get();
}
inline void ReconfigureBody::_internal_set_statsd(const ::std::string& value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.statsd_.Set(value, GetArena());
}
inline ::std::string* PROTOBUF_NONNULL ReconfigureBody::_internal_mutable_statsd() {
::google::protobuf::internal::TSanWrite(&_impl_);
return _impl_.statsd_.Mutable( GetArena());
}
inline ::std::string* PROTOBUF_NULLABLE ReconfigureBody::release_statsd() {
::google::protobuf::internal::TSanWrite(&_impl_);
// @@protoc_insertion_point(field_release:grpcagent.ReconfigureBody.statsd)
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000002U)) {
return nullptr;
}
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
auto* released = _impl_.statsd_.Release();
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
_impl_.statsd_.Set("", GetArena());
}
return released;
}
inline void ReconfigureBody::set_allocated_statsd(::std::string* PROTOBUF_NULLABLE value) {
::google::protobuf::internal::TSanWrite(&_impl_);
if (value != nullptr) {
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
} else {
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
}
_impl_.statsd_.SetAllocated(value, GetArena());
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.statsd_.IsDefault()) {
_impl_.statsd_.Set("", GetArena());
}
// @@protoc_insertion_point(field_set_allocated:grpcagent.ReconfigureBody.statsd)
}
// optional string statsdBucket = 7;
inline bool ReconfigureBody::has_statsdbucket() const {
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000004U);
return value;
}
inline void ReconfigureBody::clear_statsdbucket() {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.statsdbucket_.ClearToEmpty();
ClearHasBit(_impl_._has_bits_[0],
0x00000004U);
}
inline const ::std::string& ReconfigureBody::statsdbucket() const
ABSL_ATTRIBUTE_LIFETIME_BOUND {
// @@protoc_insertion_point(field_get:grpcagent.ReconfigureBody.statsdBucket)
return _internal_statsdbucket();
}
template <typename Arg_, typename... Args_>
PROTOBUF_ALWAYS_INLINE void ReconfigureBody::set_statsdbucket(Arg_&& arg, Args_... args) {
::google::protobuf::internal::TSanWrite(&_impl_);
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
_impl_.statsdbucket_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
// @@protoc_insertion_point(field_set:grpcagent.ReconfigureBody.statsdBucket)
}
inline ::std::string* PROTOBUF_NONNULL ReconfigureBody::mutable_statsdbucket()
ABSL_ATTRIBUTE_LIFETIME_BOUND {
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
::std::string* _s = _internal_mutable_statsdbucket();
// @@protoc_insertion_point(field_mutable:grpcagent.ReconfigureBody.statsdBucket)
return _s;
}
inline const ::std::string& ReconfigureBody::_internal_statsdbucket() const {
::google::protobuf::internal::TSanRead(&_impl_);
return _impl_.statsdbucket_.Get();
}
inline void ReconfigureBody::_internal_set_statsdbucket(const ::std::string& value) {
::google::protobuf::internal::TSanWrite(&_impl_);
_impl_.statsdbucket_.Set(value, GetArena());
}
inline ::std::string* PROTOBUF_NONNULL ReconfigureBody::_internal_mutable_statsdbucket() {
::google::protobuf::internal::TSanWrite(&_impl_);
return _impl_.statsdbucket_.Mutable( GetArena());
}
inline ::std::string* PROTOBUF_NULLABLE ReconfigureBody::release_statsdbucket() {
::google::protobuf::internal::TSanWrite(&_impl_);
// @@protoc_insertion_point(field_release:grpcagent.ReconfigureBody.statsdBucket)
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000004U)) {
return nullptr;
}
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
auto* released = _impl_.statsdbucket_.Release();
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
_impl_.statsdbucket_.Set("", GetArena());
}
return released;
}
inline void ReconfigureBody::set_allocated_statsdbucket(::std::string* PROTOBUF_NULLABLE value) {
::google::protobuf::internal::TSanWrite(&_impl_);
if (value != nullptr) {
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
} else {
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
}
_impl_.statsdbucket_.SetAllocated(value, GetArena());
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.statsdbucket_.IsDefault()) {
_impl_.statsdbucket_.Set("", GetArena());