1
2
3
4
5
6
7 package envoy_admin_v4alpha
8
9 import (
10 _ "github.com/cncf/udpa/go/udpa/annotations"
11 v4alpha "github.com/datawire/ambassador/v2/pkg/api/envoy/config/bootstrap/v4alpha"
12 proto "github.com/golang/protobuf/proto"
13 any "github.com/golang/protobuf/ptypes/any"
14 timestamp "github.com/golang/protobuf/ptypes/timestamp"
15 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
16 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
17 reflect "reflect"
18 sync "sync"
19 )
20
21 const (
22
23 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
24
25 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
26 )
27
28
29
30 const _ = proto.ProtoPackageIsVersion4
31
32
33
34 type ConfigDump struct {
35 state protoimpl.MessageState
36 sizeCache protoimpl.SizeCache
37 unknownFields protoimpl.UnknownFields
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58 Configs []*any.Any `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"`
59 }
60
61 func (x *ConfigDump) Reset() {
62 *x = ConfigDump{}
63 if protoimpl.UnsafeEnabled {
64 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[0]
65 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
66 ms.StoreMessageInfo(mi)
67 }
68 }
69
70 func (x *ConfigDump) String() string {
71 return protoimpl.X.MessageStringOf(x)
72 }
73
74 func (*ConfigDump) ProtoMessage() {}
75
76 func (x *ConfigDump) ProtoReflect() protoreflect.Message {
77 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[0]
78 if protoimpl.UnsafeEnabled && x != nil {
79 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
80 if ms.LoadMessageInfo() == nil {
81 ms.StoreMessageInfo(mi)
82 }
83 return ms
84 }
85 return mi.MessageOf(x)
86 }
87
88
89 func (*ConfigDump) Descriptor() ([]byte, []int) {
90 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{0}
91 }
92
93 func (x *ConfigDump) GetConfigs() []*any.Any {
94 if x != nil {
95 return x.Configs
96 }
97 return nil
98 }
99
100 type UpdateFailureState struct {
101 state protoimpl.MessageState
102 sizeCache protoimpl.SizeCache
103 unknownFields protoimpl.UnknownFields
104
105
106 FailedConfiguration *any.Any `protobuf:"bytes,1,opt,name=failed_configuration,json=failedConfiguration,proto3" json:"failed_configuration,omitempty"`
107
108 LastUpdateAttempt *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_update_attempt,json=lastUpdateAttempt,proto3" json:"last_update_attempt,omitempty"`
109
110 Details string `protobuf:"bytes,3,opt,name=details,proto3" json:"details,omitempty"`
111 }
112
113 func (x *UpdateFailureState) Reset() {
114 *x = UpdateFailureState{}
115 if protoimpl.UnsafeEnabled {
116 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[1]
117 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
118 ms.StoreMessageInfo(mi)
119 }
120 }
121
122 func (x *UpdateFailureState) String() string {
123 return protoimpl.X.MessageStringOf(x)
124 }
125
126 func (*UpdateFailureState) ProtoMessage() {}
127
128 func (x *UpdateFailureState) ProtoReflect() protoreflect.Message {
129 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[1]
130 if protoimpl.UnsafeEnabled && x != nil {
131 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
132 if ms.LoadMessageInfo() == nil {
133 ms.StoreMessageInfo(mi)
134 }
135 return ms
136 }
137 return mi.MessageOf(x)
138 }
139
140
141 func (*UpdateFailureState) Descriptor() ([]byte, []int) {
142 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{1}
143 }
144
145 func (x *UpdateFailureState) GetFailedConfiguration() *any.Any {
146 if x != nil {
147 return x.FailedConfiguration
148 }
149 return nil
150 }
151
152 func (x *UpdateFailureState) GetLastUpdateAttempt() *timestamp.Timestamp {
153 if x != nil {
154 return x.LastUpdateAttempt
155 }
156 return nil
157 }
158
159 func (x *UpdateFailureState) GetDetails() string {
160 if x != nil {
161 return x.Details
162 }
163 return ""
164 }
165
166
167
168
169
170 type BootstrapConfigDump struct {
171 state protoimpl.MessageState
172 sizeCache protoimpl.SizeCache
173 unknownFields protoimpl.UnknownFields
174
175 Bootstrap *v4alpha.Bootstrap `protobuf:"bytes,1,opt,name=bootstrap,proto3" json:"bootstrap,omitempty"`
176
177 LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
178 }
179
180 func (x *BootstrapConfigDump) Reset() {
181 *x = BootstrapConfigDump{}
182 if protoimpl.UnsafeEnabled {
183 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[2]
184 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
185 ms.StoreMessageInfo(mi)
186 }
187 }
188
189 func (x *BootstrapConfigDump) String() string {
190 return protoimpl.X.MessageStringOf(x)
191 }
192
193 func (*BootstrapConfigDump) ProtoMessage() {}
194
195 func (x *BootstrapConfigDump) ProtoReflect() protoreflect.Message {
196 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[2]
197 if protoimpl.UnsafeEnabled && x != nil {
198 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
199 if ms.LoadMessageInfo() == nil {
200 ms.StoreMessageInfo(mi)
201 }
202 return ms
203 }
204 return mi.MessageOf(x)
205 }
206
207
208 func (*BootstrapConfigDump) Descriptor() ([]byte, []int) {
209 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{2}
210 }
211
212 func (x *BootstrapConfigDump) GetBootstrap() *v4alpha.Bootstrap {
213 if x != nil {
214 return x.Bootstrap
215 }
216 return nil
217 }
218
219 func (x *BootstrapConfigDump) GetLastUpdated() *timestamp.Timestamp {
220 if x != nil {
221 return x.LastUpdated
222 }
223 return nil
224 }
225
226
227
228
229 type ListenersConfigDump struct {
230 state protoimpl.MessageState
231 sizeCache protoimpl.SizeCache
232 unknownFields protoimpl.UnknownFields
233
234
235
236
237 VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
238
239 StaticListeners []*ListenersConfigDump_StaticListener `protobuf:"bytes,2,rep,name=static_listeners,json=staticListeners,proto3" json:"static_listeners,omitempty"`
240
241 DynamicListeners []*ListenersConfigDump_DynamicListener `protobuf:"bytes,3,rep,name=dynamic_listeners,json=dynamicListeners,proto3" json:"dynamic_listeners,omitempty"`
242 }
243
244 func (x *ListenersConfigDump) Reset() {
245 *x = ListenersConfigDump{}
246 if protoimpl.UnsafeEnabled {
247 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[3]
248 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
249 ms.StoreMessageInfo(mi)
250 }
251 }
252
253 func (x *ListenersConfigDump) String() string {
254 return protoimpl.X.MessageStringOf(x)
255 }
256
257 func (*ListenersConfigDump) ProtoMessage() {}
258
259 func (x *ListenersConfigDump) ProtoReflect() protoreflect.Message {
260 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[3]
261 if protoimpl.UnsafeEnabled && x != nil {
262 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
263 if ms.LoadMessageInfo() == nil {
264 ms.StoreMessageInfo(mi)
265 }
266 return ms
267 }
268 return mi.MessageOf(x)
269 }
270
271
272 func (*ListenersConfigDump) Descriptor() ([]byte, []int) {
273 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{3}
274 }
275
276 func (x *ListenersConfigDump) GetVersionInfo() string {
277 if x != nil {
278 return x.VersionInfo
279 }
280 return ""
281 }
282
283 func (x *ListenersConfigDump) GetStaticListeners() []*ListenersConfigDump_StaticListener {
284 if x != nil {
285 return x.StaticListeners
286 }
287 return nil
288 }
289
290 func (x *ListenersConfigDump) GetDynamicListeners() []*ListenersConfigDump_DynamicListener {
291 if x != nil {
292 return x.DynamicListeners
293 }
294 return nil
295 }
296
297
298
299
300 type ClustersConfigDump struct {
301 state protoimpl.MessageState
302 sizeCache protoimpl.SizeCache
303 unknownFields protoimpl.UnknownFields
304
305
306
307
308 VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
309
310 StaticClusters []*ClustersConfigDump_StaticCluster `protobuf:"bytes,2,rep,name=static_clusters,json=staticClusters,proto3" json:"static_clusters,omitempty"`
311
312
313 DynamicActiveClusters []*ClustersConfigDump_DynamicCluster `protobuf:"bytes,3,rep,name=dynamic_active_clusters,json=dynamicActiveClusters,proto3" json:"dynamic_active_clusters,omitempty"`
314
315
316
317
318 DynamicWarmingClusters []*ClustersConfigDump_DynamicCluster `protobuf:"bytes,4,rep,name=dynamic_warming_clusters,json=dynamicWarmingClusters,proto3" json:"dynamic_warming_clusters,omitempty"`
319 }
320
321 func (x *ClustersConfigDump) Reset() {
322 *x = ClustersConfigDump{}
323 if protoimpl.UnsafeEnabled {
324 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[4]
325 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
326 ms.StoreMessageInfo(mi)
327 }
328 }
329
330 func (x *ClustersConfigDump) String() string {
331 return protoimpl.X.MessageStringOf(x)
332 }
333
334 func (*ClustersConfigDump) ProtoMessage() {}
335
336 func (x *ClustersConfigDump) ProtoReflect() protoreflect.Message {
337 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[4]
338 if protoimpl.UnsafeEnabled && x != nil {
339 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
340 if ms.LoadMessageInfo() == nil {
341 ms.StoreMessageInfo(mi)
342 }
343 return ms
344 }
345 return mi.MessageOf(x)
346 }
347
348
349 func (*ClustersConfigDump) Descriptor() ([]byte, []int) {
350 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{4}
351 }
352
353 func (x *ClustersConfigDump) GetVersionInfo() string {
354 if x != nil {
355 return x.VersionInfo
356 }
357 return ""
358 }
359
360 func (x *ClustersConfigDump) GetStaticClusters() []*ClustersConfigDump_StaticCluster {
361 if x != nil {
362 return x.StaticClusters
363 }
364 return nil
365 }
366
367 func (x *ClustersConfigDump) GetDynamicActiveClusters() []*ClustersConfigDump_DynamicCluster {
368 if x != nil {
369 return x.DynamicActiveClusters
370 }
371 return nil
372 }
373
374 func (x *ClustersConfigDump) GetDynamicWarmingClusters() []*ClustersConfigDump_DynamicCluster {
375 if x != nil {
376 return x.DynamicWarmingClusters
377 }
378 return nil
379 }
380
381
382
383
384
385
386 type RoutesConfigDump struct {
387 state protoimpl.MessageState
388 sizeCache protoimpl.SizeCache
389 unknownFields protoimpl.UnknownFields
390
391
392 StaticRouteConfigs []*RoutesConfigDump_StaticRouteConfig `protobuf:"bytes,2,rep,name=static_route_configs,json=staticRouteConfigs,proto3" json:"static_route_configs,omitempty"`
393
394 DynamicRouteConfigs []*RoutesConfigDump_DynamicRouteConfig `protobuf:"bytes,3,rep,name=dynamic_route_configs,json=dynamicRouteConfigs,proto3" json:"dynamic_route_configs,omitempty"`
395 }
396
397 func (x *RoutesConfigDump) Reset() {
398 *x = RoutesConfigDump{}
399 if protoimpl.UnsafeEnabled {
400 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[5]
401 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
402 ms.StoreMessageInfo(mi)
403 }
404 }
405
406 func (x *RoutesConfigDump) String() string {
407 return protoimpl.X.MessageStringOf(x)
408 }
409
410 func (*RoutesConfigDump) ProtoMessage() {}
411
412 func (x *RoutesConfigDump) ProtoReflect() protoreflect.Message {
413 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[5]
414 if protoimpl.UnsafeEnabled && x != nil {
415 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
416 if ms.LoadMessageInfo() == nil {
417 ms.StoreMessageInfo(mi)
418 }
419 return ms
420 }
421 return mi.MessageOf(x)
422 }
423
424
425 func (*RoutesConfigDump) Descriptor() ([]byte, []int) {
426 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{5}
427 }
428
429 func (x *RoutesConfigDump) GetStaticRouteConfigs() []*RoutesConfigDump_StaticRouteConfig {
430 if x != nil {
431 return x.StaticRouteConfigs
432 }
433 return nil
434 }
435
436 func (x *RoutesConfigDump) GetDynamicRouteConfigs() []*RoutesConfigDump_DynamicRouteConfig {
437 if x != nil {
438 return x.DynamicRouteConfigs
439 }
440 return nil
441 }
442
443
444
445
446
447 type ScopedRoutesConfigDump struct {
448 state protoimpl.MessageState
449 sizeCache protoimpl.SizeCache
450 unknownFields protoimpl.UnknownFields
451
452
453 InlineScopedRouteConfigs []*ScopedRoutesConfigDump_InlineScopedRouteConfigs `protobuf:"bytes,1,rep,name=inline_scoped_route_configs,json=inlineScopedRouteConfigs,proto3" json:"inline_scoped_route_configs,omitempty"`
454
455 DynamicScopedRouteConfigs []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs `protobuf:"bytes,2,rep,name=dynamic_scoped_route_configs,json=dynamicScopedRouteConfigs,proto3" json:"dynamic_scoped_route_configs,omitempty"`
456 }
457
458 func (x *ScopedRoutesConfigDump) Reset() {
459 *x = ScopedRoutesConfigDump{}
460 if protoimpl.UnsafeEnabled {
461 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[6]
462 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
463 ms.StoreMessageInfo(mi)
464 }
465 }
466
467 func (x *ScopedRoutesConfigDump) String() string {
468 return protoimpl.X.MessageStringOf(x)
469 }
470
471 func (*ScopedRoutesConfigDump) ProtoMessage() {}
472
473 func (x *ScopedRoutesConfigDump) ProtoReflect() protoreflect.Message {
474 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[6]
475 if protoimpl.UnsafeEnabled && x != nil {
476 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
477 if ms.LoadMessageInfo() == nil {
478 ms.StoreMessageInfo(mi)
479 }
480 return ms
481 }
482 return mi.MessageOf(x)
483 }
484
485
486 func (*ScopedRoutesConfigDump) Descriptor() ([]byte, []int) {
487 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{6}
488 }
489
490 func (x *ScopedRoutesConfigDump) GetInlineScopedRouteConfigs() []*ScopedRoutesConfigDump_InlineScopedRouteConfigs {
491 if x != nil {
492 return x.InlineScopedRouteConfigs
493 }
494 return nil
495 }
496
497 func (x *ScopedRoutesConfigDump) GetDynamicScopedRouteConfigs() []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs {
498 if x != nil {
499 return x.DynamicScopedRouteConfigs
500 }
501 return nil
502 }
503
504
505 type SecretsConfigDump struct {
506 state protoimpl.MessageState
507 sizeCache protoimpl.SizeCache
508 unknownFields protoimpl.UnknownFields
509
510
511 StaticSecrets []*SecretsConfigDump_StaticSecret `protobuf:"bytes,1,rep,name=static_secrets,json=staticSecrets,proto3" json:"static_secrets,omitempty"`
512
513
514 DynamicActiveSecrets []*SecretsConfigDump_DynamicSecret `protobuf:"bytes,2,rep,name=dynamic_active_secrets,json=dynamicActiveSecrets,proto3" json:"dynamic_active_secrets,omitempty"`
515
516
517 DynamicWarmingSecrets []*SecretsConfigDump_DynamicSecret `protobuf:"bytes,3,rep,name=dynamic_warming_secrets,json=dynamicWarmingSecrets,proto3" json:"dynamic_warming_secrets,omitempty"`
518 }
519
520 func (x *SecretsConfigDump) Reset() {
521 *x = SecretsConfigDump{}
522 if protoimpl.UnsafeEnabled {
523 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[7]
524 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
525 ms.StoreMessageInfo(mi)
526 }
527 }
528
529 func (x *SecretsConfigDump) String() string {
530 return protoimpl.X.MessageStringOf(x)
531 }
532
533 func (*SecretsConfigDump) ProtoMessage() {}
534
535 func (x *SecretsConfigDump) ProtoReflect() protoreflect.Message {
536 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[7]
537 if protoimpl.UnsafeEnabled && x != nil {
538 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
539 if ms.LoadMessageInfo() == nil {
540 ms.StoreMessageInfo(mi)
541 }
542 return ms
543 }
544 return mi.MessageOf(x)
545 }
546
547
548 func (*SecretsConfigDump) Descriptor() ([]byte, []int) {
549 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{7}
550 }
551
552 func (x *SecretsConfigDump) GetStaticSecrets() []*SecretsConfigDump_StaticSecret {
553 if x != nil {
554 return x.StaticSecrets
555 }
556 return nil
557 }
558
559 func (x *SecretsConfigDump) GetDynamicActiveSecrets() []*SecretsConfigDump_DynamicSecret {
560 if x != nil {
561 return x.DynamicActiveSecrets
562 }
563 return nil
564 }
565
566 func (x *SecretsConfigDump) GetDynamicWarmingSecrets() []*SecretsConfigDump_DynamicSecret {
567 if x != nil {
568 return x.DynamicWarmingSecrets
569 }
570 return nil
571 }
572
573
574
575
576 type EndpointsConfigDump struct {
577 state protoimpl.MessageState
578 sizeCache protoimpl.SizeCache
579 unknownFields protoimpl.UnknownFields
580
581
582 StaticEndpointConfigs []*EndpointsConfigDump_StaticEndpointConfig `protobuf:"bytes,2,rep,name=static_endpoint_configs,json=staticEndpointConfigs,proto3" json:"static_endpoint_configs,omitempty"`
583
584 DynamicEndpointConfigs []*EndpointsConfigDump_DynamicEndpointConfig `protobuf:"bytes,3,rep,name=dynamic_endpoint_configs,json=dynamicEndpointConfigs,proto3" json:"dynamic_endpoint_configs,omitempty"`
585 }
586
587 func (x *EndpointsConfigDump) Reset() {
588 *x = EndpointsConfigDump{}
589 if protoimpl.UnsafeEnabled {
590 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[8]
591 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
592 ms.StoreMessageInfo(mi)
593 }
594 }
595
596 func (x *EndpointsConfigDump) String() string {
597 return protoimpl.X.MessageStringOf(x)
598 }
599
600 func (*EndpointsConfigDump) ProtoMessage() {}
601
602 func (x *EndpointsConfigDump) ProtoReflect() protoreflect.Message {
603 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[8]
604 if protoimpl.UnsafeEnabled && x != nil {
605 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
606 if ms.LoadMessageInfo() == nil {
607 ms.StoreMessageInfo(mi)
608 }
609 return ms
610 }
611 return mi.MessageOf(x)
612 }
613
614
615 func (*EndpointsConfigDump) Descriptor() ([]byte, []int) {
616 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{8}
617 }
618
619 func (x *EndpointsConfigDump) GetStaticEndpointConfigs() []*EndpointsConfigDump_StaticEndpointConfig {
620 if x != nil {
621 return x.StaticEndpointConfigs
622 }
623 return nil
624 }
625
626 func (x *EndpointsConfigDump) GetDynamicEndpointConfigs() []*EndpointsConfigDump_DynamicEndpointConfig {
627 if x != nil {
628 return x.DynamicEndpointConfigs
629 }
630 return nil
631 }
632
633
634 type ListenersConfigDump_StaticListener struct {
635 state protoimpl.MessageState
636 sizeCache protoimpl.SizeCache
637 unknownFields protoimpl.UnknownFields
638
639
640 Listener *any.Any `protobuf:"bytes,1,opt,name=listener,proto3" json:"listener,omitempty"`
641
642 LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
643 }
644
645 func (x *ListenersConfigDump_StaticListener) Reset() {
646 *x = ListenersConfigDump_StaticListener{}
647 if protoimpl.UnsafeEnabled {
648 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[9]
649 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
650 ms.StoreMessageInfo(mi)
651 }
652 }
653
654 func (x *ListenersConfigDump_StaticListener) String() string {
655 return protoimpl.X.MessageStringOf(x)
656 }
657
658 func (*ListenersConfigDump_StaticListener) ProtoMessage() {}
659
660 func (x *ListenersConfigDump_StaticListener) ProtoReflect() protoreflect.Message {
661 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[9]
662 if protoimpl.UnsafeEnabled && x != nil {
663 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
664 if ms.LoadMessageInfo() == nil {
665 ms.StoreMessageInfo(mi)
666 }
667 return ms
668 }
669 return mi.MessageOf(x)
670 }
671
672
673 func (*ListenersConfigDump_StaticListener) Descriptor() ([]byte, []int) {
674 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{3, 0}
675 }
676
677 func (x *ListenersConfigDump_StaticListener) GetListener() *any.Any {
678 if x != nil {
679 return x.Listener
680 }
681 return nil
682 }
683
684 func (x *ListenersConfigDump_StaticListener) GetLastUpdated() *timestamp.Timestamp {
685 if x != nil {
686 return x.LastUpdated
687 }
688 return nil
689 }
690
691 type ListenersConfigDump_DynamicListenerState struct {
692 state protoimpl.MessageState
693 sizeCache protoimpl.SizeCache
694 unknownFields protoimpl.UnknownFields
695
696
697
698
699
700 VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
701
702 Listener *any.Any `protobuf:"bytes,2,opt,name=listener,proto3" json:"listener,omitempty"`
703
704 LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
705 }
706
707 func (x *ListenersConfigDump_DynamicListenerState) Reset() {
708 *x = ListenersConfigDump_DynamicListenerState{}
709 if protoimpl.UnsafeEnabled {
710 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[10]
711 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
712 ms.StoreMessageInfo(mi)
713 }
714 }
715
716 func (x *ListenersConfigDump_DynamicListenerState) String() string {
717 return protoimpl.X.MessageStringOf(x)
718 }
719
720 func (*ListenersConfigDump_DynamicListenerState) ProtoMessage() {}
721
722 func (x *ListenersConfigDump_DynamicListenerState) ProtoReflect() protoreflect.Message {
723 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[10]
724 if protoimpl.UnsafeEnabled && x != nil {
725 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
726 if ms.LoadMessageInfo() == nil {
727 ms.StoreMessageInfo(mi)
728 }
729 return ms
730 }
731 return mi.MessageOf(x)
732 }
733
734
735 func (*ListenersConfigDump_DynamicListenerState) Descriptor() ([]byte, []int) {
736 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{3, 1}
737 }
738
739 func (x *ListenersConfigDump_DynamicListenerState) GetVersionInfo() string {
740 if x != nil {
741 return x.VersionInfo
742 }
743 return ""
744 }
745
746 func (x *ListenersConfigDump_DynamicListenerState) GetListener() *any.Any {
747 if x != nil {
748 return x.Listener
749 }
750 return nil
751 }
752
753 func (x *ListenersConfigDump_DynamicListenerState) GetLastUpdated() *timestamp.Timestamp {
754 if x != nil {
755 return x.LastUpdated
756 }
757 return nil
758 }
759
760
761
762 type ListenersConfigDump_DynamicListener struct {
763 state protoimpl.MessageState
764 sizeCache protoimpl.SizeCache
765 unknownFields protoimpl.UnknownFields
766
767
768 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
769
770
771 ActiveState *ListenersConfigDump_DynamicListenerState `protobuf:"bytes,2,opt,name=active_state,json=activeState,proto3" json:"active_state,omitempty"`
772
773
774
775
776 WarmingState *ListenersConfigDump_DynamicListenerState `protobuf:"bytes,3,opt,name=warming_state,json=warmingState,proto3" json:"warming_state,omitempty"`
777
778
779
780
781 DrainingState *ListenersConfigDump_DynamicListenerState `protobuf:"bytes,4,opt,name=draining_state,json=drainingState,proto3" json:"draining_state,omitempty"`
782
783 ErrorState *UpdateFailureState `protobuf:"bytes,5,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
784 }
785
786 func (x *ListenersConfigDump_DynamicListener) Reset() {
787 *x = ListenersConfigDump_DynamicListener{}
788 if protoimpl.UnsafeEnabled {
789 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[11]
790 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
791 ms.StoreMessageInfo(mi)
792 }
793 }
794
795 func (x *ListenersConfigDump_DynamicListener) String() string {
796 return protoimpl.X.MessageStringOf(x)
797 }
798
799 func (*ListenersConfigDump_DynamicListener) ProtoMessage() {}
800
801 func (x *ListenersConfigDump_DynamicListener) ProtoReflect() protoreflect.Message {
802 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[11]
803 if protoimpl.UnsafeEnabled && x != nil {
804 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
805 if ms.LoadMessageInfo() == nil {
806 ms.StoreMessageInfo(mi)
807 }
808 return ms
809 }
810 return mi.MessageOf(x)
811 }
812
813
814 func (*ListenersConfigDump_DynamicListener) Descriptor() ([]byte, []int) {
815 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{3, 2}
816 }
817
818 func (x *ListenersConfigDump_DynamicListener) GetName() string {
819 if x != nil {
820 return x.Name
821 }
822 return ""
823 }
824
825 func (x *ListenersConfigDump_DynamicListener) GetActiveState() *ListenersConfigDump_DynamicListenerState {
826 if x != nil {
827 return x.ActiveState
828 }
829 return nil
830 }
831
832 func (x *ListenersConfigDump_DynamicListener) GetWarmingState() *ListenersConfigDump_DynamicListenerState {
833 if x != nil {
834 return x.WarmingState
835 }
836 return nil
837 }
838
839 func (x *ListenersConfigDump_DynamicListener) GetDrainingState() *ListenersConfigDump_DynamicListenerState {
840 if x != nil {
841 return x.DrainingState
842 }
843 return nil
844 }
845
846 func (x *ListenersConfigDump_DynamicListener) GetErrorState() *UpdateFailureState {
847 if x != nil {
848 return x.ErrorState
849 }
850 return nil
851 }
852
853
854 type ClustersConfigDump_StaticCluster struct {
855 state protoimpl.MessageState
856 sizeCache protoimpl.SizeCache
857 unknownFields protoimpl.UnknownFields
858
859
860 Cluster *any.Any `protobuf:"bytes,1,opt,name=cluster,proto3" json:"cluster,omitempty"`
861
862 LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
863 }
864
865 func (x *ClustersConfigDump_StaticCluster) Reset() {
866 *x = ClustersConfigDump_StaticCluster{}
867 if protoimpl.UnsafeEnabled {
868 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[12]
869 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
870 ms.StoreMessageInfo(mi)
871 }
872 }
873
874 func (x *ClustersConfigDump_StaticCluster) String() string {
875 return protoimpl.X.MessageStringOf(x)
876 }
877
878 func (*ClustersConfigDump_StaticCluster) ProtoMessage() {}
879
880 func (x *ClustersConfigDump_StaticCluster) ProtoReflect() protoreflect.Message {
881 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[12]
882 if protoimpl.UnsafeEnabled && x != nil {
883 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
884 if ms.LoadMessageInfo() == nil {
885 ms.StoreMessageInfo(mi)
886 }
887 return ms
888 }
889 return mi.MessageOf(x)
890 }
891
892
893 func (*ClustersConfigDump_StaticCluster) Descriptor() ([]byte, []int) {
894 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{4, 0}
895 }
896
897 func (x *ClustersConfigDump_StaticCluster) GetCluster() *any.Any {
898 if x != nil {
899 return x.Cluster
900 }
901 return nil
902 }
903
904 func (x *ClustersConfigDump_StaticCluster) GetLastUpdated() *timestamp.Timestamp {
905 if x != nil {
906 return x.LastUpdated
907 }
908 return nil
909 }
910
911
912 type ClustersConfigDump_DynamicCluster struct {
913 state protoimpl.MessageState
914 sizeCache protoimpl.SizeCache
915 unknownFields protoimpl.UnknownFields
916
917
918
919
920
921 VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
922
923 Cluster *any.Any `protobuf:"bytes,2,opt,name=cluster,proto3" json:"cluster,omitempty"`
924
925 LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
926 }
927
928 func (x *ClustersConfigDump_DynamicCluster) Reset() {
929 *x = ClustersConfigDump_DynamicCluster{}
930 if protoimpl.UnsafeEnabled {
931 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[13]
932 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
933 ms.StoreMessageInfo(mi)
934 }
935 }
936
937 func (x *ClustersConfigDump_DynamicCluster) String() string {
938 return protoimpl.X.MessageStringOf(x)
939 }
940
941 func (*ClustersConfigDump_DynamicCluster) ProtoMessage() {}
942
943 func (x *ClustersConfigDump_DynamicCluster) ProtoReflect() protoreflect.Message {
944 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[13]
945 if protoimpl.UnsafeEnabled && x != nil {
946 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
947 if ms.LoadMessageInfo() == nil {
948 ms.StoreMessageInfo(mi)
949 }
950 return ms
951 }
952 return mi.MessageOf(x)
953 }
954
955
956 func (*ClustersConfigDump_DynamicCluster) Descriptor() ([]byte, []int) {
957 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{4, 1}
958 }
959
960 func (x *ClustersConfigDump_DynamicCluster) GetVersionInfo() string {
961 if x != nil {
962 return x.VersionInfo
963 }
964 return ""
965 }
966
967 func (x *ClustersConfigDump_DynamicCluster) GetCluster() *any.Any {
968 if x != nil {
969 return x.Cluster
970 }
971 return nil
972 }
973
974 func (x *ClustersConfigDump_DynamicCluster) GetLastUpdated() *timestamp.Timestamp {
975 if x != nil {
976 return x.LastUpdated
977 }
978 return nil
979 }
980
981 type RoutesConfigDump_StaticRouteConfig struct {
982 state protoimpl.MessageState
983 sizeCache protoimpl.SizeCache
984 unknownFields protoimpl.UnknownFields
985
986
987 RouteConfig *any.Any `protobuf:"bytes,1,opt,name=route_config,json=routeConfig,proto3" json:"route_config,omitempty"`
988
989 LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
990 }
991
992 func (x *RoutesConfigDump_StaticRouteConfig) Reset() {
993 *x = RoutesConfigDump_StaticRouteConfig{}
994 if protoimpl.UnsafeEnabled {
995 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[14]
996 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
997 ms.StoreMessageInfo(mi)
998 }
999 }
1000
1001 func (x *RoutesConfigDump_StaticRouteConfig) String() string {
1002 return protoimpl.X.MessageStringOf(x)
1003 }
1004
1005 func (*RoutesConfigDump_StaticRouteConfig) ProtoMessage() {}
1006
1007 func (x *RoutesConfigDump_StaticRouteConfig) ProtoReflect() protoreflect.Message {
1008 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[14]
1009 if protoimpl.UnsafeEnabled && x != nil {
1010 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1011 if ms.LoadMessageInfo() == nil {
1012 ms.StoreMessageInfo(mi)
1013 }
1014 return ms
1015 }
1016 return mi.MessageOf(x)
1017 }
1018
1019
1020 func (*RoutesConfigDump_StaticRouteConfig) Descriptor() ([]byte, []int) {
1021 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{5, 0}
1022 }
1023
1024 func (x *RoutesConfigDump_StaticRouteConfig) GetRouteConfig() *any.Any {
1025 if x != nil {
1026 return x.RouteConfig
1027 }
1028 return nil
1029 }
1030
1031 func (x *RoutesConfigDump_StaticRouteConfig) GetLastUpdated() *timestamp.Timestamp {
1032 if x != nil {
1033 return x.LastUpdated
1034 }
1035 return nil
1036 }
1037
1038 type RoutesConfigDump_DynamicRouteConfig struct {
1039 state protoimpl.MessageState
1040 sizeCache protoimpl.SizeCache
1041 unknownFields protoimpl.UnknownFields
1042
1043
1044
1045
1046 VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
1047
1048 RouteConfig *any.Any `protobuf:"bytes,2,opt,name=route_config,json=routeConfig,proto3" json:"route_config,omitempty"`
1049
1050 LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1051 }
1052
1053 func (x *RoutesConfigDump_DynamicRouteConfig) Reset() {
1054 *x = RoutesConfigDump_DynamicRouteConfig{}
1055 if protoimpl.UnsafeEnabled {
1056 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[15]
1057 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1058 ms.StoreMessageInfo(mi)
1059 }
1060 }
1061
1062 func (x *RoutesConfigDump_DynamicRouteConfig) String() string {
1063 return protoimpl.X.MessageStringOf(x)
1064 }
1065
1066 func (*RoutesConfigDump_DynamicRouteConfig) ProtoMessage() {}
1067
1068 func (x *RoutesConfigDump_DynamicRouteConfig) ProtoReflect() protoreflect.Message {
1069 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[15]
1070 if protoimpl.UnsafeEnabled && x != nil {
1071 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1072 if ms.LoadMessageInfo() == nil {
1073 ms.StoreMessageInfo(mi)
1074 }
1075 return ms
1076 }
1077 return mi.MessageOf(x)
1078 }
1079
1080
1081 func (*RoutesConfigDump_DynamicRouteConfig) Descriptor() ([]byte, []int) {
1082 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{5, 1}
1083 }
1084
1085 func (x *RoutesConfigDump_DynamicRouteConfig) GetVersionInfo() string {
1086 if x != nil {
1087 return x.VersionInfo
1088 }
1089 return ""
1090 }
1091
1092 func (x *RoutesConfigDump_DynamicRouteConfig) GetRouteConfig() *any.Any {
1093 if x != nil {
1094 return x.RouteConfig
1095 }
1096 return nil
1097 }
1098
1099 func (x *RoutesConfigDump_DynamicRouteConfig) GetLastUpdated() *timestamp.Timestamp {
1100 if x != nil {
1101 return x.LastUpdated
1102 }
1103 return nil
1104 }
1105
1106 type ScopedRoutesConfigDump_InlineScopedRouteConfigs struct {
1107 state protoimpl.MessageState
1108 sizeCache protoimpl.SizeCache
1109 unknownFields protoimpl.UnknownFields
1110
1111
1112 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1113
1114 ScopedRouteConfigs []*any.Any `protobuf:"bytes,2,rep,name=scoped_route_configs,json=scopedRouteConfigs,proto3" json:"scoped_route_configs,omitempty"`
1115
1116 LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1117 }
1118
1119 func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) Reset() {
1120 *x = ScopedRoutesConfigDump_InlineScopedRouteConfigs{}
1121 if protoimpl.UnsafeEnabled {
1122 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[16]
1123 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1124 ms.StoreMessageInfo(mi)
1125 }
1126 }
1127
1128 func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) String() string {
1129 return protoimpl.X.MessageStringOf(x)
1130 }
1131
1132 func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoMessage() {}
1133
1134 func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoReflect() protoreflect.Message {
1135 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[16]
1136 if protoimpl.UnsafeEnabled && x != nil {
1137 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1138 if ms.LoadMessageInfo() == nil {
1139 ms.StoreMessageInfo(mi)
1140 }
1141 return ms
1142 }
1143 return mi.MessageOf(x)
1144 }
1145
1146
1147 func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) Descriptor() ([]byte, []int) {
1148 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{6, 0}
1149 }
1150
1151 func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetName() string {
1152 if x != nil {
1153 return x.Name
1154 }
1155 return ""
1156 }
1157
1158 func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetScopedRouteConfigs() []*any.Any {
1159 if x != nil {
1160 return x.ScopedRouteConfigs
1161 }
1162 return nil
1163 }
1164
1165 func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetLastUpdated() *timestamp.Timestamp {
1166 if x != nil {
1167 return x.LastUpdated
1168 }
1169 return nil
1170 }
1171
1172 type ScopedRoutesConfigDump_DynamicScopedRouteConfigs struct {
1173 state protoimpl.MessageState
1174 sizeCache protoimpl.SizeCache
1175 unknownFields protoimpl.UnknownFields
1176
1177
1178 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1179
1180
1181
1182 VersionInfo string `protobuf:"bytes,2,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
1183
1184 ScopedRouteConfigs []*any.Any `protobuf:"bytes,3,rep,name=scoped_route_configs,json=scopedRouteConfigs,proto3" json:"scoped_route_configs,omitempty"`
1185
1186 LastUpdated *timestamp.Timestamp `protobuf:"bytes,4,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1187 }
1188
1189 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Reset() {
1190 *x = ScopedRoutesConfigDump_DynamicScopedRouteConfigs{}
1191 if protoimpl.UnsafeEnabled {
1192 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[17]
1193 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1194 ms.StoreMessageInfo(mi)
1195 }
1196 }
1197
1198 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) String() string {
1199 return protoimpl.X.MessageStringOf(x)
1200 }
1201
1202 func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoMessage() {}
1203
1204 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoReflect() protoreflect.Message {
1205 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[17]
1206 if protoimpl.UnsafeEnabled && x != nil {
1207 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1208 if ms.LoadMessageInfo() == nil {
1209 ms.StoreMessageInfo(mi)
1210 }
1211 return ms
1212 }
1213 return mi.MessageOf(x)
1214 }
1215
1216
1217 func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Descriptor() ([]byte, []int) {
1218 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{6, 1}
1219 }
1220
1221 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetName() string {
1222 if x != nil {
1223 return x.Name
1224 }
1225 return ""
1226 }
1227
1228 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetVersionInfo() string {
1229 if x != nil {
1230 return x.VersionInfo
1231 }
1232 return ""
1233 }
1234
1235 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetScopedRouteConfigs() []*any.Any {
1236 if x != nil {
1237 return x.ScopedRouteConfigs
1238 }
1239 return nil
1240 }
1241
1242 func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetLastUpdated() *timestamp.Timestamp {
1243 if x != nil {
1244 return x.LastUpdated
1245 }
1246 return nil
1247 }
1248
1249
1250 type SecretsConfigDump_DynamicSecret struct {
1251 state protoimpl.MessageState
1252 sizeCache protoimpl.SizeCache
1253 unknownFields protoimpl.UnknownFields
1254
1255
1256 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1257
1258 VersionInfo string `protobuf:"bytes,2,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
1259
1260 LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1261
1262
1263
1264 Secret *any.Any `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"`
1265 }
1266
1267 func (x *SecretsConfigDump_DynamicSecret) Reset() {
1268 *x = SecretsConfigDump_DynamicSecret{}
1269 if protoimpl.UnsafeEnabled {
1270 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[18]
1271 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1272 ms.StoreMessageInfo(mi)
1273 }
1274 }
1275
1276 func (x *SecretsConfigDump_DynamicSecret) String() string {
1277 return protoimpl.X.MessageStringOf(x)
1278 }
1279
1280 func (*SecretsConfigDump_DynamicSecret) ProtoMessage() {}
1281
1282 func (x *SecretsConfigDump_DynamicSecret) ProtoReflect() protoreflect.Message {
1283 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[18]
1284 if protoimpl.UnsafeEnabled && x != nil {
1285 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1286 if ms.LoadMessageInfo() == nil {
1287 ms.StoreMessageInfo(mi)
1288 }
1289 return ms
1290 }
1291 return mi.MessageOf(x)
1292 }
1293
1294
1295 func (*SecretsConfigDump_DynamicSecret) Descriptor() ([]byte, []int) {
1296 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{7, 0}
1297 }
1298
1299 func (x *SecretsConfigDump_DynamicSecret) GetName() string {
1300 if x != nil {
1301 return x.Name
1302 }
1303 return ""
1304 }
1305
1306 func (x *SecretsConfigDump_DynamicSecret) GetVersionInfo() string {
1307 if x != nil {
1308 return x.VersionInfo
1309 }
1310 return ""
1311 }
1312
1313 func (x *SecretsConfigDump_DynamicSecret) GetLastUpdated() *timestamp.Timestamp {
1314 if x != nil {
1315 return x.LastUpdated
1316 }
1317 return nil
1318 }
1319
1320 func (x *SecretsConfigDump_DynamicSecret) GetSecret() *any.Any {
1321 if x != nil {
1322 return x.Secret
1323 }
1324 return nil
1325 }
1326
1327
1328 type SecretsConfigDump_StaticSecret struct {
1329 state protoimpl.MessageState
1330 sizeCache protoimpl.SizeCache
1331 unknownFields protoimpl.UnknownFields
1332
1333
1334 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1335
1336 LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1337
1338
1339
1340 Secret *any.Any `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
1341 }
1342
1343 func (x *SecretsConfigDump_StaticSecret) Reset() {
1344 *x = SecretsConfigDump_StaticSecret{}
1345 if protoimpl.UnsafeEnabled {
1346 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[19]
1347 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1348 ms.StoreMessageInfo(mi)
1349 }
1350 }
1351
1352 func (x *SecretsConfigDump_StaticSecret) String() string {
1353 return protoimpl.X.MessageStringOf(x)
1354 }
1355
1356 func (*SecretsConfigDump_StaticSecret) ProtoMessage() {}
1357
1358 func (x *SecretsConfigDump_StaticSecret) ProtoReflect() protoreflect.Message {
1359 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[19]
1360 if protoimpl.UnsafeEnabled && x != nil {
1361 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1362 if ms.LoadMessageInfo() == nil {
1363 ms.StoreMessageInfo(mi)
1364 }
1365 return ms
1366 }
1367 return mi.MessageOf(x)
1368 }
1369
1370
1371 func (*SecretsConfigDump_StaticSecret) Descriptor() ([]byte, []int) {
1372 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{7, 1}
1373 }
1374
1375 func (x *SecretsConfigDump_StaticSecret) GetName() string {
1376 if x != nil {
1377 return x.Name
1378 }
1379 return ""
1380 }
1381
1382 func (x *SecretsConfigDump_StaticSecret) GetLastUpdated() *timestamp.Timestamp {
1383 if x != nil {
1384 return x.LastUpdated
1385 }
1386 return nil
1387 }
1388
1389 func (x *SecretsConfigDump_StaticSecret) GetSecret() *any.Any {
1390 if x != nil {
1391 return x.Secret
1392 }
1393 return nil
1394 }
1395
1396 type EndpointsConfigDump_StaticEndpointConfig struct {
1397 state protoimpl.MessageState
1398 sizeCache protoimpl.SizeCache
1399 unknownFields protoimpl.UnknownFields
1400
1401
1402 EndpointConfig *any.Any `protobuf:"bytes,1,opt,name=endpoint_config,json=endpointConfig,proto3" json:"endpoint_config,omitempty"`
1403
1404 LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1405 }
1406
1407 func (x *EndpointsConfigDump_StaticEndpointConfig) Reset() {
1408 *x = EndpointsConfigDump_StaticEndpointConfig{}
1409 if protoimpl.UnsafeEnabled {
1410 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[20]
1411 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1412 ms.StoreMessageInfo(mi)
1413 }
1414 }
1415
1416 func (x *EndpointsConfigDump_StaticEndpointConfig) String() string {
1417 return protoimpl.X.MessageStringOf(x)
1418 }
1419
1420 func (*EndpointsConfigDump_StaticEndpointConfig) ProtoMessage() {}
1421
1422 func (x *EndpointsConfigDump_StaticEndpointConfig) ProtoReflect() protoreflect.Message {
1423 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[20]
1424 if protoimpl.UnsafeEnabled && x != nil {
1425 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1426 if ms.LoadMessageInfo() == nil {
1427 ms.StoreMessageInfo(mi)
1428 }
1429 return ms
1430 }
1431 return mi.MessageOf(x)
1432 }
1433
1434
1435 func (*EndpointsConfigDump_StaticEndpointConfig) Descriptor() ([]byte, []int) {
1436 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{8, 0}
1437 }
1438
1439 func (x *EndpointsConfigDump_StaticEndpointConfig) GetEndpointConfig() *any.Any {
1440 if x != nil {
1441 return x.EndpointConfig
1442 }
1443 return nil
1444 }
1445
1446 func (x *EndpointsConfigDump_StaticEndpointConfig) GetLastUpdated() *timestamp.Timestamp {
1447 if x != nil {
1448 return x.LastUpdated
1449 }
1450 return nil
1451 }
1452
1453 type EndpointsConfigDump_DynamicEndpointConfig struct {
1454 state protoimpl.MessageState
1455 sizeCache protoimpl.SizeCache
1456 unknownFields protoimpl.UnknownFields
1457
1458
1459
1460
1461 VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
1462
1463 EndpointConfig *any.Any `protobuf:"bytes,2,opt,name=endpoint_config,json=endpointConfig,proto3" json:"endpoint_config,omitempty"`
1464
1465 LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
1466 }
1467
1468 func (x *EndpointsConfigDump_DynamicEndpointConfig) Reset() {
1469 *x = EndpointsConfigDump_DynamicEndpointConfig{}
1470 if protoimpl.UnsafeEnabled {
1471 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[21]
1472 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1473 ms.StoreMessageInfo(mi)
1474 }
1475 }
1476
1477 func (x *EndpointsConfigDump_DynamicEndpointConfig) String() string {
1478 return protoimpl.X.MessageStringOf(x)
1479 }
1480
1481 func (*EndpointsConfigDump_DynamicEndpointConfig) ProtoMessage() {}
1482
1483 func (x *EndpointsConfigDump_DynamicEndpointConfig) ProtoReflect() protoreflect.Message {
1484 mi := &file_envoy_admin_v4alpha_config_dump_proto_msgTypes[21]
1485 if protoimpl.UnsafeEnabled && x != nil {
1486 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1487 if ms.LoadMessageInfo() == nil {
1488 ms.StoreMessageInfo(mi)
1489 }
1490 return ms
1491 }
1492 return mi.MessageOf(x)
1493 }
1494
1495
1496 func (*EndpointsConfigDump_DynamicEndpointConfig) Descriptor() ([]byte, []int) {
1497 return file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP(), []int{8, 1}
1498 }
1499
1500 func (x *EndpointsConfigDump_DynamicEndpointConfig) GetVersionInfo() string {
1501 if x != nil {
1502 return x.VersionInfo
1503 }
1504 return ""
1505 }
1506
1507 func (x *EndpointsConfigDump_DynamicEndpointConfig) GetEndpointConfig() *any.Any {
1508 if x != nil {
1509 return x.EndpointConfig
1510 }
1511 return nil
1512 }
1513
1514 func (x *EndpointsConfigDump_DynamicEndpointConfig) GetLastUpdated() *timestamp.Timestamp {
1515 if x != nil {
1516 return x.LastUpdated
1517 }
1518 return nil
1519 }
1520
1521 var File_envoy_admin_v4alpha_config_dump_proto protoreflect.FileDescriptor
1522
1523 var file_envoy_admin_v4alpha_config_dump_proto_rawDesc = []byte{
1524 0x0a, 0x25, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2f, 0x76, 0x34,
1525 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x64, 0x75, 0x6d,
1526 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x13, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61,
1527 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x1a, 0x2e, 0x65, 0x6e,
1528 0x76, 0x6f, 0x79, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x62, 0x6f, 0x6f, 0x74, 0x73,
1529 0x74, 0x72, 0x61, 0x70, 0x2f, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2f, 0x62, 0x6f, 0x6f,
1530 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f,
1531 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e,
1532 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
1533 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
1534 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x75, 0x64, 0x70, 0x61, 0x2f, 0x61,
1535 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75,
1536 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x21, 0x75, 0x64, 0x70, 0x61, 0x2f, 0x61, 0x6e,
1537 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
1538 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5e, 0x0a, 0x0a, 0x43, 0x6f,
1539 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x12, 0x2e, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66,
1540 0x69, 0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
1541 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52,
1542 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x3a, 0x20, 0x9a, 0xc5, 0x88, 0x1e, 0x1b, 0x0a,
1543 0x19, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e,
1544 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x22, 0xed, 0x01, 0x0a, 0x12, 0x55,
1545 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74,
1546 0x65, 0x12, 0x47, 0x0a, 0x14, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
1547 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
1548 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
1549 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x13, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x43, 0x6f, 0x6e,
1550 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a, 0x13, 0x6c, 0x61,
1551 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6d, 0x70,
1552 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
1553 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
1554 0x61, 0x6d, 0x70, 0x52, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41,
1555 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
1556 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
1557 0x3a, 0x28, 0x9a, 0xc5, 0x88, 0x1e, 0x23, 0x0a, 0x21, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61,
1558 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61,
1559 0x69, 0x6c, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x22, 0xc8, 0x01, 0x0a, 0x13, 0x42,
1560 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75,
1561 0x6d, 0x70, 0x12, 0x47, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x18,
1562 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x63, 0x6f,
1563 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x62, 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x2e, 0x76,
1564 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x42, 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70,
1565 0x52, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x12, 0x3d, 0x0a, 0x0c, 0x6c,
1566 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
1567 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
1568 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c,
1569 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x29, 0x9a, 0xc5, 0x88, 0x1e,
1570 0x24, 0x0a, 0x22, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76,
1571 0x33, 0x2e, 0x42, 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69,
1572 0x67, 0x44, 0x75, 0x6d, 0x70, 0x22, 0xb2, 0x09, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
1573 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x12, 0x21, 0x0a,
1574 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
1575 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
1576 0x12, 0x62, 0x0a, 0x10, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x65,
1577 0x6e, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x65, 0x6e, 0x76,
1578 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61,
1579 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1580 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65,
1581 0x6e, 0x65, 0x72, 0x52, 0x0f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65,
1582 0x6e, 0x65, 0x72, 0x73, 0x12, 0x65, 0x0a, 0x11, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f,
1583 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
1584 0x38, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34,
1585 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x43,
1586 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69,
1587 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x52, 0x10, 0x64, 0x79, 0x6e, 0x61, 0x6d,
1588 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x1a, 0xbb, 0x01, 0x0a, 0x0e,
1589 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x12, 0x30,
1590 0x0a, 0x08, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
1591 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
1592 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x08, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
1593 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
1594 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
1595 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
1596 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a,
1597 0x38, 0x9a, 0xc5, 0x88, 0x1e, 0x33, 0x0a, 0x31, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64,
1598 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73,
1599 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69,
1600 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x1a, 0xea, 0x01, 0x0a, 0x14, 0x44, 0x79,
1601 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x53, 0x74, 0x61,
1602 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
1603 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
1604 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x08, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
1605 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
1606 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x08, 0x6c,
1607 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f,
1608 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
1609 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
1610 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55,
1611 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x3e, 0x9a, 0xc5, 0x88, 0x1e, 0x39, 0x0a, 0x37, 0x65,
1612 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x4c, 0x69,
1613 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d,
1614 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
1615 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x1a, 0xd6, 0x03, 0x0a, 0x0f, 0x44, 0x79, 0x6e, 0x61, 0x6d,
1616 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
1617 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x60,
1618 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02,
1619 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d,
1620 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x65,
1621 0x6e, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44,
1622 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x53, 0x74,
1623 0x61, 0x74, 0x65, 0x52, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65,
1624 0x12, 0x62, 0x0a, 0x0d, 0x77, 0x61, 0x72, 0x6d, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74,
1625 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e,
1626 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4c, 0x69,
1627 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d,
1628 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
1629 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0c, 0x77, 0x61, 0x72, 0x6d, 0x69, 0x6e, 0x67, 0x53,
1630 0x74, 0x61, 0x74, 0x65, 0x12, 0x64, 0x0a, 0x0e, 0x64, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67,
1631 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x65,
1632 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70,
1633 0x68, 0x61, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66,
1634 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69,
1635 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0d, 0x64, 0x72, 0x61,
1636 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x0b, 0x65, 0x72,
1637 0x72, 0x6f, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
1638 0x27, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34,
1639 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61, 0x69, 0x6c,
1640 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x53,
1641 0x74, 0x61, 0x74, 0x65, 0x3a, 0x39, 0x9a, 0xc5, 0x88, 0x1e, 0x34, 0x0a, 0x32, 0x65, 0x6e, 0x76,
1642 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x4c, 0x69, 0x73, 0x74,
1643 0x65, 0x6e, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e,
1644 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x3a,
1645 0x29, 0x9a, 0xc5, 0x88, 0x1e, 0x24, 0x0a, 0x22, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64,
1646 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73,
1647 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x22, 0xba, 0x06, 0x0a, 0x12, 0x43,
1648 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d,
1649 0x70, 0x12, 0x21, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66,
1650 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
1651 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5e, 0x0a, 0x0f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x5f, 0x63,
1652 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e,
1653 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c,
1654 0x70, 0x68, 0x61, 0x2e, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66,
1655 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x43, 0x6c, 0x75,
1656 0x73, 0x74, 0x65, 0x72, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x43, 0x6c, 0x75, 0x73,
1657 0x74, 0x65, 0x72, 0x73, 0x12, 0x6e, 0x0a, 0x17, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f,
1658 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18,
1659 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64,
1660 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x43, 0x6c, 0x75, 0x73,
1661 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44,
1662 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x15, 0x64,
1663 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x6c, 0x75, 0x73,
1664 0x74, 0x65, 0x72, 0x73, 0x12, 0x70, 0x0a, 0x18, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f,
1665 0x77, 0x61, 0x72, 0x6d, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73,
1666 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61,
1667 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x43, 0x6c, 0x75,
1668 0x73, 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e,
1669 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x16,
1670 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x57, 0x61, 0x72, 0x6d, 0x69, 0x6e, 0x67, 0x43, 0x6c,
1671 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x1a, 0xb6, 0x01, 0x0a, 0x0d, 0x53, 0x74, 0x61, 0x74, 0x69,
1672 0x63, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2e, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x73,
1673 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
1674 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52,
1675 0x07, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74,
1676 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
1677 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
1678 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74,
1679 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x36, 0x9a, 0xc5, 0x88, 0x1e, 0x31, 0x0a, 0x2f,
1680 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x43,
1681 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d,
1682 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x1a,
1683 0xdb, 0x01, 0x0a, 0x0e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x6c, 0x75, 0x73, 0x74,
1684 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
1685 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
1686 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2e, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
1687 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
1688 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x07, 0x63, 0x6c,
1689 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70,
1690 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
1691 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
1692 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64,
1693 0x61, 0x74, 0x65, 0x64, 0x3a, 0x37, 0x9a, 0xc5, 0x88, 0x1e, 0x32, 0x0a, 0x30, 0x65, 0x6e, 0x76,
1694 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x43, 0x6c, 0x75, 0x73,
1695 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44,
1696 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x3a, 0x28, 0x9a,
1697 0xc5, 0x88, 0x1e, 0x23, 0x0a, 0x21, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69,
1698 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x6e,
1699 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x22, 0xc8, 0x05, 0x0a, 0x10, 0x52, 0x6f, 0x75, 0x74,
1700 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x12, 0x69, 0x0a, 0x14,
1701 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
1702 0x66, 0x69, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x65, 0x6e, 0x76,
1703 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61,
1704 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d,
1705 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e,
1706 0x66, 0x69, 0x67, 0x52, 0x12, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x52, 0x6f, 0x75, 0x74, 0x65,
1707 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x6c, 0x0a, 0x15, 0x64, 0x79, 0x6e, 0x61, 0x6d,
1708 0x69, 0x63, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73,
1709 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61,
1710 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x52, 0x6f, 0x75,
1711 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79,
1712 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1713 0x52, 0x13, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f,
1714 0x6e, 0x66, 0x69, 0x67, 0x73, 0x1a, 0xc5, 0x01, 0x0a, 0x11, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63,
1715 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x37, 0x0a, 0x0c, 0x72,
1716 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
1717 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
1718 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x0b, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f,
1719 0x6e, 0x66, 0x69, 0x67, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64,
1720 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
1721 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
1722 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61,
1723 0x74, 0x65, 0x64, 0x3a, 0x38, 0x9a, 0xc5, 0x88, 0x1e, 0x33, 0x0a, 0x31, 0x65, 0x6e, 0x76, 0x6f,
1724 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65,
1725 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74,
1726 0x69, 0x63, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0xea, 0x01,
1727 0x0a, 0x12, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f,
1728 0x6e, 0x66, 0x69, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
1729 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73,
1730 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x0c, 0x72, 0x6f, 0x75, 0x74, 0x65,
1731 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
1732 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
1733 0x41, 0x6e, 0x79, 0x52, 0x0b, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1734 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
1735 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
1736 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
1737 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a,
1738 0x39, 0x9a, 0xc5, 0x88, 0x1e, 0x34, 0x0a, 0x32, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64,
1739 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e,
1740 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x52,
1741 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x26, 0x9a, 0xc5, 0x88, 0x1e,
1742 0x21, 0x0a, 0x1f, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76,
1743 0x33, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75,
1744 0x6d, 0x70, 0x22, 0xf8, 0x06, 0x0a, 0x16, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75,
1745 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x12, 0x83, 0x01,
1746 0x0a, 0x1b, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x5f,
1747 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x01, 0x20,
1748 0x03, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69,
1749 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64,
1750 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70,
1751 0x2e, 0x49, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75,
1752 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x18, 0x69, 0x6e, 0x6c, 0x69, 0x6e,
1753 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,
1754 0x69, 0x67, 0x73, 0x12, 0x86, 0x01, 0x0a, 0x1c, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f,
1755 0x73, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
1756 0x66, 0x69, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x65, 0x6e, 0x76,
1757 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61,
1758 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e,
1759 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53,
1760 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1761 0x73, 0x52, 0x19, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64,
1762 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x1a, 0xfc, 0x01, 0x0a,
1763 0x18, 0x49, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75,
1764 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
1765 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x46, 0x0a,
1766 0x14, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f,
1767 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f,
1768 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e,
1769 0x79, 0x52, 0x12, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f,
1770 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70,
1771 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
1772 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
1773 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64,
1774 0x61, 0x74, 0x65, 0x64, 0x3a, 0x45, 0x9a, 0xc5, 0x88, 0x1e, 0x40, 0x0a, 0x3e, 0x65, 0x6e, 0x76,
1775 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x53, 0x63, 0x6f, 0x70,
1776 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75,
1777 0x6d, 0x70, 0x2e, 0x49, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52,
1778 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x1a, 0xa1, 0x02, 0x0a, 0x19,
1779 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75,
1780 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
1781 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a,
1782 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20,
1783 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
1784 0x12, 0x46, 0x0a, 0x14, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65,
1785 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14,
1786 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
1787 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x12, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74,
1788 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74,
1789 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
1790 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
1791 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74,
1792 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x46, 0x9a, 0xc5, 0x88, 0x1e, 0x41, 0x0a, 0x3f,
1793 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x53,
1794 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69,
1795 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x63, 0x6f,
1796 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x3a,
1797 0x2c, 0x9a, 0xc5, 0x88, 0x1e, 0x27, 0x0a, 0x25, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64,
1798 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x64, 0x52, 0x6f, 0x75,
1799 0x74, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x22, 0xa7, 0x06,
1800 0x0a, 0x11, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
1801 0x75, 0x6d, 0x70, 0x12, 0x5a, 0x0a, 0x0e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x5f, 0x73, 0x65,
1802 0x63, 0x72, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x65, 0x6e,
1803 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68,
1804 0x61, 0x2e, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
1805 0x75, 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
1806 0x52, 0x0d, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x12,
1807 0x6a, 0x0a, 0x16, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76,
1808 0x65, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
1809 0x34, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34,
1810 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f, 0x6e,
1811 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53,
1812 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x14, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x41, 0x63,
1813 0x74, 0x69, 0x76, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x12, 0x6c, 0x0a, 0x17, 0x64,
1814 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x77, 0x61, 0x72, 0x6d, 0x69, 0x6e, 0x67, 0x5f, 0x73,
1815 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x65,
1816 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70,
1817 0x68, 0x61, 0x2e, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1818 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x63, 0x72,
1819 0x65, 0x74, 0x52, 0x15, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x57, 0x61, 0x72, 0x6d, 0x69,
1820 0x6e, 0x67, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x1a, 0xea, 0x01, 0x0a, 0x0d, 0x44, 0x79,
1821 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
1822 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
1823 0x21, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
1824 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
1825 0x66, 0x6f, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74,
1826 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
1827 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
1828 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
1829 0x64, 0x12, 0x2c, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
1830 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
1831 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x3a,
1832 0x35, 0x9a, 0xc5, 0x88, 0x1e, 0x30, 0x0a, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64,
1833 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f,
1834 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63,
1835 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x1a, 0xc5, 0x01, 0x0a, 0x0c, 0x53, 0x74, 0x61, 0x74, 0x69,
1836 0x63, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
1837 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3d, 0x0a, 0x0c, 0x6c,
1838 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
1839 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
1840 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c,
1841 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x2c, 0x0a, 0x06, 0x73, 0x65,
1842 0x63, 0x72, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f,
1843 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79,
1844 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x3a, 0x34, 0x9a, 0xc5, 0x88, 0x1e, 0x2f, 0x0a,
1845 0x2d, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e,
1846 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d,
1847 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x3a, 0x27,
1848 0x9a, 0xc5, 0x88, 0x1e, 0x22, 0x0a, 0x20, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d,
1849 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6f, 0x6e,
1850 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x22, 0x84, 0x06, 0x0a, 0x13, 0x45, 0x6e, 0x64, 0x70,
1851 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x12,
1852 0x75, 0x0a, 0x17, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x5f, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69,
1853 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,
1854 0x32, 0x3d, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76,
1855 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73,
1856 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69,
1857 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
1858 0x15, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x43,
1859 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x78, 0x0a, 0x18, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69,
1860 0x63, 0x5f, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
1861 0x67, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79,
1862 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45,
1863 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75,
1864 0x6d, 0x70, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69,
1865 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x16, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69,
1866 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73,
1867 0x1a, 0xd4, 0x01, 0x0a, 0x14, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f,
1868 0x69, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x3d, 0x0a, 0x0f, 0x65, 0x6e, 0x64,
1869 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01, 0x20, 0x01,
1870 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
1871 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x0e, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69,
1872 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74,
1873 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
1874 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
1875 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74,
1876 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x3e, 0x9a, 0xc5, 0x88, 0x1e, 0x39, 0x0a, 0x37,
1877 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x45,
1878 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75,
1879 0x6d, 0x70, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e,
1880 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0xf9, 0x01, 0x0a, 0x15, 0x44, 0x79, 0x6e, 0x61,
1881 0x6d, 0x69, 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
1882 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66,
1883 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
1884 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3d, 0x0a, 0x0f, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74,
1885 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
1886 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
1887 0x41, 0x6e, 0x79, 0x52, 0x0e, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x43, 0x6f, 0x6e,
1888 0x66, 0x69, 0x67, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
1889 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
1890 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
1891 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74,
1892 0x65, 0x64, 0x3a, 0x3f, 0x9a, 0xc5, 0x88, 0x1e, 0x3a, 0x0a, 0x38, 0x65, 0x6e, 0x76, 0x6f, 0x79,
1893 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69,
1894 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x2e, 0x44, 0x79,
1895 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x43, 0x6f, 0x6e,
1896 0x66, 0x69, 0x67, 0x3a, 0x29, 0x9a, 0xc5, 0x88, 0x1e, 0x24, 0x0a, 0x22, 0x65, 0x6e, 0x76, 0x6f,
1897 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x45, 0x6e, 0x64, 0x70, 0x6f,
1898 0x69, 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x42, 0x3e,
1899 0x0a, 0x21, 0x69, 0x6f, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e,
1900 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c,
1901 0x70, 0x68, 0x61, 0x42, 0x0f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x75, 0x6d, 0x70, 0x50,
1902 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0xba, 0x80, 0xc8, 0xd1, 0x06, 0x02, 0x10, 0x03, 0x62, 0x06,
1903 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
1904 }
1905
1906 var (
1907 file_envoy_admin_v4alpha_config_dump_proto_rawDescOnce sync.Once
1908 file_envoy_admin_v4alpha_config_dump_proto_rawDescData = file_envoy_admin_v4alpha_config_dump_proto_rawDesc
1909 )
1910
1911 func file_envoy_admin_v4alpha_config_dump_proto_rawDescGZIP() []byte {
1912 file_envoy_admin_v4alpha_config_dump_proto_rawDescOnce.Do(func() {
1913 file_envoy_admin_v4alpha_config_dump_proto_rawDescData = protoimpl.X.CompressGZIP(file_envoy_admin_v4alpha_config_dump_proto_rawDescData)
1914 })
1915 return file_envoy_admin_v4alpha_config_dump_proto_rawDescData
1916 }
1917
1918 var file_envoy_admin_v4alpha_config_dump_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
1919 var file_envoy_admin_v4alpha_config_dump_proto_goTypes = []interface{}{
1920 (*ConfigDump)(nil),
1921 (*UpdateFailureState)(nil),
1922 (*BootstrapConfigDump)(nil),
1923 (*ListenersConfigDump)(nil),
1924 (*ClustersConfigDump)(nil),
1925 (*RoutesConfigDump)(nil),
1926 (*ScopedRoutesConfigDump)(nil),
1927 (*SecretsConfigDump)(nil),
1928 (*EndpointsConfigDump)(nil),
1929 (*ListenersConfigDump_StaticListener)(nil),
1930 (*ListenersConfigDump_DynamicListenerState)(nil),
1931 (*ListenersConfigDump_DynamicListener)(nil),
1932 (*ClustersConfigDump_StaticCluster)(nil),
1933 (*ClustersConfigDump_DynamicCluster)(nil),
1934 (*RoutesConfigDump_StaticRouteConfig)(nil),
1935 (*RoutesConfigDump_DynamicRouteConfig)(nil),
1936 (*ScopedRoutesConfigDump_InlineScopedRouteConfigs)(nil),
1937 (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs)(nil),
1938 (*SecretsConfigDump_DynamicSecret)(nil),
1939 (*SecretsConfigDump_StaticSecret)(nil),
1940 (*EndpointsConfigDump_StaticEndpointConfig)(nil),
1941 (*EndpointsConfigDump_DynamicEndpointConfig)(nil),
1942 (*any.Any)(nil),
1943 (*timestamp.Timestamp)(nil),
1944 (*v4alpha.Bootstrap)(nil),
1945 }
1946 var file_envoy_admin_v4alpha_config_dump_proto_depIdxs = []int32{
1947 22,
1948 22,
1949 23,
1950 24,
1951 23,
1952 9,
1953 11,
1954 12,
1955 13,
1956 13,
1957 14,
1958 15,
1959 16,
1960 17,
1961 19,
1962 18,
1963 18,
1964 20,
1965 21,
1966 22,
1967 23,
1968 22,
1969 23,
1970 10,
1971 10,
1972 10,
1973 1,
1974 22,
1975 23,
1976 22,
1977 23,
1978 22,
1979 23,
1980 22,
1981 23,
1982 22,
1983 23,
1984 22,
1985 23,
1986 23,
1987 22,
1988 23,
1989 22,
1990 22,
1991 23,
1992 22,
1993 23,
1994 47,
1995 47,
1996 47,
1997 47,
1998 0,
1999 }
2000
2001 func init() { file_envoy_admin_v4alpha_config_dump_proto_init() }
2002 func file_envoy_admin_v4alpha_config_dump_proto_init() {
2003 if File_envoy_admin_v4alpha_config_dump_proto != nil {
2004 return
2005 }
2006 if !protoimpl.UnsafeEnabled {
2007 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
2008 switch v := v.(*ConfigDump); i {
2009 case 0:
2010 return &v.state
2011 case 1:
2012 return &v.sizeCache
2013 case 2:
2014 return &v.unknownFields
2015 default:
2016 return nil
2017 }
2018 }
2019 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
2020 switch v := v.(*UpdateFailureState); i {
2021 case 0:
2022 return &v.state
2023 case 1:
2024 return &v.sizeCache
2025 case 2:
2026 return &v.unknownFields
2027 default:
2028 return nil
2029 }
2030 }
2031 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
2032 switch v := v.(*BootstrapConfigDump); i {
2033 case 0:
2034 return &v.state
2035 case 1:
2036 return &v.sizeCache
2037 case 2:
2038 return &v.unknownFields
2039 default:
2040 return nil
2041 }
2042 }
2043 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
2044 switch v := v.(*ListenersConfigDump); i {
2045 case 0:
2046 return &v.state
2047 case 1:
2048 return &v.sizeCache
2049 case 2:
2050 return &v.unknownFields
2051 default:
2052 return nil
2053 }
2054 }
2055 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
2056 switch v := v.(*ClustersConfigDump); i {
2057 case 0:
2058 return &v.state
2059 case 1:
2060 return &v.sizeCache
2061 case 2:
2062 return &v.unknownFields
2063 default:
2064 return nil
2065 }
2066 }
2067 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
2068 switch v := v.(*RoutesConfigDump); i {
2069 case 0:
2070 return &v.state
2071 case 1:
2072 return &v.sizeCache
2073 case 2:
2074 return &v.unknownFields
2075 default:
2076 return nil
2077 }
2078 }
2079 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
2080 switch v := v.(*ScopedRoutesConfigDump); i {
2081 case 0:
2082 return &v.state
2083 case 1:
2084 return &v.sizeCache
2085 case 2:
2086 return &v.unknownFields
2087 default:
2088 return nil
2089 }
2090 }
2091 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
2092 switch v := v.(*SecretsConfigDump); i {
2093 case 0:
2094 return &v.state
2095 case 1:
2096 return &v.sizeCache
2097 case 2:
2098 return &v.unknownFields
2099 default:
2100 return nil
2101 }
2102 }
2103 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
2104 switch v := v.(*EndpointsConfigDump); i {
2105 case 0:
2106 return &v.state
2107 case 1:
2108 return &v.sizeCache
2109 case 2:
2110 return &v.unknownFields
2111 default:
2112 return nil
2113 }
2114 }
2115 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
2116 switch v := v.(*ListenersConfigDump_StaticListener); i {
2117 case 0:
2118 return &v.state
2119 case 1:
2120 return &v.sizeCache
2121 case 2:
2122 return &v.unknownFields
2123 default:
2124 return nil
2125 }
2126 }
2127 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
2128 switch v := v.(*ListenersConfigDump_DynamicListenerState); i {
2129 case 0:
2130 return &v.state
2131 case 1:
2132 return &v.sizeCache
2133 case 2:
2134 return &v.unknownFields
2135 default:
2136 return nil
2137 }
2138 }
2139 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
2140 switch v := v.(*ListenersConfigDump_DynamicListener); i {
2141 case 0:
2142 return &v.state
2143 case 1:
2144 return &v.sizeCache
2145 case 2:
2146 return &v.unknownFields
2147 default:
2148 return nil
2149 }
2150 }
2151 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
2152 switch v := v.(*ClustersConfigDump_StaticCluster); i {
2153 case 0:
2154 return &v.state
2155 case 1:
2156 return &v.sizeCache
2157 case 2:
2158 return &v.unknownFields
2159 default:
2160 return nil
2161 }
2162 }
2163 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
2164 switch v := v.(*ClustersConfigDump_DynamicCluster); i {
2165 case 0:
2166 return &v.state
2167 case 1:
2168 return &v.sizeCache
2169 case 2:
2170 return &v.unknownFields
2171 default:
2172 return nil
2173 }
2174 }
2175 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
2176 switch v := v.(*RoutesConfigDump_StaticRouteConfig); i {
2177 case 0:
2178 return &v.state
2179 case 1:
2180 return &v.sizeCache
2181 case 2:
2182 return &v.unknownFields
2183 default:
2184 return nil
2185 }
2186 }
2187 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
2188 switch v := v.(*RoutesConfigDump_DynamicRouteConfig); i {
2189 case 0:
2190 return &v.state
2191 case 1:
2192 return &v.sizeCache
2193 case 2:
2194 return &v.unknownFields
2195 default:
2196 return nil
2197 }
2198 }
2199 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
2200 switch v := v.(*ScopedRoutesConfigDump_InlineScopedRouteConfigs); i {
2201 case 0:
2202 return &v.state
2203 case 1:
2204 return &v.sizeCache
2205 case 2:
2206 return &v.unknownFields
2207 default:
2208 return nil
2209 }
2210 }
2211 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
2212 switch v := v.(*ScopedRoutesConfigDump_DynamicScopedRouteConfigs); i {
2213 case 0:
2214 return &v.state
2215 case 1:
2216 return &v.sizeCache
2217 case 2:
2218 return &v.unknownFields
2219 default:
2220 return nil
2221 }
2222 }
2223 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
2224 switch v := v.(*SecretsConfigDump_DynamicSecret); i {
2225 case 0:
2226 return &v.state
2227 case 1:
2228 return &v.sizeCache
2229 case 2:
2230 return &v.unknownFields
2231 default:
2232 return nil
2233 }
2234 }
2235 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
2236 switch v := v.(*SecretsConfigDump_StaticSecret); i {
2237 case 0:
2238 return &v.state
2239 case 1:
2240 return &v.sizeCache
2241 case 2:
2242 return &v.unknownFields
2243 default:
2244 return nil
2245 }
2246 }
2247 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
2248 switch v := v.(*EndpointsConfigDump_StaticEndpointConfig); i {
2249 case 0:
2250 return &v.state
2251 case 1:
2252 return &v.sizeCache
2253 case 2:
2254 return &v.unknownFields
2255 default:
2256 return nil
2257 }
2258 }
2259 file_envoy_admin_v4alpha_config_dump_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
2260 switch v := v.(*EndpointsConfigDump_DynamicEndpointConfig); i {
2261 case 0:
2262 return &v.state
2263 case 1:
2264 return &v.sizeCache
2265 case 2:
2266 return &v.unknownFields
2267 default:
2268 return nil
2269 }
2270 }
2271 }
2272 type x struct{}
2273 out := protoimpl.TypeBuilder{
2274 File: protoimpl.DescBuilder{
2275 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2276 RawDescriptor: file_envoy_admin_v4alpha_config_dump_proto_rawDesc,
2277 NumEnums: 0,
2278 NumMessages: 22,
2279 NumExtensions: 0,
2280 NumServices: 0,
2281 },
2282 GoTypes: file_envoy_admin_v4alpha_config_dump_proto_goTypes,
2283 DependencyIndexes: file_envoy_admin_v4alpha_config_dump_proto_depIdxs,
2284 MessageInfos: file_envoy_admin_v4alpha_config_dump_proto_msgTypes,
2285 }.Build()
2286 File_envoy_admin_v4alpha_config_dump_proto = out.File
2287 file_envoy_admin_v4alpha_config_dump_proto_rawDesc = nil
2288 file_envoy_admin_v4alpha_config_dump_proto_goTypes = nil
2289 file_envoy_admin_v4alpha_config_dump_proto_depIdxs = nil
2290 }
2291
View as plain text