open-consul/vendor/github.com/envoyproxy/go-control-plane/envoy/api/v2/discovery.pb.go

2782 lines
72 KiB
Go

// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: envoy/api/v2/discovery.proto
package v2
import (
bytes "bytes"
fmt "fmt"
io "io"
math "math"
rpc "github.com/gogo/googleapis/google/rpc"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
types "github.com/gogo/protobuf/types"
core "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
)
// 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.GoGoProtoPackageIsVersion2 // 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.
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 expect empty resource_names, since this is global
// discovery for the Envoy instance. 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 if no nonce is available, e.g. at startup or for non-stream
// xDS implementations.
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_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_2c7365e287e5c035, []int{0}
}
func (m *DiscoveryRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *DiscoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
b = b[:cap(b)]
n, err := m.MarshalTo(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
func (m *DiscoveryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiscoveryRequest.Merge(m, src)
}
func (m *DiscoveryRequest) XXX_Size() int {
return m.Size()
}
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
}
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"`
// [#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. This must be consistent with the type_url in the
// Any messages for resources if resources is non-empty. This effectively
// identifies the xDS API when muxing over ADS.
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_2c7365e287e5c035, []int{1}
}
func (m *DiscoveryResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *DiscoveryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
b = b[:cap(b)]
n, err := m.MarshalTo(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
func (m *DiscoveryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiscoveryResponse.Merge(m, src)
}
func (m *DiscoveryResponse) XXX_Size() int {
return m.Size()
}
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 can be sent in 3 situations:
// 1. Initial message in a xDS bidirectional gRPC stream.
// 2. As a ACK or NACK response to a previous DeltaDiscoveryResponse.
// In this case the response_nonce is set to the nonce value in the Response.
// ACK or NACK is determined by the absence or presence of error_detail.
// 3. Spontaneous DeltaDiscoveryRequest from the client.
// This can be done to dynamically add or remove elements from the tracked
// resource_names set. In this case response_nonce must be omitted.
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". This is implicit
// in requests made via singleton xDS APIs such as CDS, LDS, etc. but is
// required for ADS.
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 in 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.
// The xDS server must send updates for all tracked resources but can also
// send updates for resources the client has not subscribed to. This behavior
// is similar to state-of-the-world xDS.
// These two fields can be set for all types of DeltaDiscoveryRequests
// (initial, ACK/NACK or spontaneous).
//
// 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"`
// This map must be populated when the DeltaDiscoveryRequest is the
// first in a stream (assuming there are any resources - this field's purpose is to enable
// a session to continue in a reconnected gRPC stream, and so will not be used in the very
// first stream of a session). The keys are the resources names of the xDS resources
// known to the xDS client. The values in the map are the associated resource
// level version info.
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 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_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_2c7365e287e5c035, []int{2}
}
func (m *DeltaDiscoveryRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *DeltaDiscoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
b = b[:cap(b)]
n, err := m.MarshalTo(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
func (m *DeltaDiscoveryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeltaDiscoveryRequest.Merge(m, src)
}
func (m *DeltaDiscoveryRequest) XXX_Size() int {
return m.Size()
}
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
}
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 that match the type url
// in the DeltaDiscoveryRequest.
Resources []Resource `protobuf:"bytes,2,rep,name=resources,proto3" json:"resources"`
// 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. 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_2c7365e287e5c035, []int{3}
}
func (m *DeltaDiscoveryResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *DeltaDiscoveryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
b = b[:cap(b)]
n, err := m.MarshalTo(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
func (m *DeltaDiscoveryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeltaDiscoveryResponse.Merge(m, src)
}
func (m *DeltaDiscoveryResponse) XXX_Size() int {
return m.Size()
}
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) 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_2c7365e287e5c035, []int{4}
}
func (m *Resource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Resource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
b = b[:cap(b)]
n, err := m.MarshalTo(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
func (m *Resource) XXX_Merge(src proto.Message) {
xxx_messageInfo_Resource.Merge(m, src)
}
func (m *Resource) XXX_Size() int {
return m.Size()
}
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.v2.DiscoveryRequest")
proto.RegisterType((*DiscoveryResponse)(nil), "envoy.api.v2.DiscoveryResponse")
proto.RegisterType((*DeltaDiscoveryRequest)(nil), "envoy.api.v2.DeltaDiscoveryRequest")
proto.RegisterMapType((map[string]string)(nil), "envoy.api.v2.DeltaDiscoveryRequest.InitialResourceVersionsEntry")
proto.RegisterType((*DeltaDiscoveryResponse)(nil), "envoy.api.v2.DeltaDiscoveryResponse")
proto.RegisterType((*Resource)(nil), "envoy.api.v2.Resource")
}
func init() { proto.RegisterFile("envoy/api/v2/discovery.proto", fileDescriptor_2c7365e287e5c035) }
var fileDescriptor_2c7365e287e5c035 = []byte{
// 701 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x41, 0x6b, 0xdb, 0x4c,
0x10, 0xfd, 0xd6, 0x76, 0x1c, 0x7b, 0xed, 0x84, 0x64, 0xbf, 0xd4, 0x51, 0x4c, 0x70, 0x5c, 0x43,
0xc1, 0x10, 0x90, 0x8a, 0x4b, 0x21, 0x84, 0x1e, 0xda, 0xd4, 0x2d, 0xa4, 0x87, 0x10, 0x14, 0x92,
0x43, 0x2f, 0x62, 0x2d, 0x4f, 0x8c, 0xa8, 0xb2, 0xab, 0xee, 0x4a, 0xa2, 0x82, 0x9e, 0x4a, 0x7f,
0x4c, 0xff, 0x49, 0x73, 0xec, 0xb1, 0xa7, 0x52, 0xfc, 0x47, 0x52, 0xb4, 0x5a, 0xd9, 0x56, 0x62,
0x82, 0x6f, 0x3b, 0x3b, 0x6f, 0x9f, 0x66, 0xde, 0xbc, 0x11, 0xde, 0x07, 0x16, 0xf3, 0xc4, 0xa2,
0x81, 0x67, 0xc5, 0x03, 0x6b, 0xec, 0x49, 0x97, 0xc7, 0x20, 0x12, 0x33, 0x10, 0x3c, 0xe4, 0xa4,
0xa9, 0xb2, 0x26, 0x0d, 0x3c, 0x33, 0x1e, 0xb4, 0x8b, 0x58, 0x97, 0x0b, 0xb0, 0x46, 0x54, 0x42,
0x86, 0x6d, 0xef, 0x4d, 0x38, 0x9f, 0xf8, 0x60, 0xa9, 0x68, 0x14, 0x5d, 0x5b, 0x94, 0x69, 0x9a,
0xf6, 0xae, 0x4e, 0x89, 0xc0, 0xb5, 0x64, 0x48, 0xc3, 0x48, 0xea, 0xc4, 0xce, 0x84, 0x4f, 0xb8,
0x3a, 0x5a, 0xe9, 0x29, 0xbb, 0xed, 0x7d, 0x2b, 0xe1, 0xad, 0x61, 0x5e, 0x89, 0x0d, 0x9f, 0x23,
0x90, 0x21, 0x79, 0x8a, 0x9b, 0x31, 0x08, 0xe9, 0x71, 0xe6, 0x78, 0xec, 0x9a, 0x1b, 0xa8, 0x8b,
0xfa, 0x75, 0xbb, 0xa1, 0xef, 0x4e, 0xd9, 0x35, 0x27, 0x87, 0xb8, 0xc2, 0xf8, 0x18, 0x8c, 0x52,
0x17, 0xf5, 0x1b, 0x83, 0x5d, 0x73, 0xb1, 0x78, 0x33, 0x2d, 0xd7, 0x3c, 0xe3, 0x63, 0xb0, 0x15,
0x88, 0x3c, 0xc3, 0x9b, 0x02, 0x24, 0x8f, 0x84, 0x0b, 0x0e, 0xa3, 0x37, 0x20, 0x8d, 0x72, 0xb7,
0xdc, 0xaf, 0xdb, 0x1b, 0xf9, 0xed, 0x59, 0x7a, 0x49, 0xf6, 0x70, 0x2d, 0x4c, 0x02, 0x70, 0x22,
0xe1, 0x1b, 0x15, 0xf5, 0xc9, 0xf5, 0x34, 0xbe, 0x14, 0xbe, 0x66, 0x08, 0x38, 0x93, 0xe0, 0x30,
0xce, 0x5c, 0x30, 0xd6, 0x14, 0x60, 0x23, 0xbf, 0x3d, 0x4b, 0x2f, 0xc9, 0x4b, 0xdc, 0x04, 0x21,
0xb8, 0x70, 0xc6, 0x10, 0x52, 0xcf, 0x37, 0xaa, 0xaa, 0x3a, 0x62, 0x66, 0x9a, 0x98, 0x22, 0x70,
0xcd, 0x0b, 0xa5, 0x89, 0xdd, 0x50, 0xb8, 0xa1, 0x82, 0xf5, 0xee, 0x10, 0xde, 0x5e, 0x10, 0x21,
0x63, 0x5c, 0x45, 0x85, 0x23, 0x5c, 0xcf, 0x5b, 0x90, 0x46, 0xa9, 0x5b, 0xee, 0x37, 0x06, 0x3b,
0xf9, 0xc7, 0xf2, 0xd9, 0x98, 0x6f, 0x58, 0x72, 0x52, 0xb9, 0xfd, 0x73, 0xf0, 0x9f, 0x3d, 0x07,
0x93, 0x16, 0xae, 0xba, 0x94, 0x51, 0x91, 0x18, 0xe5, 0x2e, 0xea, 0xd7, 0x6c, 0x1d, 0x3d, 0xa6,
0xc1, 0x0e, 0x5e, 0x5b, 0x6c, 0x3d, 0x0b, 0xc8, 0x10, 0x6f, 0xb8, 0x9c, 0x85, 0x82, 0xfb, 0x4e,
0xe0, 0x53, 0x06, 0xba, 0xe7, 0x83, 0x25, 0x13, 0x79, 0x9b, 0xe1, 0xce, 0x53, 0x98, 0xdd, 0x74,
0x17, 0xa2, 0xde, 0x5d, 0x19, 0x3f, 0x19, 0x82, 0x1f, 0xd2, 0x07, 0x5e, 0xc8, 0x07, 0x8d, 0x56,
0x19, 0xf4, 0x62, 0xf5, 0xa5, 0x62, 0xf5, 0x47, 0xd8, 0x28, 0x7a, 0xc0, 0x91, 0xd1, 0x48, 0xba,
0xc2, 0x1b, 0x81, 0x76, 0x43, 0xab, 0xe0, 0x86, 0x8b, 0x3c, 0x4b, 0x5e, 0xe1, 0xf6, 0xbd, 0x97,
0x11, 0x9b, 0xbf, 0xad, 0xa8, 0xb7, 0x46, 0xe1, 0xed, 0xe5, 0x3c, 0x4f, 0xbe, 0xe2, 0x3d, 0x8f,
0x79, 0xa1, 0x47, 0x7d, 0x67, 0xc6, 0xa2, 0x47, 0x28, 0x8d, 0x35, 0x35, 0xb2, 0xd7, 0xc5, 0xa6,
0x96, 0xea, 0x60, 0x9e, 0x66, 0x24, 0xb6, 0xe6, 0xb8, 0xd2, 0x14, 0xef, 0x58, 0x28, 0x12, 0x7b,
0xd7, 0x5b, 0x9e, 0x5d, 0xe2, 0xdb, 0xea, 0x2a, 0xbe, 0x5d, 0x5f, 0xc9, 0xb7, 0xed, 0x0f, 0x78,
0xff, 0xb1, 0xb2, 0xc8, 0x16, 0x2e, 0x7f, 0x82, 0x44, 0x1b, 0x37, 0x3d, 0xa6, 0x1e, 0x8a, 0xa9,
0x1f, 0x81, 0x9e, 0x4e, 0x16, 0x1c, 0x97, 0x8e, 0x50, 0xef, 0x27, 0xc2, 0xad, 0xfb, 0x9d, 0xeb,
0x45, 0x30, 0xf1, 0xff, 0x32, 0x91, 0x21, 0xdc, 0x38, 0x4b, 0xf6, 0x61, 0x3b, 0x4b, 0x5d, 0x2d,
0x6c, 0xc5, 0xf1, 0xc3, 0xad, 0x68, 0x15, 0x25, 0xce, 0xcb, 0x7d, 0xb8, 0x17, 0x87, 0x78, 0x5b,
0xc0, 0x0d, 0x8f, 0x61, 0xec, 0xcc, 0x39, 0xaa, 0x6a, 0xc6, 0x5b, 0x3a, 0x61, 0xcf, 0xc0, 0x4b,
0x37, 0xa2, 0xf7, 0x1d, 0xe1, 0x5a, 0x8e, 0x21, 0x04, 0x57, 0x52, 0xcf, 0xa8, 0x2d, 0xab, 0xdb,
0xea, 0x4c, 0x0c, 0xbc, 0x4e, 0x7d, 0x8f, 0x4a, 0x90, 0xda, 0x3d, 0x79, 0x98, 0x66, 0x74, 0x8b,
0xba, 0xbb, 0x3c, 0x24, 0xcf, 0x71, 0x2d, 0xaf, 0x47, 0xff, 0xf3, 0x96, 0x2e, 0xba, 0x3d, 0x43,
0x9d, 0xbc, 0xff, 0x31, 0xed, 0xa0, 0xdb, 0x69, 0x07, 0xfd, 0x9a, 0x76, 0xd0, 0xef, 0x69, 0x07,
0xfd, 0x9d, 0x76, 0x10, 0x6e, 0x7b, 0x3c, 0x93, 0x22, 0x10, 0xfc, 0x4b, 0x52, 0x50, 0xe5, 0x64,
0x73, 0x26, 0xfd, 0x79, 0x4a, 0x79, 0x8e, 0x3e, 0x96, 0xe2, 0xc1, 0xa8, 0xaa, 0xf8, 0x5f, 0xfc,
0x0b, 0x00, 0x00, 0xff, 0xff, 0x29, 0x62, 0x8b, 0x23, 0x3e, 0x06, 0x00, 0x00,
}
func (this *DiscoveryRequest) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
that1, ok := that.(*DiscoveryRequest)
if !ok {
that2, ok := that.(DiscoveryRequest)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
return this == nil
} else if this == nil {
return false
}
if this.VersionInfo != that1.VersionInfo {
return false
}
if !this.Node.Equal(that1.Node) {
return false
}
if len(this.ResourceNames) != len(that1.ResourceNames) {
return false
}
for i := range this.ResourceNames {
if this.ResourceNames[i] != that1.ResourceNames[i] {
return false
}
}
if this.TypeUrl != that1.TypeUrl {
return false
}
if this.ResponseNonce != that1.ResponseNonce {
return false
}
if !this.ErrorDetail.Equal(that1.ErrorDetail) {
return false
}
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
return false
}
return true
}
func (this *DiscoveryResponse) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
that1, ok := that.(*DiscoveryResponse)
if !ok {
that2, ok := that.(DiscoveryResponse)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
return this == nil
} else if this == nil {
return false
}
if this.VersionInfo != that1.VersionInfo {
return false
}
if len(this.Resources) != len(that1.Resources) {
return false
}
for i := range this.Resources {
if !this.Resources[i].Equal(&that1.Resources[i]) {
return false
}
}
if this.Canary != that1.Canary {
return false
}
if this.TypeUrl != that1.TypeUrl {
return false
}
if this.Nonce != that1.Nonce {
return false
}
if !this.ControlPlane.Equal(that1.ControlPlane) {
return false
}
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
return false
}
return true
}
func (this *DeltaDiscoveryRequest) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
that1, ok := that.(*DeltaDiscoveryRequest)
if !ok {
that2, ok := that.(DeltaDiscoveryRequest)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
return this == nil
} else if this == nil {
return false
}
if !this.Node.Equal(that1.Node) {
return false
}
if this.TypeUrl != that1.TypeUrl {
return false
}
if len(this.ResourceNamesSubscribe) != len(that1.ResourceNamesSubscribe) {
return false
}
for i := range this.ResourceNamesSubscribe {
if this.ResourceNamesSubscribe[i] != that1.ResourceNamesSubscribe[i] {
return false
}
}
if len(this.ResourceNamesUnsubscribe) != len(that1.ResourceNamesUnsubscribe) {
return false
}
for i := range this.ResourceNamesUnsubscribe {
if this.ResourceNamesUnsubscribe[i] != that1.ResourceNamesUnsubscribe[i] {
return false
}
}
if len(this.InitialResourceVersions) != len(that1.InitialResourceVersions) {
return false
}
for i := range this.InitialResourceVersions {
if this.InitialResourceVersions[i] != that1.InitialResourceVersions[i] {
return false
}
}
if this.ResponseNonce != that1.ResponseNonce {
return false
}
if !this.ErrorDetail.Equal(that1.ErrorDetail) {
return false
}
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
return false
}
return true
}
func (this *DeltaDiscoveryResponse) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
that1, ok := that.(*DeltaDiscoveryResponse)
if !ok {
that2, ok := that.(DeltaDiscoveryResponse)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
return this == nil
} else if this == nil {
return false
}
if this.SystemVersionInfo != that1.SystemVersionInfo {
return false
}
if len(this.Resources) != len(that1.Resources) {
return false
}
for i := range this.Resources {
if !this.Resources[i].Equal(&that1.Resources[i]) {
return false
}
}
if len(this.RemovedResources) != len(that1.RemovedResources) {
return false
}
for i := range this.RemovedResources {
if this.RemovedResources[i] != that1.RemovedResources[i] {
return false
}
}
if this.Nonce != that1.Nonce {
return false
}
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
return false
}
return true
}
func (this *Resource) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
that1, ok := that.(*Resource)
if !ok {
that2, ok := that.(Resource)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
return this == nil
} else if this == nil {
return false
}
if this.Name != that1.Name {
return false
}
if len(this.Aliases) != len(that1.Aliases) {
return false
}
for i := range this.Aliases {
if this.Aliases[i] != that1.Aliases[i] {
return false
}
}
if this.Version != that1.Version {
return false
}
if !this.Resource.Equal(that1.Resource) {
return false
}
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
return false
}
return true
}
func (m *DiscoveryRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *DiscoveryRequest) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.VersionInfo) > 0 {
dAtA[i] = 0xa
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.VersionInfo)))
i += copy(dAtA[i:], m.VersionInfo)
}
if m.Node != nil {
dAtA[i] = 0x12
i++
i = encodeVarintDiscovery(dAtA, i, uint64(m.Node.Size()))
n1, err := m.Node.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n1
}
if len(m.ResourceNames) > 0 {
for _, s := range m.ResourceNames {
dAtA[i] = 0x1a
i++
l = len(s)
for l >= 1<<7 {
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
l >>= 7
i++
}
dAtA[i] = uint8(l)
i++
i += copy(dAtA[i:], s)
}
}
if len(m.TypeUrl) > 0 {
dAtA[i] = 0x22
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.TypeUrl)))
i += copy(dAtA[i:], m.TypeUrl)
}
if len(m.ResponseNonce) > 0 {
dAtA[i] = 0x2a
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.ResponseNonce)))
i += copy(dAtA[i:], m.ResponseNonce)
}
if m.ErrorDetail != nil {
dAtA[i] = 0x32
i++
i = encodeVarintDiscovery(dAtA, i, uint64(m.ErrorDetail.Size()))
n2, err := m.ErrorDetail.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n2
}
if m.XXX_unrecognized != nil {
i += copy(dAtA[i:], m.XXX_unrecognized)
}
return i, nil
}
func (m *DiscoveryResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *DiscoveryResponse) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.VersionInfo) > 0 {
dAtA[i] = 0xa
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.VersionInfo)))
i += copy(dAtA[i:], m.VersionInfo)
}
if len(m.Resources) > 0 {
for _, msg := range m.Resources {
dAtA[i] = 0x12
i++
i = encodeVarintDiscovery(dAtA, i, uint64(msg.Size()))
n, err := msg.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n
}
}
if m.Canary {
dAtA[i] = 0x18
i++
if m.Canary {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i++
}
if len(m.TypeUrl) > 0 {
dAtA[i] = 0x22
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.TypeUrl)))
i += copy(dAtA[i:], m.TypeUrl)
}
if len(m.Nonce) > 0 {
dAtA[i] = 0x2a
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Nonce)))
i += copy(dAtA[i:], m.Nonce)
}
if m.ControlPlane != nil {
dAtA[i] = 0x32
i++
i = encodeVarintDiscovery(dAtA, i, uint64(m.ControlPlane.Size()))
n3, err := m.ControlPlane.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n3
}
if m.XXX_unrecognized != nil {
i += copy(dAtA[i:], m.XXX_unrecognized)
}
return i, nil
}
func (m *DeltaDiscoveryRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *DeltaDiscoveryRequest) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.Node != nil {
dAtA[i] = 0xa
i++
i = encodeVarintDiscovery(dAtA, i, uint64(m.Node.Size()))
n4, err := m.Node.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n4
}
if len(m.TypeUrl) > 0 {
dAtA[i] = 0x12
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.TypeUrl)))
i += copy(dAtA[i:], m.TypeUrl)
}
if len(m.ResourceNamesSubscribe) > 0 {
for _, s := range m.ResourceNamesSubscribe {
dAtA[i] = 0x1a
i++
l = len(s)
for l >= 1<<7 {
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
l >>= 7
i++
}
dAtA[i] = uint8(l)
i++
i += copy(dAtA[i:], s)
}
}
if len(m.ResourceNamesUnsubscribe) > 0 {
for _, s := range m.ResourceNamesUnsubscribe {
dAtA[i] = 0x22
i++
l = len(s)
for l >= 1<<7 {
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
l >>= 7
i++
}
dAtA[i] = uint8(l)
i++
i += copy(dAtA[i:], s)
}
}
if len(m.InitialResourceVersions) > 0 {
keysForInitialResourceVersions := make([]string, 0, len(m.InitialResourceVersions))
for k, _ := range m.InitialResourceVersions {
keysForInitialResourceVersions = append(keysForInitialResourceVersions, string(k))
}
github_com_gogo_protobuf_sortkeys.Strings(keysForInitialResourceVersions)
for _, k := range keysForInitialResourceVersions {
dAtA[i] = 0x2a
i++
v := m.InitialResourceVersions[string(k)]
mapSize := 1 + len(k) + sovDiscovery(uint64(len(k))) + 1 + len(v) + sovDiscovery(uint64(len(v)))
i = encodeVarintDiscovery(dAtA, i, uint64(mapSize))
dAtA[i] = 0xa
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(k)))
i += copy(dAtA[i:], k)
dAtA[i] = 0x12
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(v)))
i += copy(dAtA[i:], v)
}
}
if len(m.ResponseNonce) > 0 {
dAtA[i] = 0x32
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.ResponseNonce)))
i += copy(dAtA[i:], m.ResponseNonce)
}
if m.ErrorDetail != nil {
dAtA[i] = 0x3a
i++
i = encodeVarintDiscovery(dAtA, i, uint64(m.ErrorDetail.Size()))
n5, err := m.ErrorDetail.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n5
}
if m.XXX_unrecognized != nil {
i += copy(dAtA[i:], m.XXX_unrecognized)
}
return i, nil
}
func (m *DeltaDiscoveryResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *DeltaDiscoveryResponse) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.SystemVersionInfo) > 0 {
dAtA[i] = 0xa
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.SystemVersionInfo)))
i += copy(dAtA[i:], m.SystemVersionInfo)
}
if len(m.Resources) > 0 {
for _, msg := range m.Resources {
dAtA[i] = 0x12
i++
i = encodeVarintDiscovery(dAtA, i, uint64(msg.Size()))
n, err := msg.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n
}
}
if len(m.Nonce) > 0 {
dAtA[i] = 0x2a
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Nonce)))
i += copy(dAtA[i:], m.Nonce)
}
if len(m.RemovedResources) > 0 {
for _, s := range m.RemovedResources {
dAtA[i] = 0x32
i++
l = len(s)
for l >= 1<<7 {
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
l >>= 7
i++
}
dAtA[i] = uint8(l)
i++
i += copy(dAtA[i:], s)
}
}
if m.XXX_unrecognized != nil {
i += copy(dAtA[i:], m.XXX_unrecognized)
}
return i, nil
}
func (m *Resource) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Resource) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.Version) > 0 {
dAtA[i] = 0xa
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Version)))
i += copy(dAtA[i:], m.Version)
}
if m.Resource != nil {
dAtA[i] = 0x12
i++
i = encodeVarintDiscovery(dAtA, i, uint64(m.Resource.Size()))
n6, err := m.Resource.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n6
}
if len(m.Name) > 0 {
dAtA[i] = 0x1a
i++
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Name)))
i += copy(dAtA[i:], m.Name)
}
if len(m.Aliases) > 0 {
for _, s := range m.Aliases {
dAtA[i] = 0x22
i++
l = len(s)
for l >= 1<<7 {
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
l >>= 7
i++
}
dAtA[i] = uint8(l)
i++
i += copy(dAtA[i:], s)
}
}
if m.XXX_unrecognized != nil {
i += copy(dAtA[i:], m.XXX_unrecognized)
}
return i, nil
}
func encodeVarintDiscovery(dAtA []byte, offset int, v uint64) int {
for v >= 1<<7 {
dAtA[offset] = uint8(v&0x7f | 0x80)
v >>= 7
offset++
}
dAtA[offset] = uint8(v)
return offset + 1
}
func (m *DiscoveryRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.VersionInfo)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if m.Node != nil {
l = m.Node.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
if len(m.ResourceNames) > 0 {
for _, s := range m.ResourceNames {
l = len(s)
n += 1 + l + sovDiscovery(uint64(l))
}
}
l = len(m.TypeUrl)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
l = len(m.ResponseNonce)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if m.ErrorDetail != nil {
l = m.ErrorDetail.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
return n
}
func (m *DiscoveryResponse) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.VersionInfo)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if len(m.Resources) > 0 {
for _, e := range m.Resources {
l = e.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
}
if m.Canary {
n += 2
}
l = len(m.TypeUrl)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
l = len(m.Nonce)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if m.ControlPlane != nil {
l = m.ControlPlane.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
return n
}
func (m *DeltaDiscoveryRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Node != nil {
l = m.Node.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
l = len(m.TypeUrl)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if len(m.ResourceNamesSubscribe) > 0 {
for _, s := range m.ResourceNamesSubscribe {
l = len(s)
n += 1 + l + sovDiscovery(uint64(l))
}
}
if len(m.ResourceNamesUnsubscribe) > 0 {
for _, s := range m.ResourceNamesUnsubscribe {
l = len(s)
n += 1 + l + sovDiscovery(uint64(l))
}
}
if len(m.InitialResourceVersions) > 0 {
for k, v := range m.InitialResourceVersions {
_ = k
_ = v
mapEntrySize := 1 + len(k) + sovDiscovery(uint64(len(k))) + 1 + len(v) + sovDiscovery(uint64(len(v)))
n += mapEntrySize + 1 + sovDiscovery(uint64(mapEntrySize))
}
}
l = len(m.ResponseNonce)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if m.ErrorDetail != nil {
l = m.ErrorDetail.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
return n
}
func (m *DeltaDiscoveryResponse) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.SystemVersionInfo)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if len(m.Resources) > 0 {
for _, e := range m.Resources {
l = e.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
}
l = len(m.Nonce)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if len(m.RemovedResources) > 0 {
for _, s := range m.RemovedResources {
l = len(s)
n += 1 + l + sovDiscovery(uint64(l))
}
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
return n
}
func (m *Resource) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.Version)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if m.Resource != nil {
l = m.Resource.Size()
n += 1 + l + sovDiscovery(uint64(l))
}
l = len(m.Name)
if l > 0 {
n += 1 + l + sovDiscovery(uint64(l))
}
if len(m.Aliases) > 0 {
for _, s := range m.Aliases {
l = len(s)
n += 1 + l + sovDiscovery(uint64(l))
}
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
return n
}
func sovDiscovery(x uint64) (n int) {
for {
n++
x >>= 7
if x == 0 {
break
}
}
return n
}
func sozDiscovery(x uint64) (n int) {
return sovDiscovery(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (m *DiscoveryRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: DiscoveryRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: DiscoveryRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field VersionInfo", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.VersionInfo = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Node", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.Node == nil {
m.Node = &core.Node{}
}
if err := m.Node.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ResourceNames", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ResourceNames = append(m.ResourceNames, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.TypeUrl = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ResponseNonce", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ResponseNonce = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ErrorDetail", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.ErrorDetail == nil {
m.ErrorDetail = &rpc.Status{}
}
if err := m.ErrorDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipDiscovery(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *DiscoveryResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: DiscoveryResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: DiscoveryResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field VersionInfo", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.VersionInfo = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Resources", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Resources = append(m.Resources, types.Any{})
if err := m.Resources[len(m.Resources)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Canary", wireType)
}
var v int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.Canary = bool(v != 0)
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.TypeUrl = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Nonce", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Nonce = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ControlPlane", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.ControlPlane == nil {
m.ControlPlane = &core.ControlPlane{}
}
if err := m.ControlPlane.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipDiscovery(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *DeltaDiscoveryRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: DeltaDiscoveryRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: DeltaDiscoveryRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Node", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.Node == nil {
m.Node = &core.Node{}
}
if err := m.Node.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.TypeUrl = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ResourceNamesSubscribe", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ResourceNamesSubscribe = append(m.ResourceNamesSubscribe, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ResourceNamesUnsubscribe", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ResourceNamesUnsubscribe = append(m.ResourceNamesUnsubscribe, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field InitialResourceVersions", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.InitialResourceVersions == nil {
m.InitialResourceVersions = make(map[string]string)
}
var mapkey string
var mapvalue string
for iNdEx < postIndex {
entryPreIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
if fieldNum == 1 {
var stringLenmapkey uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLenmapkey |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLenmapkey := int(stringLenmapkey)
if intStringLenmapkey < 0 {
return ErrInvalidLengthDiscovery
}
postStringIndexmapkey := iNdEx + intStringLenmapkey
if postStringIndexmapkey < 0 {
return ErrInvalidLengthDiscovery
}
if postStringIndexmapkey > l {
return io.ErrUnexpectedEOF
}
mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
iNdEx = postStringIndexmapkey
} else if fieldNum == 2 {
var stringLenmapvalue uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLenmapvalue |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLenmapvalue := int(stringLenmapvalue)
if intStringLenmapvalue < 0 {
return ErrInvalidLengthDiscovery
}
postStringIndexmapvalue := iNdEx + intStringLenmapvalue
if postStringIndexmapvalue < 0 {
return ErrInvalidLengthDiscovery
}
if postStringIndexmapvalue > l {
return io.ErrUnexpectedEOF
}
mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
iNdEx = postStringIndexmapvalue
} else {
iNdEx = entryPreIndex
skippy, err := skipDiscovery(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) > postIndex {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
m.InitialResourceVersions[mapkey] = mapvalue
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ResponseNonce", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ResponseNonce = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 7:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ErrorDetail", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.ErrorDetail == nil {
m.ErrorDetail = &rpc.Status{}
}
if err := m.ErrorDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipDiscovery(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *DeltaDiscoveryResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: DeltaDiscoveryResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: DeltaDiscoveryResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field SystemVersionInfo", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.SystemVersionInfo = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Resources", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Resources = append(m.Resources, Resource{})
if err := m.Resources[len(m.Resources)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Nonce", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Nonce = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field RemovedResources", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.RemovedResources = append(m.RemovedResources, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipDiscovery(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *Resource) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: Resource: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Resource: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Version = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Resource", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.Resource == nil {
m.Resource = &types.Any{}
}
if err := m.Resource.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Name = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Aliases", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDiscovery
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthDiscovery
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDiscovery
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Aliases = append(m.Aliases, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipDiscovery(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) < 0 {
return ErrInvalidLengthDiscovery
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipDiscovery(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowDiscovery
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
wireType := int(wire & 0x7)
switch wireType {
case 0:
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowDiscovery
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
iNdEx++
if dAtA[iNdEx-1] < 0x80 {
break
}
}
return iNdEx, nil
case 1:
iNdEx += 8
return iNdEx, nil
case 2:
var length int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowDiscovery
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
length |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if length < 0 {
return 0, ErrInvalidLengthDiscovery
}
iNdEx += length
if iNdEx < 0 {
return 0, ErrInvalidLengthDiscovery
}
return iNdEx, nil
case 3:
for {
var innerWire uint64
var start int = iNdEx
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowDiscovery
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
innerWire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
innerWireType := int(innerWire & 0x7)
if innerWireType == 4 {
break
}
next, err := skipDiscovery(dAtA[start:])
if err != nil {
return 0, err
}
iNdEx = start + next
if iNdEx < 0 {
return 0, ErrInvalidLengthDiscovery
}
}
return iNdEx, nil
case 4:
return iNdEx, nil
case 5:
iNdEx += 4
return iNdEx, nil
default:
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
}
}
panic("unreachable")
}
var (
ErrInvalidLengthDiscovery = fmt.Errorf("proto: negative length found during unmarshaling")
ErrIntOverflowDiscovery = fmt.Errorf("proto: integer overflow")
)