-
Notifications
You must be signed in to change notification settings - Fork 0
/
discovery.pb.go
609 lines (554 loc) · 26.5 KB
/
discovery.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: envoy/api/v3alpha/discovery.proto
package envoy_api_v3alpha
import (
fmt "fmt"
core "github.com/altipla-consulting/envoy-api/envoy/api/v3alpha/core"
rpc "github.com/gogo/googleapis/google/rpc"
types "github.com/gogo/protobuf/types"
proto "github.com/golang/protobuf/proto"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// A DiscoveryRequest requests a set of versioned resources of the same type for
// a given Envoy node on some API.
// [#next-free-field: 7]
type DiscoveryRequest struct {
// The version_info provided in the request messages will be the version_info
// received with the most recent successfully processed response or empty on
// the first request. It is expected that no new request is sent after a
// response is received until the Envoy instance is ready to ACK/NACK the new
// configuration. ACK/NACK takes place by returning the new API config version
// as applied or the previous API config version respectively. Each type_url
// (see below) has an independent version associated with it.
VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
// The node making the request.
Node *core.Node `protobuf:"bytes,2,opt,name=node,proto3" json:"node,omitempty"`
// List of resources to subscribe to, e.g. list of cluster names or a route
// configuration name. If this is empty, all resources for the API are
// returned. LDS/CDS may have empty resource_names, which will cause all
// resources for the Envoy instance to be returned. The LDS and CDS responses
// will then imply a number of resources that need to be fetched via EDS/RDS,
// which will be explicitly enumerated in resource_names.
ResourceNames []string `protobuf:"bytes,3,rep,name=resource_names,json=resourceNames,proto3" json:"resource_names,omitempty"`
// Type of the resource that is being requested, e.g.
// "type.googleapis.com/envoy.api.v2.ClusterLoadAssignment". This is implicit
// in requests made via singleton xDS APIs such as CDS, LDS, etc. but is
// required for ADS.
TypeUrl string `protobuf:"bytes,4,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
// nonce corresponding to DiscoveryResponse being ACK/NACKed. See above
// discussion on version_info and the DiscoveryResponse nonce comment. This
// may be empty only if 1) this is a non-persistent-stream xDS such as HTTP,
// or 2) the client has not yet accepted an update in this xDS stream (unlike
// delta, where it is populated only for new explicit ACKs).
ResponseNonce string `protobuf:"bytes,5,opt,name=response_nonce,json=responseNonce,proto3" json:"response_nonce,omitempty"`
// This is populated when the previous :ref:`DiscoveryResponse
// <envoy_api_msg_api.v3alpha.DiscoveryResponse>` failed to update configuration. The *message*
// field in *error_details* provides the Envoy internal exception related to the failure. It is
// only intended for consumption during manual debugging, the string provided is not guaranteed to
// be stable across Envoy versions.
ErrorDetail *rpc.Status `protobuf:"bytes,6,opt,name=error_detail,json=errorDetail,proto3" json:"error_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiscoveryRequest) Reset() { *m = DiscoveryRequest{} }
func (m *DiscoveryRequest) String() string { return proto.CompactTextString(m) }
func (*DiscoveryRequest) ProtoMessage() {}
func (*DiscoveryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_94ac02770f363096, []int{0}
}
func (m *DiscoveryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiscoveryRequest.Unmarshal(m, b)
}
func (m *DiscoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiscoveryRequest.Marshal(b, m, deterministic)
}
func (m *DiscoveryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiscoveryRequest.Merge(m, src)
}
func (m *DiscoveryRequest) XXX_Size() int {
return xxx_messageInfo_DiscoveryRequest.Size(m)
}
func (m *DiscoveryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DiscoveryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DiscoveryRequest proto.InternalMessageInfo
func (m *DiscoveryRequest) GetVersionInfo() string {
if m != nil {
return m.VersionInfo
}
return ""
}
func (m *DiscoveryRequest) GetNode() *core.Node {
if m != nil {
return m.Node
}
return nil
}
func (m *DiscoveryRequest) GetResourceNames() []string {
if m != nil {
return m.ResourceNames
}
return nil
}
func (m *DiscoveryRequest) GetTypeUrl() string {
if m != nil {
return m.TypeUrl
}
return ""
}
func (m *DiscoveryRequest) GetResponseNonce() string {
if m != nil {
return m.ResponseNonce
}
return ""
}
func (m *DiscoveryRequest) GetErrorDetail() *rpc.Status {
if m != nil {
return m.ErrorDetail
}
return nil
}
// [#next-free-field: 7]
type DiscoveryResponse struct {
// The version of the response data.
VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
// The response resources. These resources are typed and depend on the API being called.
Resources []*types.Any `protobuf:"bytes,2,rep,name=resources,proto3" json:"resources,omitempty"`
// [#not-implemented-hide:]
// Canary is used to support two Envoy command line flags:
//
// * --terminate-on-canary-transition-failure. When set, Envoy is able to
// terminate if it detects that configuration is stuck at canary. Consider
// this example sequence of updates:
// - Management server applies a canary config successfully.
// - Management server rolls back to a production config.
// - Envoy rejects the new production config.
// Since there is no sensible way to continue receiving configuration
// updates, Envoy will then terminate and apply production config from a
// clean slate.
// * --dry-run-canary. When set, a canary response will never be applied, only
// validated via a dry run.
Canary bool `protobuf:"varint,3,opt,name=canary,proto3" json:"canary,omitempty"`
// Type URL for resources. Identifies the xDS API when muxing over ADS.
// Must be consistent with the type_url in the 'resources' repeated Any (if non-empty).
TypeUrl string `protobuf:"bytes,4,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
// For gRPC based subscriptions, the nonce provides a way to explicitly ack a
// specific DiscoveryResponse in a following DiscoveryRequest. Additional
// messages may have been sent by Envoy to the management server for the
// previous version on the stream prior to this DiscoveryResponse, that were
// unprocessed at response send time. The nonce allows the management server
// to ignore any further DiscoveryRequests for the previous version until a
// DiscoveryRequest bearing the nonce. The nonce is optional and is not
// required for non-stream based xDS implementations.
Nonce string `protobuf:"bytes,5,opt,name=nonce,proto3" json:"nonce,omitempty"`
// [#not-implemented-hide:]
// The control plane instance that sent the response.
ControlPlane *core.ControlPlane `protobuf:"bytes,6,opt,name=control_plane,json=controlPlane,proto3" json:"control_plane,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiscoveryResponse) Reset() { *m = DiscoveryResponse{} }
func (m *DiscoveryResponse) String() string { return proto.CompactTextString(m) }
func (*DiscoveryResponse) ProtoMessage() {}
func (*DiscoveryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_94ac02770f363096, []int{1}
}
func (m *DiscoveryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiscoveryResponse.Unmarshal(m, b)
}
func (m *DiscoveryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiscoveryResponse.Marshal(b, m, deterministic)
}
func (m *DiscoveryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiscoveryResponse.Merge(m, src)
}
func (m *DiscoveryResponse) XXX_Size() int {
return xxx_messageInfo_DiscoveryResponse.Size(m)
}
func (m *DiscoveryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DiscoveryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DiscoveryResponse proto.InternalMessageInfo
func (m *DiscoveryResponse) GetVersionInfo() string {
if m != nil {
return m.VersionInfo
}
return ""
}
func (m *DiscoveryResponse) GetResources() []*types.Any {
if m != nil {
return m.Resources
}
return nil
}
func (m *DiscoveryResponse) GetCanary() bool {
if m != nil {
return m.Canary
}
return false
}
func (m *DiscoveryResponse) GetTypeUrl() string {
if m != nil {
return m.TypeUrl
}
return ""
}
func (m *DiscoveryResponse) GetNonce() string {
if m != nil {
return m.Nonce
}
return ""
}
func (m *DiscoveryResponse) GetControlPlane() *core.ControlPlane {
if m != nil {
return m.ControlPlane
}
return nil
}
// DeltaDiscoveryRequest and DeltaDiscoveryResponse are used in a new gRPC
// endpoint for Delta xDS.
//
// With Delta xDS, the DeltaDiscoveryResponses do not need to include a full
// snapshot of the tracked resources. Instead, DeltaDiscoveryResponses are a
// diff to the state of a xDS client.
// In Delta XDS there are per-resource versions, which allow tracking state at
// the resource granularity.
// An xDS Delta session is always in the context of a gRPC bidirectional
// stream. This allows the xDS server to keep track of the state of xDS clients
// connected to it.
//
// In Delta xDS the nonce field is required and used to pair
// DeltaDiscoveryResponse to a DeltaDiscoveryRequest ACK or NACK.
// Optionally, a response message level system_version_info is present for
// debugging purposes only.
//
// DeltaDiscoveryRequest plays two independent roles. Any DeltaDiscoveryRequest
// can be either or both of: [1] informing the server of what resources the
// client has gained/lost interest in (using resource_names_subscribe and
// resource_names_unsubscribe), or [2] (N)ACKing an earlier resource update from
// the server (using response_nonce, with presence of error_detail making it a NACK).
// Additionally, the first message (for a given type_url) of a reconnected gRPC stream
// has a third role: informing the server of the resources (and their versions)
// that the client already possesses, using the initial_resource_versions field.
//
// As with state-of-the-world, when multiple resource types are multiplexed (ADS),
// all requests/acknowledgments/updates are logically walled off by type_url:
// a Cluster ACK exists in a completely separate world from a prior Route NACK.
// In particular, initial_resource_versions being sent at the "start" of every
// gRPC stream actually entails a message for each type_url, each with its own
// initial_resource_versions.
// [#next-free-field: 8]
type DeltaDiscoveryRequest struct {
// The node making the request.
Node *core.Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
// Type of the resource that is being requested, e.g.
// "type.googleapis.com/envoy.api.v2.ClusterLoadAssignment".
TypeUrl string `protobuf:"bytes,2,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
// DeltaDiscoveryRequests allow the client to add or remove individual
// resources to the set of tracked resources in the context of a stream.
// All resource names in the resource_names_subscribe list are added to the
// set of tracked resources and all resource names in the resource_names_unsubscribe
// list are removed from the set of tracked resources.
//
// *Unlike* state-of-the-world xDS, an empty resource_names_subscribe or
// resource_names_unsubscribe list simply means that no resources are to be
// added or removed to the resource list.
// *Like* state-of-the-world xDS, the server must send updates for all tracked
// resources, but can also send updates for resources the client has not subscribed to.
//
// NOTE: the server must respond with all resources listed in resource_names_subscribe,
// even if it believes the client has the most recent version of them. The reason:
// the client may have dropped them, but then regained interest before it had a chance
// to send the unsubscribe message. See DeltaSubscriptionStateTest.RemoveThenAdd.
//
// These two fields can be set in any DeltaDiscoveryRequest, including ACKs
// and initial_resource_versions.
//
// A list of Resource names to add to the list of tracked resources.
ResourceNamesSubscribe []string `protobuf:"bytes,3,rep,name=resource_names_subscribe,json=resourceNamesSubscribe,proto3" json:"resource_names_subscribe,omitempty"`
// A list of Resource names to remove from the list of tracked resources.
ResourceNamesUnsubscribe []string `protobuf:"bytes,4,rep,name=resource_names_unsubscribe,json=resourceNamesUnsubscribe,proto3" json:"resource_names_unsubscribe,omitempty"`
// Informs the server of the versions of the resources the xDS client knows of, to enable the
// client to continue the same logical xDS session even in the face of gRPC stream reconnection.
// It will not be populated: [1] in the very first stream of a session, since the client will
// not yet have any resources, [2] in any message after the first in a stream (for a given
// type_url), since the server will already be correctly tracking the client's state.
// (In ADS, the first message *of each type_url* of a reconnected stream populates this map.)
// The map's keys are names of xDS resources known to the xDS client.
// The map's values are opaque resource versions.
InitialResourceVersions map[string]string `protobuf:"bytes,5,rep,name=initial_resource_versions,json=initialResourceVersions,proto3" json:"initial_resource_versions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
// When the DeltaDiscoveryRequest is a ACK or NACK message in response
// to a previous DeltaDiscoveryResponse, the response_nonce must be the
// nonce in the DeltaDiscoveryResponse.
// Otherwise (unlike in DiscoveryRequest) response_nonce must be omitted.
ResponseNonce string `protobuf:"bytes,6,opt,name=response_nonce,json=responseNonce,proto3" json:"response_nonce,omitempty"`
// This is populated when the previous :ref:`DiscoveryResponse
// <envoy_api_msg_api.v3alpha.DiscoveryResponse>` failed to update configuration. The *message*
// field in *error_details* provides the Envoy internal exception related to the failure.
ErrorDetail *rpc.Status `protobuf:"bytes,7,opt,name=error_detail,json=errorDetail,proto3" json:"error_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeltaDiscoveryRequest) Reset() { *m = DeltaDiscoveryRequest{} }
func (m *DeltaDiscoveryRequest) String() string { return proto.CompactTextString(m) }
func (*DeltaDiscoveryRequest) ProtoMessage() {}
func (*DeltaDiscoveryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_94ac02770f363096, []int{2}
}
func (m *DeltaDiscoveryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeltaDiscoveryRequest.Unmarshal(m, b)
}
func (m *DeltaDiscoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeltaDiscoveryRequest.Marshal(b, m, deterministic)
}
func (m *DeltaDiscoveryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeltaDiscoveryRequest.Merge(m, src)
}
func (m *DeltaDiscoveryRequest) XXX_Size() int {
return xxx_messageInfo_DeltaDiscoveryRequest.Size(m)
}
func (m *DeltaDiscoveryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeltaDiscoveryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeltaDiscoveryRequest proto.InternalMessageInfo
func (m *DeltaDiscoveryRequest) GetNode() *core.Node {
if m != nil {
return m.Node
}
return nil
}
func (m *DeltaDiscoveryRequest) GetTypeUrl() string {
if m != nil {
return m.TypeUrl
}
return ""
}
func (m *DeltaDiscoveryRequest) GetResourceNamesSubscribe() []string {
if m != nil {
return m.ResourceNamesSubscribe
}
return nil
}
func (m *DeltaDiscoveryRequest) GetResourceNamesUnsubscribe() []string {
if m != nil {
return m.ResourceNamesUnsubscribe
}
return nil
}
func (m *DeltaDiscoveryRequest) GetInitialResourceVersions() map[string]string {
if m != nil {
return m.InitialResourceVersions
}
return nil
}
func (m *DeltaDiscoveryRequest) GetResponseNonce() string {
if m != nil {
return m.ResponseNonce
}
return ""
}
func (m *DeltaDiscoveryRequest) GetErrorDetail() *rpc.Status {
if m != nil {
return m.ErrorDetail
}
return nil
}
// [#next-free-field: 7]
type DeltaDiscoveryResponse struct {
// The version of the response data (used for debugging).
SystemVersionInfo string `protobuf:"bytes,1,opt,name=system_version_info,json=systemVersionInfo,proto3" json:"system_version_info,omitempty"`
// The response resources. These are typed resources, whose types must match
// the type_url field.
Resources []*Resource `protobuf:"bytes,2,rep,name=resources,proto3" json:"resources,omitempty"`
// Type URL for resources. Identifies the xDS API when muxing over ADS.
// Must be consistent with the type_url in the Any within 'resources' if 'resources' is non-empty.
TypeUrl string `protobuf:"bytes,4,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
// Resources names of resources that have be deleted and to be removed from the xDS Client.
// Removed resources for missing resources can be ignored.
RemovedResources []string `protobuf:"bytes,6,rep,name=removed_resources,json=removedResources,proto3" json:"removed_resources,omitempty"`
// The nonce provides a way for DeltaDiscoveryRequests to uniquely
// reference a DeltaDiscoveryResponse when (N)ACKing. The nonce is required.
Nonce string `protobuf:"bytes,5,opt,name=nonce,proto3" json:"nonce,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeltaDiscoveryResponse) Reset() { *m = DeltaDiscoveryResponse{} }
func (m *DeltaDiscoveryResponse) String() string { return proto.CompactTextString(m) }
func (*DeltaDiscoveryResponse) ProtoMessage() {}
func (*DeltaDiscoveryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_94ac02770f363096, []int{3}
}
func (m *DeltaDiscoveryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeltaDiscoveryResponse.Unmarshal(m, b)
}
func (m *DeltaDiscoveryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeltaDiscoveryResponse.Marshal(b, m, deterministic)
}
func (m *DeltaDiscoveryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeltaDiscoveryResponse.Merge(m, src)
}
func (m *DeltaDiscoveryResponse) XXX_Size() int {
return xxx_messageInfo_DeltaDiscoveryResponse.Size(m)
}
func (m *DeltaDiscoveryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DeltaDiscoveryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DeltaDiscoveryResponse proto.InternalMessageInfo
func (m *DeltaDiscoveryResponse) GetSystemVersionInfo() string {
if m != nil {
return m.SystemVersionInfo
}
return ""
}
func (m *DeltaDiscoveryResponse) GetResources() []*Resource {
if m != nil {
return m.Resources
}
return nil
}
func (m *DeltaDiscoveryResponse) GetTypeUrl() string {
if m != nil {
return m.TypeUrl
}
return ""
}
func (m *DeltaDiscoveryResponse) GetRemovedResources() []string {
if m != nil {
return m.RemovedResources
}
return nil
}
func (m *DeltaDiscoveryResponse) GetNonce() string {
if m != nil {
return m.Nonce
}
return ""
}
type Resource struct {
// The resource's name, to distinguish it from others of the same type of resource.
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
// [#not-implemented-hide:]
// The aliases are a list of other names that this resource can go by.
Aliases []string `protobuf:"bytes,4,rep,name=aliases,proto3" json:"aliases,omitempty"`
// The resource level version. It allows xDS to track the state of individual
// resources.
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
// The resource being tracked.
Resource *types.Any `protobuf:"bytes,2,opt,name=resource,proto3" json:"resource,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Resource) Reset() { *m = Resource{} }
func (m *Resource) String() string { return proto.CompactTextString(m) }
func (*Resource) ProtoMessage() {}
func (*Resource) Descriptor() ([]byte, []int) {
return fileDescriptor_94ac02770f363096, []int{4}
}
func (m *Resource) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Resource.Unmarshal(m, b)
}
func (m *Resource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Resource.Marshal(b, m, deterministic)
}
func (m *Resource) XXX_Merge(src proto.Message) {
xxx_messageInfo_Resource.Merge(m, src)
}
func (m *Resource) XXX_Size() int {
return xxx_messageInfo_Resource.Size(m)
}
func (m *Resource) XXX_DiscardUnknown() {
xxx_messageInfo_Resource.DiscardUnknown(m)
}
var xxx_messageInfo_Resource proto.InternalMessageInfo
func (m *Resource) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Resource) GetAliases() []string {
if m != nil {
return m.Aliases
}
return nil
}
func (m *Resource) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
func (m *Resource) GetResource() *types.Any {
if m != nil {
return m.Resource
}
return nil
}
func init() {
proto.RegisterType((*DiscoveryRequest)(nil), "envoy.api.v3alpha.DiscoveryRequest")
proto.RegisterType((*DiscoveryResponse)(nil), "envoy.api.v3alpha.DiscoveryResponse")
proto.RegisterType((*DeltaDiscoveryRequest)(nil), "envoy.api.v3alpha.DeltaDiscoveryRequest")
proto.RegisterMapType((map[string]string)(nil), "envoy.api.v3alpha.DeltaDiscoveryRequest.InitialResourceVersionsEntry")
proto.RegisterType((*DeltaDiscoveryResponse)(nil), "envoy.api.v3alpha.DeltaDiscoveryResponse")
proto.RegisterType((*Resource)(nil), "envoy.api.v3alpha.Resource")
}
func init() { proto.RegisterFile("envoy/api/v3alpha/discovery.proto", fileDescriptor_94ac02770f363096) }
var fileDescriptor_94ac02770f363096 = []byte{
// 663 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x5d, 0x6b, 0xdb, 0x4a,
0x10, 0x45, 0xb6, 0xe3, 0xd8, 0xe3, 0x24, 0xc4, 0x7b, 0x73, 0x13, 0xc5, 0x37, 0x70, 0x1d, 0xd3,
0x82, 0xa1, 0x20, 0x85, 0x84, 0x42, 0x5a, 0xfa, 0xd2, 0x34, 0x79, 0x48, 0x1f, 0x42, 0x50, 0x48,
0x5e, 0xc5, 0x5a, 0x9e, 0xa4, 0x4b, 0x95, 0x5d, 0x75, 0x57, 0x32, 0xd5, 0x63, 0xa1, 0x50, 0xe8,
0xbf, 0xec, 0x1f, 0x29, 0x45, 0xab, 0x5d, 0x7f, 0xc4, 0x6a, 0xf0, 0x9b, 0x66, 0xe6, 0xcc, 0xd9,
0xf9, 0x38, 0x23, 0x38, 0x44, 0x3e, 0x11, 0xb9, 0x4f, 0x13, 0xe6, 0x4f, 0x4e, 0x68, 0x9c, 0x7c,
0xa2, 0xfe, 0x98, 0xa9, 0x48, 0x4c, 0x50, 0xe6, 0x5e, 0x22, 0x45, 0x2a, 0x48, 0x57, 0x43, 0x3c,
0x9a, 0x30, 0xcf, 0x40, 0x7a, 0x15, 0x59, 0x91, 0x90, 0xe8, 0x8f, 0xa8, 0xc2, 0x32, 0xab, 0xb7,
0xff, 0x20, 0xc4, 0x43, 0x8c, 0xbe, 0xb6, 0x46, 0xd9, 0xbd, 0x4f, 0xb9, 0x21, 0xec, 0xed, 0x99,
0x90, 0x4c, 0x22, 0x5f, 0xa5, 0x34, 0xcd, 0x54, 0x19, 0x18, 0xfc, 0xa8, 0xc1, 0xf6, 0xb9, 0x7d,
0x3d, 0xc0, 0x2f, 0x19, 0xaa, 0x94, 0x1c, 0xc2, 0xc6, 0x04, 0xa5, 0x62, 0x82, 0x87, 0x8c, 0xdf,
0x0b, 0xd7, 0xe9, 0x3b, 0xc3, 0x76, 0xd0, 0x31, 0xbe, 0x4b, 0x7e, 0x2f, 0xc8, 0x11, 0x34, 0xb8,
0x18, 0xa3, 0x5b, 0xeb, 0x3b, 0xc3, 0xce, 0xf1, 0x81, 0xb7, 0x54, 0xb0, 0x57, 0x54, 0xe7, 0x5d,
0x89, 0x31, 0x06, 0x1a, 0x49, 0x5e, 0xc2, 0x96, 0x44, 0x25, 0x32, 0x19, 0x61, 0xc8, 0xe9, 0x23,
0x2a, 0xb7, 0xde, 0xaf, 0x0f, 0xdb, 0xc1, 0xa6, 0xf5, 0x5e, 0x15, 0x4e, 0xb2, 0x0f, 0xad, 0x34,
0x4f, 0x30, 0xcc, 0x64, 0xec, 0x36, 0xf4, 0xbb, 0xeb, 0x85, 0x7d, 0x2b, 0x63, 0xc3, 0x90, 0x08,
0xae, 0x30, 0xe4, 0x82, 0x47, 0xe8, 0xae, 0x69, 0xc0, 0xa6, 0xf5, 0x5e, 0x15, 0x4e, 0xf2, 0x1a,
0x36, 0x50, 0x4a, 0x21, 0xc3, 0x31, 0xa6, 0x94, 0xc5, 0x6e, 0x53, 0x97, 0x48, 0xbc, 0x72, 0x04,
0x9e, 0x4c, 0x22, 0xef, 0x46, 0x8f, 0x20, 0xe8, 0x68, 0xdc, 0xb9, 0x86, 0x0d, 0x7e, 0x3b, 0xd0,
0x9d, 0x9b, 0x44, 0xc9, 0xb8, 0xca, 0x28, 0x8e, 0xa1, 0x6d, 0x5b, 0x50, 0x6e, 0xad, 0x5f, 0x1f,
0x76, 0x8e, 0x77, 0xec, 0x63, 0x76, 0x15, 0xde, 0x7b, 0x9e, 0x07, 0x33, 0x18, 0xd9, 0x85, 0x66,
0x44, 0x39, 0x95, 0xb9, 0x5b, 0xef, 0x3b, 0xc3, 0x56, 0x60, 0xac, 0xe7, 0xba, 0xdf, 0x81, 0xb5,
0xf9, 0xa6, 0x4b, 0x83, 0x5c, 0xc2, 0x66, 0x24, 0x78, 0x2a, 0x45, 0x1c, 0x26, 0x31, 0xe5, 0x68,
0xba, 0x7d, 0xf1, 0xb7, 0x85, 0x7c, 0x28, 0xc1, 0xd7, 0x05, 0x36, 0xd8, 0x88, 0xe6, 0xac, 0xc1,
0xcf, 0x06, 0xfc, 0x7b, 0x8e, 0x71, 0x4a, 0x97, 0xf4, 0x60, 0x97, 0xed, 0xac, 0xbc, 0xec, 0xf9,
0x3e, 0x6a, 0x8b, 0x7d, 0x9c, 0x82, 0xbb, 0xa8, 0x83, 0x50, 0x65, 0x23, 0x15, 0x49, 0x36, 0x42,
0xa3, 0x88, 0xdd, 0x05, 0x45, 0xdc, 0xd8, 0x28, 0x79, 0x07, 0xbd, 0x27, 0x99, 0x19, 0x9f, 0xe5,
0x36, 0x74, 0xae, 0xbb, 0x90, 0x7b, 0x3b, 0x8b, 0x93, 0x6f, 0x0e, 0xec, 0x33, 0xce, 0x52, 0x46,
0xe3, 0x70, 0x4a, 0x63, 0xf6, 0xa8, 0xdc, 0x35, 0xbd, 0xb7, 0x8b, 0x8a, 0xd6, 0x2a, 0x47, 0xe2,
0x5d, 0x96, 0x4c, 0x81, 0x21, 0xba, 0x33, 0x3c, 0x17, 0x3c, 0x95, 0x79, 0xb0, 0xc7, 0xaa, 0xa3,
0x15, 0x0a, 0x6e, 0xae, 0xa2, 0xe0, 0xf5, 0x95, 0x14, 0xdc, 0xfb, 0x08, 0x07, 0xcf, 0x95, 0x45,
0xb6, 0xa1, 0xfe, 0x19, 0x73, 0x23, 0xe1, 0xe2, 0xb3, 0xd0, 0xd4, 0x84, 0xc6, 0x19, 0x9a, 0x1d,
0x95, 0xc6, 0xdb, 0xda, 0xa9, 0x33, 0xf8, 0xe5, 0xc0, 0xee, 0xd3, 0xce, 0xcd, 0x49, 0x78, 0xf0,
0x8f, 0xca, 0x55, 0x8a, 0x8f, 0x61, 0xc5, 0x65, 0x74, 0xcb, 0xd0, 0xdd, 0xdc, 0x7d, 0xbc, 0x59,
0xbe, 0x8f, 0xff, 0x2a, 0xe6, 0x6c, 0x6b, 0x9e, 0x3f, 0x93, 0x67, 0xce, 0xe1, 0x15, 0x74, 0x25,
0x3e, 0x8a, 0x09, 0x8e, 0xc3, 0x19, 0x7b, 0x53, 0x6b, 0x60, 0xdb, 0x04, 0x82, 0x29, 0x4f, 0xe5,
0xed, 0x0c, 0xbe, 0x3b, 0xd0, 0xb2, 0x18, 0x42, 0xa0, 0x51, 0x68, 0x4a, 0xdf, 0x63, 0x3b, 0xd0,
0xdf, 0xc4, 0x85, 0x75, 0x1a, 0x33, 0xaa, 0x50, 0x19, 0x75, 0x59, 0xb3, 0x88, 0x98, 0xe6, 0x4d,
0xdf, 0xd6, 0x24, 0x47, 0xd0, 0xb2, 0xf5, 0x98, 0x9f, 0x63, 0xf5, 0xcf, 0x60, 0x8a, 0x3a, 0x3b,
0x81, 0xff, 0x99, 0x28, 0x07, 0x92, 0x48, 0xf1, 0x35, 0x5f, 0x9e, 0xcd, 0xd9, 0xd6, 0x74, 0x0b,
0xd7, 0x05, 0xc7, 0xb5, 0x33, 0x6a, 0x6a, 0xb2, 0x93, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0f,
0x47, 0x42, 0xb8, 0x4d, 0x06, 0x00, 0x00,
}