messages.pb.go 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  1. // Copyright 2015-2016 gRPC authors.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // Message definitions to be used by integration test service definitions.
  15. // Code generated by protoc-gen-go. DO NOT EDIT.
  16. // versions:
  17. // protoc-gen-go v1.30.0
  18. // protoc v4.22.0
  19. // source: grpc/testing/messages.proto
  20. package grpc_testing
  21. import (
  22. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  23. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  24. reflect "reflect"
  25. sync "sync"
  26. )
  27. const (
  28. // Verify that this generated code is sufficiently up-to-date.
  29. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  30. // Verify that runtime/protoimpl is sufficiently up-to-date.
  31. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  32. )
  33. // The type of payload that should be returned.
  34. type PayloadType int32
  35. const (
  36. // Compressable text format.
  37. PayloadType_COMPRESSABLE PayloadType = 0
  38. )
  39. // Enum value maps for PayloadType.
  40. var (
  41. PayloadType_name = map[int32]string{
  42. 0: "COMPRESSABLE",
  43. }
  44. PayloadType_value = map[string]int32{
  45. "COMPRESSABLE": 0,
  46. }
  47. )
  48. func (x PayloadType) Enum() *PayloadType {
  49. p := new(PayloadType)
  50. *p = x
  51. return p
  52. }
  53. func (x PayloadType) String() string {
  54. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  55. }
  56. func (PayloadType) Descriptor() protoreflect.EnumDescriptor {
  57. return file_grpc_testing_messages_proto_enumTypes[0].Descriptor()
  58. }
  59. func (PayloadType) Type() protoreflect.EnumType {
  60. return &file_grpc_testing_messages_proto_enumTypes[0]
  61. }
  62. func (x PayloadType) Number() protoreflect.EnumNumber {
  63. return protoreflect.EnumNumber(x)
  64. }
  65. // Deprecated: Use PayloadType.Descriptor instead.
  66. func (PayloadType) EnumDescriptor() ([]byte, []int) {
  67. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{0}
  68. }
  69. // The type of route that a client took to reach a server w.r.t. gRPCLB.
  70. // The server must fill in "fallback" if it detects that the RPC reached
  71. // the server via the "gRPCLB fallback" path, and "backend" if it detects
  72. // that the RPC reached the server via "gRPCLB backend" path (i.e. if it got
  73. // the address of this server from the gRPCLB server BalanceLoad RPC). Exactly
  74. // how this detection is done is context and server dependent.
  75. type GrpclbRouteType int32
  76. const (
  77. // Server didn't detect the route that a client took to reach it.
  78. GrpclbRouteType_GRPCLB_ROUTE_TYPE_UNKNOWN GrpclbRouteType = 0
  79. // Indicates that a client reached a server via gRPCLB fallback.
  80. GrpclbRouteType_GRPCLB_ROUTE_TYPE_FALLBACK GrpclbRouteType = 1
  81. // Indicates that a client reached a server as a gRPCLB-given backend.
  82. GrpclbRouteType_GRPCLB_ROUTE_TYPE_BACKEND GrpclbRouteType = 2
  83. )
  84. // Enum value maps for GrpclbRouteType.
  85. var (
  86. GrpclbRouteType_name = map[int32]string{
  87. 0: "GRPCLB_ROUTE_TYPE_UNKNOWN",
  88. 1: "GRPCLB_ROUTE_TYPE_FALLBACK",
  89. 2: "GRPCLB_ROUTE_TYPE_BACKEND",
  90. }
  91. GrpclbRouteType_value = map[string]int32{
  92. "GRPCLB_ROUTE_TYPE_UNKNOWN": 0,
  93. "GRPCLB_ROUTE_TYPE_FALLBACK": 1,
  94. "GRPCLB_ROUTE_TYPE_BACKEND": 2,
  95. }
  96. )
  97. func (x GrpclbRouteType) Enum() *GrpclbRouteType {
  98. p := new(GrpclbRouteType)
  99. *p = x
  100. return p
  101. }
  102. func (x GrpclbRouteType) String() string {
  103. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  104. }
  105. func (GrpclbRouteType) Descriptor() protoreflect.EnumDescriptor {
  106. return file_grpc_testing_messages_proto_enumTypes[1].Descriptor()
  107. }
  108. func (GrpclbRouteType) Type() protoreflect.EnumType {
  109. return &file_grpc_testing_messages_proto_enumTypes[1]
  110. }
  111. func (x GrpclbRouteType) Number() protoreflect.EnumNumber {
  112. return protoreflect.EnumNumber(x)
  113. }
  114. // Deprecated: Use GrpclbRouteType.Descriptor instead.
  115. func (GrpclbRouteType) EnumDescriptor() ([]byte, []int) {
  116. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{1}
  117. }
  118. // Type of RPCs to send.
  119. type ClientConfigureRequest_RpcType int32
  120. const (
  121. ClientConfigureRequest_EMPTY_CALL ClientConfigureRequest_RpcType = 0
  122. ClientConfigureRequest_UNARY_CALL ClientConfigureRequest_RpcType = 1
  123. )
  124. // Enum value maps for ClientConfigureRequest_RpcType.
  125. var (
  126. ClientConfigureRequest_RpcType_name = map[int32]string{
  127. 0: "EMPTY_CALL",
  128. 1: "UNARY_CALL",
  129. }
  130. ClientConfigureRequest_RpcType_value = map[string]int32{
  131. "EMPTY_CALL": 0,
  132. "UNARY_CALL": 1,
  133. }
  134. )
  135. func (x ClientConfigureRequest_RpcType) Enum() *ClientConfigureRequest_RpcType {
  136. p := new(ClientConfigureRequest_RpcType)
  137. *p = x
  138. return p
  139. }
  140. func (x ClientConfigureRequest_RpcType) String() string {
  141. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  142. }
  143. func (ClientConfigureRequest_RpcType) Descriptor() protoreflect.EnumDescriptor {
  144. return file_grpc_testing_messages_proto_enumTypes[2].Descriptor()
  145. }
  146. func (ClientConfigureRequest_RpcType) Type() protoreflect.EnumType {
  147. return &file_grpc_testing_messages_proto_enumTypes[2]
  148. }
  149. func (x ClientConfigureRequest_RpcType) Number() protoreflect.EnumNumber {
  150. return protoreflect.EnumNumber(x)
  151. }
  152. // Deprecated: Use ClientConfigureRequest_RpcType.Descriptor instead.
  153. func (ClientConfigureRequest_RpcType) EnumDescriptor() ([]byte, []int) {
  154. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{16, 0}
  155. }
  156. // TODO(dgq): Go back to using well-known types once
  157. // https://github.com/grpc/grpc/issues/6980 has been fixed.
  158. // import "google/protobuf/wrappers.proto";
  159. type BoolValue struct {
  160. state protoimpl.MessageState
  161. sizeCache protoimpl.SizeCache
  162. unknownFields protoimpl.UnknownFields
  163. // The bool value.
  164. Value bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  165. }
  166. func (x *BoolValue) Reset() {
  167. *x = BoolValue{}
  168. if protoimpl.UnsafeEnabled {
  169. mi := &file_grpc_testing_messages_proto_msgTypes[0]
  170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  171. ms.StoreMessageInfo(mi)
  172. }
  173. }
  174. func (x *BoolValue) String() string {
  175. return protoimpl.X.MessageStringOf(x)
  176. }
  177. func (*BoolValue) ProtoMessage() {}
  178. func (x *BoolValue) ProtoReflect() protoreflect.Message {
  179. mi := &file_grpc_testing_messages_proto_msgTypes[0]
  180. if protoimpl.UnsafeEnabled && x != nil {
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. if ms.LoadMessageInfo() == nil {
  183. ms.StoreMessageInfo(mi)
  184. }
  185. return ms
  186. }
  187. return mi.MessageOf(x)
  188. }
  189. // Deprecated: Use BoolValue.ProtoReflect.Descriptor instead.
  190. func (*BoolValue) Descriptor() ([]byte, []int) {
  191. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{0}
  192. }
  193. func (x *BoolValue) GetValue() bool {
  194. if x != nil {
  195. return x.Value
  196. }
  197. return false
  198. }
  199. // A block of data, to simply increase gRPC message size.
  200. type Payload struct {
  201. state protoimpl.MessageState
  202. sizeCache protoimpl.SizeCache
  203. unknownFields protoimpl.UnknownFields
  204. // The type of data in body.
  205. Type PayloadType `protobuf:"varint,1,opt,name=type,proto3,enum=grpc.testing.PayloadType" json:"type,omitempty"`
  206. // Primary contents of payload.
  207. Body []byte `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
  208. }
  209. func (x *Payload) Reset() {
  210. *x = Payload{}
  211. if protoimpl.UnsafeEnabled {
  212. mi := &file_grpc_testing_messages_proto_msgTypes[1]
  213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  214. ms.StoreMessageInfo(mi)
  215. }
  216. }
  217. func (x *Payload) String() string {
  218. return protoimpl.X.MessageStringOf(x)
  219. }
  220. func (*Payload) ProtoMessage() {}
  221. func (x *Payload) ProtoReflect() protoreflect.Message {
  222. mi := &file_grpc_testing_messages_proto_msgTypes[1]
  223. if protoimpl.UnsafeEnabled && x != nil {
  224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  225. if ms.LoadMessageInfo() == nil {
  226. ms.StoreMessageInfo(mi)
  227. }
  228. return ms
  229. }
  230. return mi.MessageOf(x)
  231. }
  232. // Deprecated: Use Payload.ProtoReflect.Descriptor instead.
  233. func (*Payload) Descriptor() ([]byte, []int) {
  234. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{1}
  235. }
  236. func (x *Payload) GetType() PayloadType {
  237. if x != nil {
  238. return x.Type
  239. }
  240. return PayloadType_COMPRESSABLE
  241. }
  242. func (x *Payload) GetBody() []byte {
  243. if x != nil {
  244. return x.Body
  245. }
  246. return nil
  247. }
  248. // A protobuf representation for grpc status. This is used by test
  249. // clients to specify a status that the server should attempt to return.
  250. type EchoStatus struct {
  251. state protoimpl.MessageState
  252. sizeCache protoimpl.SizeCache
  253. unknownFields protoimpl.UnknownFields
  254. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  255. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
  256. }
  257. func (x *EchoStatus) Reset() {
  258. *x = EchoStatus{}
  259. if protoimpl.UnsafeEnabled {
  260. mi := &file_grpc_testing_messages_proto_msgTypes[2]
  261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  262. ms.StoreMessageInfo(mi)
  263. }
  264. }
  265. func (x *EchoStatus) String() string {
  266. return protoimpl.X.MessageStringOf(x)
  267. }
  268. func (*EchoStatus) ProtoMessage() {}
  269. func (x *EchoStatus) ProtoReflect() protoreflect.Message {
  270. mi := &file_grpc_testing_messages_proto_msgTypes[2]
  271. if protoimpl.UnsafeEnabled && x != nil {
  272. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  273. if ms.LoadMessageInfo() == nil {
  274. ms.StoreMessageInfo(mi)
  275. }
  276. return ms
  277. }
  278. return mi.MessageOf(x)
  279. }
  280. // Deprecated: Use EchoStatus.ProtoReflect.Descriptor instead.
  281. func (*EchoStatus) Descriptor() ([]byte, []int) {
  282. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{2}
  283. }
  284. func (x *EchoStatus) GetCode() int32 {
  285. if x != nil {
  286. return x.Code
  287. }
  288. return 0
  289. }
  290. func (x *EchoStatus) GetMessage() string {
  291. if x != nil {
  292. return x.Message
  293. }
  294. return ""
  295. }
  296. // Unary request.
  297. type SimpleRequest struct {
  298. state protoimpl.MessageState
  299. sizeCache protoimpl.SizeCache
  300. unknownFields protoimpl.UnknownFields
  301. // Desired payload type in the response from the server.
  302. // If response_type is RANDOM, server randomly chooses one from other formats.
  303. ResponseType PayloadType `protobuf:"varint,1,opt,name=response_type,json=responseType,proto3,enum=grpc.testing.PayloadType" json:"response_type,omitempty"`
  304. // Desired payload size in the response from the server.
  305. ResponseSize int32 `protobuf:"varint,2,opt,name=response_size,json=responseSize,proto3" json:"response_size,omitempty"`
  306. // Optional input payload sent along with the request.
  307. Payload *Payload `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
  308. // Whether SimpleResponse should include username.
  309. FillUsername bool `protobuf:"varint,4,opt,name=fill_username,json=fillUsername,proto3" json:"fill_username,omitempty"`
  310. // Whether SimpleResponse should include OAuth scope.
  311. FillOauthScope bool `protobuf:"varint,5,opt,name=fill_oauth_scope,json=fillOauthScope,proto3" json:"fill_oauth_scope,omitempty"`
  312. // Whether to request the server to compress the response. This field is
  313. // "nullable" in order to interoperate seamlessly with clients not able to
  314. // implement the full compression tests by introspecting the call to verify
  315. // the response's compression status.
  316. ResponseCompressed *BoolValue `protobuf:"bytes,6,opt,name=response_compressed,json=responseCompressed,proto3" json:"response_compressed,omitempty"`
  317. // Whether server should return a given status
  318. ResponseStatus *EchoStatus `protobuf:"bytes,7,opt,name=response_status,json=responseStatus,proto3" json:"response_status,omitempty"`
  319. // Whether the server should expect this request to be compressed.
  320. ExpectCompressed *BoolValue `protobuf:"bytes,8,opt,name=expect_compressed,json=expectCompressed,proto3" json:"expect_compressed,omitempty"`
  321. // Whether SimpleResponse should include server_id.
  322. FillServerId bool `protobuf:"varint,9,opt,name=fill_server_id,json=fillServerId,proto3" json:"fill_server_id,omitempty"`
  323. // Whether SimpleResponse should include grpclb_route_type.
  324. FillGrpclbRouteType bool `protobuf:"varint,10,opt,name=fill_grpclb_route_type,json=fillGrpclbRouteType,proto3" json:"fill_grpclb_route_type,omitempty"`
  325. // If set the server should record this metrics report data for the current RPC.
  326. OrcaPerQueryReport *TestOrcaReport `protobuf:"bytes,11,opt,name=orca_per_query_report,json=orcaPerQueryReport,proto3" json:"orca_per_query_report,omitempty"`
  327. }
  328. func (x *SimpleRequest) Reset() {
  329. *x = SimpleRequest{}
  330. if protoimpl.UnsafeEnabled {
  331. mi := &file_grpc_testing_messages_proto_msgTypes[3]
  332. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  333. ms.StoreMessageInfo(mi)
  334. }
  335. }
  336. func (x *SimpleRequest) String() string {
  337. return protoimpl.X.MessageStringOf(x)
  338. }
  339. func (*SimpleRequest) ProtoMessage() {}
  340. func (x *SimpleRequest) ProtoReflect() protoreflect.Message {
  341. mi := &file_grpc_testing_messages_proto_msgTypes[3]
  342. if protoimpl.UnsafeEnabled && x != nil {
  343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  344. if ms.LoadMessageInfo() == nil {
  345. ms.StoreMessageInfo(mi)
  346. }
  347. return ms
  348. }
  349. return mi.MessageOf(x)
  350. }
  351. // Deprecated: Use SimpleRequest.ProtoReflect.Descriptor instead.
  352. func (*SimpleRequest) Descriptor() ([]byte, []int) {
  353. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{3}
  354. }
  355. func (x *SimpleRequest) GetResponseType() PayloadType {
  356. if x != nil {
  357. return x.ResponseType
  358. }
  359. return PayloadType_COMPRESSABLE
  360. }
  361. func (x *SimpleRequest) GetResponseSize() int32 {
  362. if x != nil {
  363. return x.ResponseSize
  364. }
  365. return 0
  366. }
  367. func (x *SimpleRequest) GetPayload() *Payload {
  368. if x != nil {
  369. return x.Payload
  370. }
  371. return nil
  372. }
  373. func (x *SimpleRequest) GetFillUsername() bool {
  374. if x != nil {
  375. return x.FillUsername
  376. }
  377. return false
  378. }
  379. func (x *SimpleRequest) GetFillOauthScope() bool {
  380. if x != nil {
  381. return x.FillOauthScope
  382. }
  383. return false
  384. }
  385. func (x *SimpleRequest) GetResponseCompressed() *BoolValue {
  386. if x != nil {
  387. return x.ResponseCompressed
  388. }
  389. return nil
  390. }
  391. func (x *SimpleRequest) GetResponseStatus() *EchoStatus {
  392. if x != nil {
  393. return x.ResponseStatus
  394. }
  395. return nil
  396. }
  397. func (x *SimpleRequest) GetExpectCompressed() *BoolValue {
  398. if x != nil {
  399. return x.ExpectCompressed
  400. }
  401. return nil
  402. }
  403. func (x *SimpleRequest) GetFillServerId() bool {
  404. if x != nil {
  405. return x.FillServerId
  406. }
  407. return false
  408. }
  409. func (x *SimpleRequest) GetFillGrpclbRouteType() bool {
  410. if x != nil {
  411. return x.FillGrpclbRouteType
  412. }
  413. return false
  414. }
  415. func (x *SimpleRequest) GetOrcaPerQueryReport() *TestOrcaReport {
  416. if x != nil {
  417. return x.OrcaPerQueryReport
  418. }
  419. return nil
  420. }
  421. // Unary response, as configured by the request.
  422. type SimpleResponse struct {
  423. state protoimpl.MessageState
  424. sizeCache protoimpl.SizeCache
  425. unknownFields protoimpl.UnknownFields
  426. // Payload to increase message size.
  427. Payload *Payload `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
  428. // The user the request came from, for verifying authentication was
  429. // successful when the client expected it.
  430. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
  431. // OAuth scope.
  432. OauthScope string `protobuf:"bytes,3,opt,name=oauth_scope,json=oauthScope,proto3" json:"oauth_scope,omitempty"`
  433. // Server ID. This must be unique among different server instances,
  434. // but the same across all RPC's made to a particular server instance.
  435. ServerId string `protobuf:"bytes,4,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"`
  436. // gRPCLB Path.
  437. GrpclbRouteType GrpclbRouteType `protobuf:"varint,5,opt,name=grpclb_route_type,json=grpclbRouteType,proto3,enum=grpc.testing.GrpclbRouteType" json:"grpclb_route_type,omitempty"`
  438. // Server hostname.
  439. Hostname string `protobuf:"bytes,6,opt,name=hostname,proto3" json:"hostname,omitempty"`
  440. }
  441. func (x *SimpleResponse) Reset() {
  442. *x = SimpleResponse{}
  443. if protoimpl.UnsafeEnabled {
  444. mi := &file_grpc_testing_messages_proto_msgTypes[4]
  445. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  446. ms.StoreMessageInfo(mi)
  447. }
  448. }
  449. func (x *SimpleResponse) String() string {
  450. return protoimpl.X.MessageStringOf(x)
  451. }
  452. func (*SimpleResponse) ProtoMessage() {}
  453. func (x *SimpleResponse) ProtoReflect() protoreflect.Message {
  454. mi := &file_grpc_testing_messages_proto_msgTypes[4]
  455. if protoimpl.UnsafeEnabled && x != nil {
  456. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  457. if ms.LoadMessageInfo() == nil {
  458. ms.StoreMessageInfo(mi)
  459. }
  460. return ms
  461. }
  462. return mi.MessageOf(x)
  463. }
  464. // Deprecated: Use SimpleResponse.ProtoReflect.Descriptor instead.
  465. func (*SimpleResponse) Descriptor() ([]byte, []int) {
  466. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{4}
  467. }
  468. func (x *SimpleResponse) GetPayload() *Payload {
  469. if x != nil {
  470. return x.Payload
  471. }
  472. return nil
  473. }
  474. func (x *SimpleResponse) GetUsername() string {
  475. if x != nil {
  476. return x.Username
  477. }
  478. return ""
  479. }
  480. func (x *SimpleResponse) GetOauthScope() string {
  481. if x != nil {
  482. return x.OauthScope
  483. }
  484. return ""
  485. }
  486. func (x *SimpleResponse) GetServerId() string {
  487. if x != nil {
  488. return x.ServerId
  489. }
  490. return ""
  491. }
  492. func (x *SimpleResponse) GetGrpclbRouteType() GrpclbRouteType {
  493. if x != nil {
  494. return x.GrpclbRouteType
  495. }
  496. return GrpclbRouteType_GRPCLB_ROUTE_TYPE_UNKNOWN
  497. }
  498. func (x *SimpleResponse) GetHostname() string {
  499. if x != nil {
  500. return x.Hostname
  501. }
  502. return ""
  503. }
  504. // Client-streaming request.
  505. type StreamingInputCallRequest struct {
  506. state protoimpl.MessageState
  507. sizeCache protoimpl.SizeCache
  508. unknownFields protoimpl.UnknownFields
  509. // Optional input payload sent along with the request.
  510. Payload *Payload `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
  511. // Whether the server should expect this request to be compressed. This field
  512. // is "nullable" in order to interoperate seamlessly with servers not able to
  513. // implement the full compression tests by introspecting the call to verify
  514. // the request's compression status.
  515. ExpectCompressed *BoolValue `protobuf:"bytes,2,opt,name=expect_compressed,json=expectCompressed,proto3" json:"expect_compressed,omitempty"`
  516. }
  517. func (x *StreamingInputCallRequest) Reset() {
  518. *x = StreamingInputCallRequest{}
  519. if protoimpl.UnsafeEnabled {
  520. mi := &file_grpc_testing_messages_proto_msgTypes[5]
  521. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  522. ms.StoreMessageInfo(mi)
  523. }
  524. }
  525. func (x *StreamingInputCallRequest) String() string {
  526. return protoimpl.X.MessageStringOf(x)
  527. }
  528. func (*StreamingInputCallRequest) ProtoMessage() {}
  529. func (x *StreamingInputCallRequest) ProtoReflect() protoreflect.Message {
  530. mi := &file_grpc_testing_messages_proto_msgTypes[5]
  531. if protoimpl.UnsafeEnabled && x != nil {
  532. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  533. if ms.LoadMessageInfo() == nil {
  534. ms.StoreMessageInfo(mi)
  535. }
  536. return ms
  537. }
  538. return mi.MessageOf(x)
  539. }
  540. // Deprecated: Use StreamingInputCallRequest.ProtoReflect.Descriptor instead.
  541. func (*StreamingInputCallRequest) Descriptor() ([]byte, []int) {
  542. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{5}
  543. }
  544. func (x *StreamingInputCallRequest) GetPayload() *Payload {
  545. if x != nil {
  546. return x.Payload
  547. }
  548. return nil
  549. }
  550. func (x *StreamingInputCallRequest) GetExpectCompressed() *BoolValue {
  551. if x != nil {
  552. return x.ExpectCompressed
  553. }
  554. return nil
  555. }
  556. // Client-streaming response.
  557. type StreamingInputCallResponse struct {
  558. state protoimpl.MessageState
  559. sizeCache protoimpl.SizeCache
  560. unknownFields protoimpl.UnknownFields
  561. // Aggregated size of payloads received from the client.
  562. AggregatedPayloadSize int32 `protobuf:"varint,1,opt,name=aggregated_payload_size,json=aggregatedPayloadSize,proto3" json:"aggregated_payload_size,omitempty"`
  563. }
  564. func (x *StreamingInputCallResponse) Reset() {
  565. *x = StreamingInputCallResponse{}
  566. if protoimpl.UnsafeEnabled {
  567. mi := &file_grpc_testing_messages_proto_msgTypes[6]
  568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  569. ms.StoreMessageInfo(mi)
  570. }
  571. }
  572. func (x *StreamingInputCallResponse) String() string {
  573. return protoimpl.X.MessageStringOf(x)
  574. }
  575. func (*StreamingInputCallResponse) ProtoMessage() {}
  576. func (x *StreamingInputCallResponse) ProtoReflect() protoreflect.Message {
  577. mi := &file_grpc_testing_messages_proto_msgTypes[6]
  578. if protoimpl.UnsafeEnabled && x != nil {
  579. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  580. if ms.LoadMessageInfo() == nil {
  581. ms.StoreMessageInfo(mi)
  582. }
  583. return ms
  584. }
  585. return mi.MessageOf(x)
  586. }
  587. // Deprecated: Use StreamingInputCallResponse.ProtoReflect.Descriptor instead.
  588. func (*StreamingInputCallResponse) Descriptor() ([]byte, []int) {
  589. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{6}
  590. }
  591. func (x *StreamingInputCallResponse) GetAggregatedPayloadSize() int32 {
  592. if x != nil {
  593. return x.AggregatedPayloadSize
  594. }
  595. return 0
  596. }
  597. // Configuration for a particular response.
  598. type ResponseParameters struct {
  599. state protoimpl.MessageState
  600. sizeCache protoimpl.SizeCache
  601. unknownFields protoimpl.UnknownFields
  602. // Desired payload sizes in responses from the server.
  603. Size int32 `protobuf:"varint,1,opt,name=size,proto3" json:"size,omitempty"`
  604. // Desired interval between consecutive responses in the response stream in
  605. // microseconds.
  606. IntervalUs int32 `protobuf:"varint,2,opt,name=interval_us,json=intervalUs,proto3" json:"interval_us,omitempty"`
  607. // Whether to request the server to compress the response. This field is
  608. // "nullable" in order to interoperate seamlessly with clients not able to
  609. // implement the full compression tests by introspecting the call to verify
  610. // the response's compression status.
  611. Compressed *BoolValue `protobuf:"bytes,3,opt,name=compressed,proto3" json:"compressed,omitempty"`
  612. }
  613. func (x *ResponseParameters) Reset() {
  614. *x = ResponseParameters{}
  615. if protoimpl.UnsafeEnabled {
  616. mi := &file_grpc_testing_messages_proto_msgTypes[7]
  617. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  618. ms.StoreMessageInfo(mi)
  619. }
  620. }
  621. func (x *ResponseParameters) String() string {
  622. return protoimpl.X.MessageStringOf(x)
  623. }
  624. func (*ResponseParameters) ProtoMessage() {}
  625. func (x *ResponseParameters) ProtoReflect() protoreflect.Message {
  626. mi := &file_grpc_testing_messages_proto_msgTypes[7]
  627. if protoimpl.UnsafeEnabled && x != nil {
  628. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  629. if ms.LoadMessageInfo() == nil {
  630. ms.StoreMessageInfo(mi)
  631. }
  632. return ms
  633. }
  634. return mi.MessageOf(x)
  635. }
  636. // Deprecated: Use ResponseParameters.ProtoReflect.Descriptor instead.
  637. func (*ResponseParameters) Descriptor() ([]byte, []int) {
  638. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{7}
  639. }
  640. func (x *ResponseParameters) GetSize() int32 {
  641. if x != nil {
  642. return x.Size
  643. }
  644. return 0
  645. }
  646. func (x *ResponseParameters) GetIntervalUs() int32 {
  647. if x != nil {
  648. return x.IntervalUs
  649. }
  650. return 0
  651. }
  652. func (x *ResponseParameters) GetCompressed() *BoolValue {
  653. if x != nil {
  654. return x.Compressed
  655. }
  656. return nil
  657. }
  658. // Server-streaming request.
  659. type StreamingOutputCallRequest struct {
  660. state protoimpl.MessageState
  661. sizeCache protoimpl.SizeCache
  662. unknownFields protoimpl.UnknownFields
  663. // Desired payload type in the response from the server.
  664. // If response_type is RANDOM, the payload from each response in the stream
  665. // might be of different types. This is to simulate a mixed type of payload
  666. // stream.
  667. ResponseType PayloadType `protobuf:"varint,1,opt,name=response_type,json=responseType,proto3,enum=grpc.testing.PayloadType" json:"response_type,omitempty"`
  668. // Configuration for each expected response message.
  669. ResponseParameters []*ResponseParameters `protobuf:"bytes,2,rep,name=response_parameters,json=responseParameters,proto3" json:"response_parameters,omitempty"`
  670. // Optional input payload sent along with the request.
  671. Payload *Payload `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
  672. // Whether server should return a given status
  673. ResponseStatus *EchoStatus `protobuf:"bytes,7,opt,name=response_status,json=responseStatus,proto3" json:"response_status,omitempty"`
  674. // If set the server should update this metrics report data at the OOB server.
  675. OrcaOobReport *TestOrcaReport `protobuf:"bytes,8,opt,name=orca_oob_report,json=orcaOobReport,proto3" json:"orca_oob_report,omitempty"`
  676. }
  677. func (x *StreamingOutputCallRequest) Reset() {
  678. *x = StreamingOutputCallRequest{}
  679. if protoimpl.UnsafeEnabled {
  680. mi := &file_grpc_testing_messages_proto_msgTypes[8]
  681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  682. ms.StoreMessageInfo(mi)
  683. }
  684. }
  685. func (x *StreamingOutputCallRequest) String() string {
  686. return protoimpl.X.MessageStringOf(x)
  687. }
  688. func (*StreamingOutputCallRequest) ProtoMessage() {}
  689. func (x *StreamingOutputCallRequest) ProtoReflect() protoreflect.Message {
  690. mi := &file_grpc_testing_messages_proto_msgTypes[8]
  691. if protoimpl.UnsafeEnabled && x != nil {
  692. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  693. if ms.LoadMessageInfo() == nil {
  694. ms.StoreMessageInfo(mi)
  695. }
  696. return ms
  697. }
  698. return mi.MessageOf(x)
  699. }
  700. // Deprecated: Use StreamingOutputCallRequest.ProtoReflect.Descriptor instead.
  701. func (*StreamingOutputCallRequest) Descriptor() ([]byte, []int) {
  702. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{8}
  703. }
  704. func (x *StreamingOutputCallRequest) GetResponseType() PayloadType {
  705. if x != nil {
  706. return x.ResponseType
  707. }
  708. return PayloadType_COMPRESSABLE
  709. }
  710. func (x *StreamingOutputCallRequest) GetResponseParameters() []*ResponseParameters {
  711. if x != nil {
  712. return x.ResponseParameters
  713. }
  714. return nil
  715. }
  716. func (x *StreamingOutputCallRequest) GetPayload() *Payload {
  717. if x != nil {
  718. return x.Payload
  719. }
  720. return nil
  721. }
  722. func (x *StreamingOutputCallRequest) GetResponseStatus() *EchoStatus {
  723. if x != nil {
  724. return x.ResponseStatus
  725. }
  726. return nil
  727. }
  728. func (x *StreamingOutputCallRequest) GetOrcaOobReport() *TestOrcaReport {
  729. if x != nil {
  730. return x.OrcaOobReport
  731. }
  732. return nil
  733. }
  734. // Server-streaming response, as configured by the request and parameters.
  735. type StreamingOutputCallResponse struct {
  736. state protoimpl.MessageState
  737. sizeCache protoimpl.SizeCache
  738. unknownFields protoimpl.UnknownFields
  739. // Payload to increase response size.
  740. Payload *Payload `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
  741. }
  742. func (x *StreamingOutputCallResponse) Reset() {
  743. *x = StreamingOutputCallResponse{}
  744. if protoimpl.UnsafeEnabled {
  745. mi := &file_grpc_testing_messages_proto_msgTypes[9]
  746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  747. ms.StoreMessageInfo(mi)
  748. }
  749. }
  750. func (x *StreamingOutputCallResponse) String() string {
  751. return protoimpl.X.MessageStringOf(x)
  752. }
  753. func (*StreamingOutputCallResponse) ProtoMessage() {}
  754. func (x *StreamingOutputCallResponse) ProtoReflect() protoreflect.Message {
  755. mi := &file_grpc_testing_messages_proto_msgTypes[9]
  756. if protoimpl.UnsafeEnabled && x != nil {
  757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  758. if ms.LoadMessageInfo() == nil {
  759. ms.StoreMessageInfo(mi)
  760. }
  761. return ms
  762. }
  763. return mi.MessageOf(x)
  764. }
  765. // Deprecated: Use StreamingOutputCallResponse.ProtoReflect.Descriptor instead.
  766. func (*StreamingOutputCallResponse) Descriptor() ([]byte, []int) {
  767. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{9}
  768. }
  769. func (x *StreamingOutputCallResponse) GetPayload() *Payload {
  770. if x != nil {
  771. return x.Payload
  772. }
  773. return nil
  774. }
  775. // For reconnect interop test only.
  776. // Client tells server what reconnection parameters it used.
  777. type ReconnectParams struct {
  778. state protoimpl.MessageState
  779. sizeCache protoimpl.SizeCache
  780. unknownFields protoimpl.UnknownFields
  781. MaxReconnectBackoffMs int32 `protobuf:"varint,1,opt,name=max_reconnect_backoff_ms,json=maxReconnectBackoffMs,proto3" json:"max_reconnect_backoff_ms,omitempty"`
  782. }
  783. func (x *ReconnectParams) Reset() {
  784. *x = ReconnectParams{}
  785. if protoimpl.UnsafeEnabled {
  786. mi := &file_grpc_testing_messages_proto_msgTypes[10]
  787. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  788. ms.StoreMessageInfo(mi)
  789. }
  790. }
  791. func (x *ReconnectParams) String() string {
  792. return protoimpl.X.MessageStringOf(x)
  793. }
  794. func (*ReconnectParams) ProtoMessage() {}
  795. func (x *ReconnectParams) ProtoReflect() protoreflect.Message {
  796. mi := &file_grpc_testing_messages_proto_msgTypes[10]
  797. if protoimpl.UnsafeEnabled && x != nil {
  798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  799. if ms.LoadMessageInfo() == nil {
  800. ms.StoreMessageInfo(mi)
  801. }
  802. return ms
  803. }
  804. return mi.MessageOf(x)
  805. }
  806. // Deprecated: Use ReconnectParams.ProtoReflect.Descriptor instead.
  807. func (*ReconnectParams) Descriptor() ([]byte, []int) {
  808. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{10}
  809. }
  810. func (x *ReconnectParams) GetMaxReconnectBackoffMs() int32 {
  811. if x != nil {
  812. return x.MaxReconnectBackoffMs
  813. }
  814. return 0
  815. }
  816. // For reconnect interop test only.
  817. // Server tells client whether its reconnects are following the spec and the
  818. // reconnect backoffs it saw.
  819. type ReconnectInfo struct {
  820. state protoimpl.MessageState
  821. sizeCache protoimpl.SizeCache
  822. unknownFields protoimpl.UnknownFields
  823. Passed bool `protobuf:"varint,1,opt,name=passed,proto3" json:"passed,omitempty"`
  824. BackoffMs []int32 `protobuf:"varint,2,rep,packed,name=backoff_ms,json=backoffMs,proto3" json:"backoff_ms,omitempty"`
  825. }
  826. func (x *ReconnectInfo) Reset() {
  827. *x = ReconnectInfo{}
  828. if protoimpl.UnsafeEnabled {
  829. mi := &file_grpc_testing_messages_proto_msgTypes[11]
  830. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  831. ms.StoreMessageInfo(mi)
  832. }
  833. }
  834. func (x *ReconnectInfo) String() string {
  835. return protoimpl.X.MessageStringOf(x)
  836. }
  837. func (*ReconnectInfo) ProtoMessage() {}
  838. func (x *ReconnectInfo) ProtoReflect() protoreflect.Message {
  839. mi := &file_grpc_testing_messages_proto_msgTypes[11]
  840. if protoimpl.UnsafeEnabled && x != nil {
  841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  842. if ms.LoadMessageInfo() == nil {
  843. ms.StoreMessageInfo(mi)
  844. }
  845. return ms
  846. }
  847. return mi.MessageOf(x)
  848. }
  849. // Deprecated: Use ReconnectInfo.ProtoReflect.Descriptor instead.
  850. func (*ReconnectInfo) Descriptor() ([]byte, []int) {
  851. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{11}
  852. }
  853. func (x *ReconnectInfo) GetPassed() bool {
  854. if x != nil {
  855. return x.Passed
  856. }
  857. return false
  858. }
  859. func (x *ReconnectInfo) GetBackoffMs() []int32 {
  860. if x != nil {
  861. return x.BackoffMs
  862. }
  863. return nil
  864. }
  865. type LoadBalancerStatsRequest struct {
  866. state protoimpl.MessageState
  867. sizeCache protoimpl.SizeCache
  868. unknownFields protoimpl.UnknownFields
  869. // Request stats for the next num_rpcs sent by client.
  870. NumRpcs int32 `protobuf:"varint,1,opt,name=num_rpcs,json=numRpcs,proto3" json:"num_rpcs,omitempty"`
  871. // If num_rpcs have not completed within timeout_sec, return partial results.
  872. TimeoutSec int32 `protobuf:"varint,2,opt,name=timeout_sec,json=timeoutSec,proto3" json:"timeout_sec,omitempty"`
  873. }
  874. func (x *LoadBalancerStatsRequest) Reset() {
  875. *x = LoadBalancerStatsRequest{}
  876. if protoimpl.UnsafeEnabled {
  877. mi := &file_grpc_testing_messages_proto_msgTypes[12]
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. ms.StoreMessageInfo(mi)
  880. }
  881. }
  882. func (x *LoadBalancerStatsRequest) String() string {
  883. return protoimpl.X.MessageStringOf(x)
  884. }
  885. func (*LoadBalancerStatsRequest) ProtoMessage() {}
  886. func (x *LoadBalancerStatsRequest) ProtoReflect() protoreflect.Message {
  887. mi := &file_grpc_testing_messages_proto_msgTypes[12]
  888. if protoimpl.UnsafeEnabled && x != nil {
  889. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  890. if ms.LoadMessageInfo() == nil {
  891. ms.StoreMessageInfo(mi)
  892. }
  893. return ms
  894. }
  895. return mi.MessageOf(x)
  896. }
  897. // Deprecated: Use LoadBalancerStatsRequest.ProtoReflect.Descriptor instead.
  898. func (*LoadBalancerStatsRequest) Descriptor() ([]byte, []int) {
  899. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{12}
  900. }
  901. func (x *LoadBalancerStatsRequest) GetNumRpcs() int32 {
  902. if x != nil {
  903. return x.NumRpcs
  904. }
  905. return 0
  906. }
  907. func (x *LoadBalancerStatsRequest) GetTimeoutSec() int32 {
  908. if x != nil {
  909. return x.TimeoutSec
  910. }
  911. return 0
  912. }
  913. type LoadBalancerStatsResponse struct {
  914. state protoimpl.MessageState
  915. sizeCache protoimpl.SizeCache
  916. unknownFields protoimpl.UnknownFields
  917. // The number of completed RPCs for each peer.
  918. RpcsByPeer map[string]int32 `protobuf:"bytes,1,rep,name=rpcs_by_peer,json=rpcsByPeer,proto3" json:"rpcs_by_peer,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  919. // The number of RPCs that failed to record a remote peer.
  920. NumFailures int32 `protobuf:"varint,2,opt,name=num_failures,json=numFailures,proto3" json:"num_failures,omitempty"`
  921. RpcsByMethod map[string]*LoadBalancerStatsResponse_RpcsByPeer `protobuf:"bytes,3,rep,name=rpcs_by_method,json=rpcsByMethod,proto3" json:"rpcs_by_method,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  922. }
  923. func (x *LoadBalancerStatsResponse) Reset() {
  924. *x = LoadBalancerStatsResponse{}
  925. if protoimpl.UnsafeEnabled {
  926. mi := &file_grpc_testing_messages_proto_msgTypes[13]
  927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  928. ms.StoreMessageInfo(mi)
  929. }
  930. }
  931. func (x *LoadBalancerStatsResponse) String() string {
  932. return protoimpl.X.MessageStringOf(x)
  933. }
  934. func (*LoadBalancerStatsResponse) ProtoMessage() {}
  935. func (x *LoadBalancerStatsResponse) ProtoReflect() protoreflect.Message {
  936. mi := &file_grpc_testing_messages_proto_msgTypes[13]
  937. if protoimpl.UnsafeEnabled && x != nil {
  938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  939. if ms.LoadMessageInfo() == nil {
  940. ms.StoreMessageInfo(mi)
  941. }
  942. return ms
  943. }
  944. return mi.MessageOf(x)
  945. }
  946. // Deprecated: Use LoadBalancerStatsResponse.ProtoReflect.Descriptor instead.
  947. func (*LoadBalancerStatsResponse) Descriptor() ([]byte, []int) {
  948. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{13}
  949. }
  950. func (x *LoadBalancerStatsResponse) GetRpcsByPeer() map[string]int32 {
  951. if x != nil {
  952. return x.RpcsByPeer
  953. }
  954. return nil
  955. }
  956. func (x *LoadBalancerStatsResponse) GetNumFailures() int32 {
  957. if x != nil {
  958. return x.NumFailures
  959. }
  960. return 0
  961. }
  962. func (x *LoadBalancerStatsResponse) GetRpcsByMethod() map[string]*LoadBalancerStatsResponse_RpcsByPeer {
  963. if x != nil {
  964. return x.RpcsByMethod
  965. }
  966. return nil
  967. }
  968. // Request for retrieving a test client's accumulated stats.
  969. type LoadBalancerAccumulatedStatsRequest struct {
  970. state protoimpl.MessageState
  971. sizeCache protoimpl.SizeCache
  972. unknownFields protoimpl.UnknownFields
  973. }
  974. func (x *LoadBalancerAccumulatedStatsRequest) Reset() {
  975. *x = LoadBalancerAccumulatedStatsRequest{}
  976. if protoimpl.UnsafeEnabled {
  977. mi := &file_grpc_testing_messages_proto_msgTypes[14]
  978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  979. ms.StoreMessageInfo(mi)
  980. }
  981. }
  982. func (x *LoadBalancerAccumulatedStatsRequest) String() string {
  983. return protoimpl.X.MessageStringOf(x)
  984. }
  985. func (*LoadBalancerAccumulatedStatsRequest) ProtoMessage() {}
  986. func (x *LoadBalancerAccumulatedStatsRequest) ProtoReflect() protoreflect.Message {
  987. mi := &file_grpc_testing_messages_proto_msgTypes[14]
  988. if protoimpl.UnsafeEnabled && x != nil {
  989. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  990. if ms.LoadMessageInfo() == nil {
  991. ms.StoreMessageInfo(mi)
  992. }
  993. return ms
  994. }
  995. return mi.MessageOf(x)
  996. }
  997. // Deprecated: Use LoadBalancerAccumulatedStatsRequest.ProtoReflect.Descriptor instead.
  998. func (*LoadBalancerAccumulatedStatsRequest) Descriptor() ([]byte, []int) {
  999. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{14}
  1000. }
  1001. // Accumulated stats for RPCs sent by a test client.
  1002. type LoadBalancerAccumulatedStatsResponse struct {
  1003. state protoimpl.MessageState
  1004. sizeCache protoimpl.SizeCache
  1005. unknownFields protoimpl.UnknownFields
  1006. // The total number of RPCs have ever issued for each type.
  1007. // Deprecated: use stats_per_method.rpcs_started instead.
  1008. //
  1009. // Deprecated: Marked as deprecated in grpc/testing/messages.proto.
  1010. NumRpcsStartedByMethod map[string]int32 `protobuf:"bytes,1,rep,name=num_rpcs_started_by_method,json=numRpcsStartedByMethod,proto3" json:"num_rpcs_started_by_method,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  1011. // The total number of RPCs have ever completed successfully for each type.
  1012. // Deprecated: use stats_per_method.result instead.
  1013. //
  1014. // Deprecated: Marked as deprecated in grpc/testing/messages.proto.
  1015. NumRpcsSucceededByMethod map[string]int32 `protobuf:"bytes,2,rep,name=num_rpcs_succeeded_by_method,json=numRpcsSucceededByMethod,proto3" json:"num_rpcs_succeeded_by_method,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  1016. // The total number of RPCs have ever failed for each type.
  1017. // Deprecated: use stats_per_method.result instead.
  1018. //
  1019. // Deprecated: Marked as deprecated in grpc/testing/messages.proto.
  1020. NumRpcsFailedByMethod map[string]int32 `protobuf:"bytes,3,rep,name=num_rpcs_failed_by_method,json=numRpcsFailedByMethod,proto3" json:"num_rpcs_failed_by_method,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  1021. // Per-method RPC statistics. The key is the RpcType in string form; e.g.
  1022. // 'EMPTY_CALL' or 'UNARY_CALL'
  1023. StatsPerMethod map[string]*LoadBalancerAccumulatedStatsResponse_MethodStats `protobuf:"bytes,4,rep,name=stats_per_method,json=statsPerMethod,proto3" json:"stats_per_method,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1024. }
  1025. func (x *LoadBalancerAccumulatedStatsResponse) Reset() {
  1026. *x = LoadBalancerAccumulatedStatsResponse{}
  1027. if protoimpl.UnsafeEnabled {
  1028. mi := &file_grpc_testing_messages_proto_msgTypes[15]
  1029. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1030. ms.StoreMessageInfo(mi)
  1031. }
  1032. }
  1033. func (x *LoadBalancerAccumulatedStatsResponse) String() string {
  1034. return protoimpl.X.MessageStringOf(x)
  1035. }
  1036. func (*LoadBalancerAccumulatedStatsResponse) ProtoMessage() {}
  1037. func (x *LoadBalancerAccumulatedStatsResponse) ProtoReflect() protoreflect.Message {
  1038. mi := &file_grpc_testing_messages_proto_msgTypes[15]
  1039. if protoimpl.UnsafeEnabled && x != nil {
  1040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1041. if ms.LoadMessageInfo() == nil {
  1042. ms.StoreMessageInfo(mi)
  1043. }
  1044. return ms
  1045. }
  1046. return mi.MessageOf(x)
  1047. }
  1048. // Deprecated: Use LoadBalancerAccumulatedStatsResponse.ProtoReflect.Descriptor instead.
  1049. func (*LoadBalancerAccumulatedStatsResponse) Descriptor() ([]byte, []int) {
  1050. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{15}
  1051. }
  1052. // Deprecated: Marked as deprecated in grpc/testing/messages.proto.
  1053. func (x *LoadBalancerAccumulatedStatsResponse) GetNumRpcsStartedByMethod() map[string]int32 {
  1054. if x != nil {
  1055. return x.NumRpcsStartedByMethod
  1056. }
  1057. return nil
  1058. }
  1059. // Deprecated: Marked as deprecated in grpc/testing/messages.proto.
  1060. func (x *LoadBalancerAccumulatedStatsResponse) GetNumRpcsSucceededByMethod() map[string]int32 {
  1061. if x != nil {
  1062. return x.NumRpcsSucceededByMethod
  1063. }
  1064. return nil
  1065. }
  1066. // Deprecated: Marked as deprecated in grpc/testing/messages.proto.
  1067. func (x *LoadBalancerAccumulatedStatsResponse) GetNumRpcsFailedByMethod() map[string]int32 {
  1068. if x != nil {
  1069. return x.NumRpcsFailedByMethod
  1070. }
  1071. return nil
  1072. }
  1073. func (x *LoadBalancerAccumulatedStatsResponse) GetStatsPerMethod() map[string]*LoadBalancerAccumulatedStatsResponse_MethodStats {
  1074. if x != nil {
  1075. return x.StatsPerMethod
  1076. }
  1077. return nil
  1078. }
  1079. // Configurations for a test client.
  1080. type ClientConfigureRequest struct {
  1081. state protoimpl.MessageState
  1082. sizeCache protoimpl.SizeCache
  1083. unknownFields protoimpl.UnknownFields
  1084. // The types of RPCs the client sends.
  1085. Types []ClientConfigureRequest_RpcType `protobuf:"varint,1,rep,packed,name=types,proto3,enum=grpc.testing.ClientConfigureRequest_RpcType" json:"types,omitempty"`
  1086. // The collection of custom metadata to be attached to RPCs sent by the client.
  1087. Metadata []*ClientConfigureRequest_Metadata `protobuf:"bytes,2,rep,name=metadata,proto3" json:"metadata,omitempty"`
  1088. // The deadline to use, in seconds, for all RPCs. If unset or zero, the
  1089. // client will use the default from the command-line.
  1090. TimeoutSec int32 `protobuf:"varint,3,opt,name=timeout_sec,json=timeoutSec,proto3" json:"timeout_sec,omitempty"`
  1091. }
  1092. func (x *ClientConfigureRequest) Reset() {
  1093. *x = ClientConfigureRequest{}
  1094. if protoimpl.UnsafeEnabled {
  1095. mi := &file_grpc_testing_messages_proto_msgTypes[16]
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. ms.StoreMessageInfo(mi)
  1098. }
  1099. }
  1100. func (x *ClientConfigureRequest) String() string {
  1101. return protoimpl.X.MessageStringOf(x)
  1102. }
  1103. func (*ClientConfigureRequest) ProtoMessage() {}
  1104. func (x *ClientConfigureRequest) ProtoReflect() protoreflect.Message {
  1105. mi := &file_grpc_testing_messages_proto_msgTypes[16]
  1106. if protoimpl.UnsafeEnabled && x != nil {
  1107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1108. if ms.LoadMessageInfo() == nil {
  1109. ms.StoreMessageInfo(mi)
  1110. }
  1111. return ms
  1112. }
  1113. return mi.MessageOf(x)
  1114. }
  1115. // Deprecated: Use ClientConfigureRequest.ProtoReflect.Descriptor instead.
  1116. func (*ClientConfigureRequest) Descriptor() ([]byte, []int) {
  1117. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{16}
  1118. }
  1119. func (x *ClientConfigureRequest) GetTypes() []ClientConfigureRequest_RpcType {
  1120. if x != nil {
  1121. return x.Types
  1122. }
  1123. return nil
  1124. }
  1125. func (x *ClientConfigureRequest) GetMetadata() []*ClientConfigureRequest_Metadata {
  1126. if x != nil {
  1127. return x.Metadata
  1128. }
  1129. return nil
  1130. }
  1131. func (x *ClientConfigureRequest) GetTimeoutSec() int32 {
  1132. if x != nil {
  1133. return x.TimeoutSec
  1134. }
  1135. return 0
  1136. }
  1137. // Response for updating a test client's configuration.
  1138. type ClientConfigureResponse struct {
  1139. state protoimpl.MessageState
  1140. sizeCache protoimpl.SizeCache
  1141. unknownFields protoimpl.UnknownFields
  1142. }
  1143. func (x *ClientConfigureResponse) Reset() {
  1144. *x = ClientConfigureResponse{}
  1145. if protoimpl.UnsafeEnabled {
  1146. mi := &file_grpc_testing_messages_proto_msgTypes[17]
  1147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1148. ms.StoreMessageInfo(mi)
  1149. }
  1150. }
  1151. func (x *ClientConfigureResponse) String() string {
  1152. return protoimpl.X.MessageStringOf(x)
  1153. }
  1154. func (*ClientConfigureResponse) ProtoMessage() {}
  1155. func (x *ClientConfigureResponse) ProtoReflect() protoreflect.Message {
  1156. mi := &file_grpc_testing_messages_proto_msgTypes[17]
  1157. if protoimpl.UnsafeEnabled && x != nil {
  1158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1159. if ms.LoadMessageInfo() == nil {
  1160. ms.StoreMessageInfo(mi)
  1161. }
  1162. return ms
  1163. }
  1164. return mi.MessageOf(x)
  1165. }
  1166. // Deprecated: Use ClientConfigureResponse.ProtoReflect.Descriptor instead.
  1167. func (*ClientConfigureResponse) Descriptor() ([]byte, []int) {
  1168. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{17}
  1169. }
  1170. // Metrics data the server will update and send to the client. It mirrors orca load report
  1171. // https://github.com/cncf/xds/blob/eded343319d09f30032952beda9840bbd3dcf7ac/xds/data/orca/v3/orca_load_report.proto#L15,
  1172. // but avoids orca dependency. Used by both per-query and out-of-band reporting tests.
  1173. type TestOrcaReport struct {
  1174. state protoimpl.MessageState
  1175. sizeCache protoimpl.SizeCache
  1176. unknownFields protoimpl.UnknownFields
  1177. CpuUtilization float64 `protobuf:"fixed64,1,opt,name=cpu_utilization,json=cpuUtilization,proto3" json:"cpu_utilization,omitempty"`
  1178. MemoryUtilization float64 `protobuf:"fixed64,2,opt,name=memory_utilization,json=memoryUtilization,proto3" json:"memory_utilization,omitempty"`
  1179. RequestCost map[string]float64 `protobuf:"bytes,3,rep,name=request_cost,json=requestCost,proto3" json:"request_cost,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"`
  1180. Utilization map[string]float64 `protobuf:"bytes,4,rep,name=utilization,proto3" json:"utilization,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"`
  1181. }
  1182. func (x *TestOrcaReport) Reset() {
  1183. *x = TestOrcaReport{}
  1184. if protoimpl.UnsafeEnabled {
  1185. mi := &file_grpc_testing_messages_proto_msgTypes[18]
  1186. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1187. ms.StoreMessageInfo(mi)
  1188. }
  1189. }
  1190. func (x *TestOrcaReport) String() string {
  1191. return protoimpl.X.MessageStringOf(x)
  1192. }
  1193. func (*TestOrcaReport) ProtoMessage() {}
  1194. func (x *TestOrcaReport) ProtoReflect() protoreflect.Message {
  1195. mi := &file_grpc_testing_messages_proto_msgTypes[18]
  1196. if protoimpl.UnsafeEnabled && x != nil {
  1197. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1198. if ms.LoadMessageInfo() == nil {
  1199. ms.StoreMessageInfo(mi)
  1200. }
  1201. return ms
  1202. }
  1203. return mi.MessageOf(x)
  1204. }
  1205. // Deprecated: Use TestOrcaReport.ProtoReflect.Descriptor instead.
  1206. func (*TestOrcaReport) Descriptor() ([]byte, []int) {
  1207. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{18}
  1208. }
  1209. func (x *TestOrcaReport) GetCpuUtilization() float64 {
  1210. if x != nil {
  1211. return x.CpuUtilization
  1212. }
  1213. return 0
  1214. }
  1215. func (x *TestOrcaReport) GetMemoryUtilization() float64 {
  1216. if x != nil {
  1217. return x.MemoryUtilization
  1218. }
  1219. return 0
  1220. }
  1221. func (x *TestOrcaReport) GetRequestCost() map[string]float64 {
  1222. if x != nil {
  1223. return x.RequestCost
  1224. }
  1225. return nil
  1226. }
  1227. func (x *TestOrcaReport) GetUtilization() map[string]float64 {
  1228. if x != nil {
  1229. return x.Utilization
  1230. }
  1231. return nil
  1232. }
  1233. type LoadBalancerStatsResponse_RpcsByPeer struct {
  1234. state protoimpl.MessageState
  1235. sizeCache protoimpl.SizeCache
  1236. unknownFields protoimpl.UnknownFields
  1237. // The number of completed RPCs for each peer.
  1238. RpcsByPeer map[string]int32 `protobuf:"bytes,1,rep,name=rpcs_by_peer,json=rpcsByPeer,proto3" json:"rpcs_by_peer,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  1239. }
  1240. func (x *LoadBalancerStatsResponse_RpcsByPeer) Reset() {
  1241. *x = LoadBalancerStatsResponse_RpcsByPeer{}
  1242. if protoimpl.UnsafeEnabled {
  1243. mi := &file_grpc_testing_messages_proto_msgTypes[19]
  1244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1245. ms.StoreMessageInfo(mi)
  1246. }
  1247. }
  1248. func (x *LoadBalancerStatsResponse_RpcsByPeer) String() string {
  1249. return protoimpl.X.MessageStringOf(x)
  1250. }
  1251. func (*LoadBalancerStatsResponse_RpcsByPeer) ProtoMessage() {}
  1252. func (x *LoadBalancerStatsResponse_RpcsByPeer) ProtoReflect() protoreflect.Message {
  1253. mi := &file_grpc_testing_messages_proto_msgTypes[19]
  1254. if protoimpl.UnsafeEnabled && x != nil {
  1255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1256. if ms.LoadMessageInfo() == nil {
  1257. ms.StoreMessageInfo(mi)
  1258. }
  1259. return ms
  1260. }
  1261. return mi.MessageOf(x)
  1262. }
  1263. // Deprecated: Use LoadBalancerStatsResponse_RpcsByPeer.ProtoReflect.Descriptor instead.
  1264. func (*LoadBalancerStatsResponse_RpcsByPeer) Descriptor() ([]byte, []int) {
  1265. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{13, 0}
  1266. }
  1267. func (x *LoadBalancerStatsResponse_RpcsByPeer) GetRpcsByPeer() map[string]int32 {
  1268. if x != nil {
  1269. return x.RpcsByPeer
  1270. }
  1271. return nil
  1272. }
  1273. type LoadBalancerAccumulatedStatsResponse_MethodStats struct {
  1274. state protoimpl.MessageState
  1275. sizeCache protoimpl.SizeCache
  1276. unknownFields protoimpl.UnknownFields
  1277. // The number of RPCs that were started for this method.
  1278. RpcsStarted int32 `protobuf:"varint,1,opt,name=rpcs_started,json=rpcsStarted,proto3" json:"rpcs_started,omitempty"`
  1279. // The number of RPCs that completed with each status for this method. The
  1280. // key is the integral value of a google.rpc.Code; the value is the count.
  1281. Result map[int32]int32 `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  1282. }
  1283. func (x *LoadBalancerAccumulatedStatsResponse_MethodStats) Reset() {
  1284. *x = LoadBalancerAccumulatedStatsResponse_MethodStats{}
  1285. if protoimpl.UnsafeEnabled {
  1286. mi := &file_grpc_testing_messages_proto_msgTypes[26]
  1287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1288. ms.StoreMessageInfo(mi)
  1289. }
  1290. }
  1291. func (x *LoadBalancerAccumulatedStatsResponse_MethodStats) String() string {
  1292. return protoimpl.X.MessageStringOf(x)
  1293. }
  1294. func (*LoadBalancerAccumulatedStatsResponse_MethodStats) ProtoMessage() {}
  1295. func (x *LoadBalancerAccumulatedStatsResponse_MethodStats) ProtoReflect() protoreflect.Message {
  1296. mi := &file_grpc_testing_messages_proto_msgTypes[26]
  1297. if protoimpl.UnsafeEnabled && x != nil {
  1298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1299. if ms.LoadMessageInfo() == nil {
  1300. ms.StoreMessageInfo(mi)
  1301. }
  1302. return ms
  1303. }
  1304. return mi.MessageOf(x)
  1305. }
  1306. // Deprecated: Use LoadBalancerAccumulatedStatsResponse_MethodStats.ProtoReflect.Descriptor instead.
  1307. func (*LoadBalancerAccumulatedStatsResponse_MethodStats) Descriptor() ([]byte, []int) {
  1308. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{15, 3}
  1309. }
  1310. func (x *LoadBalancerAccumulatedStatsResponse_MethodStats) GetRpcsStarted() int32 {
  1311. if x != nil {
  1312. return x.RpcsStarted
  1313. }
  1314. return 0
  1315. }
  1316. func (x *LoadBalancerAccumulatedStatsResponse_MethodStats) GetResult() map[int32]int32 {
  1317. if x != nil {
  1318. return x.Result
  1319. }
  1320. return nil
  1321. }
  1322. // Metadata to be attached for the given type of RPCs.
  1323. type ClientConfigureRequest_Metadata struct {
  1324. state protoimpl.MessageState
  1325. sizeCache protoimpl.SizeCache
  1326. unknownFields protoimpl.UnknownFields
  1327. Type ClientConfigureRequest_RpcType `protobuf:"varint,1,opt,name=type,proto3,enum=grpc.testing.ClientConfigureRequest_RpcType" json:"type,omitempty"`
  1328. Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
  1329. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  1330. }
  1331. func (x *ClientConfigureRequest_Metadata) Reset() {
  1332. *x = ClientConfigureRequest_Metadata{}
  1333. if protoimpl.UnsafeEnabled {
  1334. mi := &file_grpc_testing_messages_proto_msgTypes[29]
  1335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1336. ms.StoreMessageInfo(mi)
  1337. }
  1338. }
  1339. func (x *ClientConfigureRequest_Metadata) String() string {
  1340. return protoimpl.X.MessageStringOf(x)
  1341. }
  1342. func (*ClientConfigureRequest_Metadata) ProtoMessage() {}
  1343. func (x *ClientConfigureRequest_Metadata) ProtoReflect() protoreflect.Message {
  1344. mi := &file_grpc_testing_messages_proto_msgTypes[29]
  1345. if protoimpl.UnsafeEnabled && x != nil {
  1346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1347. if ms.LoadMessageInfo() == nil {
  1348. ms.StoreMessageInfo(mi)
  1349. }
  1350. return ms
  1351. }
  1352. return mi.MessageOf(x)
  1353. }
  1354. // Deprecated: Use ClientConfigureRequest_Metadata.ProtoReflect.Descriptor instead.
  1355. func (*ClientConfigureRequest_Metadata) Descriptor() ([]byte, []int) {
  1356. return file_grpc_testing_messages_proto_rawDescGZIP(), []int{16, 0}
  1357. }
  1358. func (x *ClientConfigureRequest_Metadata) GetType() ClientConfigureRequest_RpcType {
  1359. if x != nil {
  1360. return x.Type
  1361. }
  1362. return ClientConfigureRequest_EMPTY_CALL
  1363. }
  1364. func (x *ClientConfigureRequest_Metadata) GetKey() string {
  1365. if x != nil {
  1366. return x.Key
  1367. }
  1368. return ""
  1369. }
  1370. func (x *ClientConfigureRequest_Metadata) GetValue() string {
  1371. if x != nil {
  1372. return x.Value
  1373. }
  1374. return ""
  1375. }
  1376. var File_grpc_testing_messages_proto protoreflect.FileDescriptor
  1377. var file_grpc_testing_messages_proto_rawDesc = []byte{
  1378. 0x0a, 0x1b, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x6d,
  1379. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c, 0x67,
  1380. 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x21, 0x0a, 0x09, 0x42,
  1381. 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1382. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x4c,
  1383. 0x0a, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x74, 0x79, 0x70,
  1384. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x19, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74,
  1385. 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x54, 0x79,
  1386. 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79,
  1387. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x3a, 0x0a, 0x0a,
  1388. 0x45, 0x63, 0x68, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f,
  1389. 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18,
  1390. 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1391. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xf3, 0x04, 0x0a, 0x0d, 0x53, 0x69, 0x6d,
  1392. 0x70, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3e, 0x0a, 0x0d, 0x72, 0x65,
  1393. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  1394. 0x0e, 0x32, 0x19, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67,
  1395. 0x2e, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x72, 0x65,
  1396. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65,
  1397. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1398. 0x05, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
  1399. 0x2f, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  1400. 0x32, 0x15, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e,
  1401. 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64,
  1402. 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x69, 0x6c, 0x6c, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
  1403. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x66, 0x69, 0x6c, 0x6c, 0x55, 0x73, 0x65,
  1404. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c, 0x6c, 0x5f, 0x6f, 0x61,
  1405. 0x75, 0x74, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
  1406. 0x0e, 0x66, 0x69, 0x6c, 0x6c, 0x4f, 0x61, 0x75, 0x74, 0x68, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12,
  1407. 0x48, 0x0a, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6d, 0x70,
  1408. 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67,
  1409. 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x42, 0x6f, 0x6f, 0x6c,
  1410. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x12, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43,
  1411. 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x41, 0x0a, 0x0f, 0x72, 0x65, 0x73,
  1412. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01,
  1413. 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e,
  1414. 0x67, 0x2e, 0x45, 0x63, 0x68, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x72, 0x65,
  1415. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x11,
  1416. 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65,
  1417. 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74,
  1418. 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1419. 0x52, 0x10, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
  1420. 0x65, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x66, 0x69, 0x6c, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  1421. 0x72, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x66, 0x69, 0x6c, 0x6c,
  1422. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x12, 0x33, 0x0a, 0x16, 0x66, 0x69, 0x6c, 0x6c,
  1423. 0x5f, 0x67, 0x72, 0x70, 0x63, 0x6c, 0x62, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x79,
  1424. 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x66, 0x69, 0x6c, 0x6c, 0x47, 0x72,
  1425. 0x70, 0x63, 0x6c, 0x62, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4f, 0x0a,
  1426. 0x15, 0x6f, 0x72, 0x63, 0x61, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f,
  1427. 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67,
  1428. 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x54, 0x65, 0x73, 0x74,
  1429. 0x4f, 0x72, 0x63, 0x61, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x12, 0x6f, 0x72, 0x63, 0x61,
  1430. 0x50, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x82,
  1431. 0x02, 0x0a, 0x0e, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  1432. 0x65, 0x12, 0x2f, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20, 0x01,
  1433. 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e,
  1434. 0x67, 0x2e, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f,
  1435. 0x61, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  1436. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f,
  1437. 0x0a, 0x0b, 0x6f, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x03, 0x20,
  1438. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6f, 0x61, 0x75, 0x74, 0x68, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12,
  1439. 0x1b, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01,
  1440. 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x12, 0x49, 0x0a, 0x11,
  1441. 0x67, 0x72, 0x70, 0x63, 0x6c, 0x62, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x79, 0x70,
  1442. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1d, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74,
  1443. 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x47, 0x72, 0x70, 0x63, 0x6c, 0x62, 0x52, 0x6f, 0x75,
  1444. 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x67, 0x72, 0x70, 0x63, 0x6c, 0x62, 0x52, 0x6f,
  1445. 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x6f, 0x73, 0x74, 0x6e,
  1446. 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x68, 0x6f, 0x73, 0x74, 0x6e,
  1447. 0x61, 0x6d, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x19, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x69, 0x6e,
  1448. 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1449. 0x74, 0x12, 0x2f, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20, 0x01,
  1450. 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e,
  1451. 0x67, 0x2e, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f,
  1452. 0x61, 0x64, 0x12, 0x44, 0x0a, 0x11, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6d,
  1453. 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e,
  1454. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x42, 0x6f, 0x6f,
  1455. 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x43, 0x6f,
  1456. 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x54, 0x0a, 0x1a, 0x53, 0x74, 0x72, 0x65,
  1457. 0x61, 0x6d, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65,
  1458. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36, 0x0a, 0x17, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67,
  1459. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x73, 0x69, 0x7a,
  1460. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61,
  1461. 0x74, 0x65, 0x64, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x82,
  1462. 0x01, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1463. 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20,
  1464. 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x74,
  1465. 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
  1466. 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x55, 0x73, 0x12, 0x37, 0x0a, 0x0a, 0x63, 0x6f,
  1467. 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17,
  1468. 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x42, 0x6f,
  1469. 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0a, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73,
  1470. 0x73, 0x65, 0x64, 0x22, 0xe9, 0x02, 0x0a, 0x1a, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x69, 0x6e,
  1471. 0x67, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
  1472. 0x73, 0x74, 0x12, 0x3e, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74,
  1473. 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x19, 0x2e, 0x67, 0x72, 0x70, 0x63,
  1474. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64,
  1475. 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79,
  1476. 0x70, 0x65, 0x12, 0x51, 0x0a, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x70,
  1477. 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1478. 0x20, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x52,
  1479. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72,
  1480. 0x73, 0x52, 0x12, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1481. 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x2f, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64,
  1482. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65,
  1483. 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x07, 0x70,
  1484. 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x41, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  1485. 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1486. 0x18, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x45,
  1487. 0x63, 0x68, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f,
  1488. 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x0f, 0x6f, 0x72, 0x63,
  1489. 0x61, 0x5f, 0x6f, 0x6f, 0x62, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x08, 0x20, 0x01,
  1490. 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e,
  1491. 0x67, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x4f, 0x72, 0x63, 0x61, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
  1492. 0x52, 0x0d, 0x6f, 0x72, 0x63, 0x61, 0x4f, 0x6f, 0x62, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x22,
  1493. 0x4e, 0x0a, 0x1b, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x69, 0x6e, 0x67, 0x4f, 0x75, 0x74, 0x70,
  1494. 0x75, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f,
  1495. 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1496. 0x15, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50,
  1497. 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22,
  1498. 0x4a, 0x0a, 0x0f, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x50, 0x61, 0x72, 0x61,
  1499. 0x6d, 0x73, 0x12, 0x37, 0x0a, 0x18, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x6e,
  1500. 0x65, 0x63, 0x74, 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x6f, 0x66, 0x66, 0x5f, 0x6d, 0x73, 0x18, 0x01,
  1501. 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
  1502. 0x63, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x6f, 0x66, 0x66, 0x4d, 0x73, 0x22, 0x46, 0x0a, 0x0d, 0x52,
  1503. 0x65, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
  1504. 0x70, 0x61, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x70, 0x61,
  1505. 0x73, 0x73, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x6f, 0x66, 0x66, 0x5f,
  1506. 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x6f, 0x66,
  1507. 0x66, 0x4d, 0x73, 0x22, 0x56, 0x0a, 0x18, 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1508. 0x63, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1509. 0x19, 0x0a, 0x08, 0x6e, 0x75, 0x6d, 0x5f, 0x72, 0x70, 0x63, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  1510. 0x05, 0x52, 0x07, 0x6e, 0x75, 0x6d, 0x52, 0x70, 0x63, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x69,
  1511. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  1512. 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x22, 0xe2, 0x04, 0x0a, 0x19,
  1513. 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
  1514. 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x0c, 0x72, 0x70, 0x63,
  1515. 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1516. 0x37, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c,
  1517. 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x73,
  1518. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x70, 0x63, 0x73, 0x42, 0x79, 0x50,
  1519. 0x65, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x72, 0x70, 0x63, 0x73, 0x42, 0x79,
  1520. 0x50, 0x65, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x61, 0x69, 0x6c,
  1521. 0x75, 0x72, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x6e, 0x75, 0x6d, 0x46,
  1522. 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x0e, 0x72, 0x70, 0x63, 0x73, 0x5f,
  1523. 0x62, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1524. 0x39, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c,
  1525. 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x73,
  1526. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x70, 0x63, 0x73, 0x42, 0x79, 0x4d,
  1527. 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x72, 0x70, 0x63, 0x73,
  1528. 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x1a, 0xb1, 0x01, 0x0a, 0x0a, 0x52, 0x70, 0x63,
  1529. 0x73, 0x42, 0x79, 0x50, 0x65, 0x65, 0x72, 0x12, 0x64, 0x0a, 0x0c, 0x72, 0x70, 0x63, 0x73, 0x5f,
  1530. 0x62, 0x79, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e,
  1531. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c, 0x6f, 0x61,
  1532. 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65,
  1533. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x70, 0x63, 0x73, 0x42, 0x79, 0x50, 0x65, 0x65,
  1534. 0x72, 0x2e, 0x52, 0x70, 0x63, 0x73, 0x42, 0x79, 0x50, 0x65, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72,
  1535. 0x79, 0x52, 0x0a, 0x72, 0x70, 0x63, 0x73, 0x42, 0x79, 0x50, 0x65, 0x65, 0x72, 0x1a, 0x3d, 0x0a,
  1536. 0x0f, 0x52, 0x70, 0x63, 0x73, 0x42, 0x79, 0x50, 0x65, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1537. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  1538. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1539. 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3d, 0x0a, 0x0f,
  1540. 0x52, 0x70, 0x63, 0x73, 0x42, 0x79, 0x50, 0x65, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  1541. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  1542. 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  1543. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x73, 0x0a, 0x11, 0x52,
  1544. 0x70, 0x63, 0x73, 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1545. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  1546. 0x65, 0x79, 0x12, 0x48, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1547. 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67,
  1548. 0x2e, 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x74, 0x61,
  1549. 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x70, 0x63, 0x73, 0x42,
  1550. 0x79, 0x50, 0x65, 0x65, 0x72, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  1551. 0x22, 0x25, 0x0a, 0x23, 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72,
  1552. 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73,
  1553. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x86, 0x09, 0x0a, 0x24, 0x4c, 0x6f, 0x61, 0x64,
  1554. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61,
  1555. 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  1556. 0x12, 0x8e, 0x01, 0x0a, 0x1a, 0x6e, 0x75, 0x6d, 0x5f, 0x72, 0x70, 0x63, 0x73, 0x5f, 0x73, 0x74,
  1557. 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18,
  1558. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73,
  1559. 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  1560. 0x72, 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74,
  1561. 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4e, 0x75, 0x6d, 0x52, 0x70, 0x63,
  1562. 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  1563. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x02, 0x18, 0x01, 0x52, 0x16, 0x6e, 0x75, 0x6d, 0x52, 0x70,
  1564. 0x63, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
  1565. 0x64, 0x12, 0x94, 0x01, 0x0a, 0x1c, 0x6e, 0x75, 0x6d, 0x5f, 0x72, 0x70, 0x63, 0x73, 0x5f, 0x73,
  1566. 0x75, 0x63, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68,
  1567. 0x6f, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x50, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e,
  1568. 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61,
  1569. 0x6e, 0x63, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x53,
  1570. 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4e, 0x75, 0x6d,
  1571. 0x52, 0x70, 0x63, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x42, 0x79, 0x4d,
  1572. 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x02, 0x18, 0x01, 0x52, 0x18,
  1573. 0x6e, 0x75, 0x6d, 0x52, 0x70, 0x63, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64,
  1574. 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x8b, 0x01, 0x0a, 0x19, 0x6e, 0x75, 0x6d,
  1575. 0x5f, 0x72, 0x70, 0x63, 0x73, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f,
  1576. 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4d, 0x2e, 0x67,
  1577. 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c, 0x6f, 0x61, 0x64,
  1578. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61,
  1579. 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  1580. 0x2e, 0x4e, 0x75, 0x6d, 0x52, 0x70, 0x63, 0x73, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x42, 0x79,
  1581. 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x02, 0x18, 0x01, 0x52,
  1582. 0x15, 0x6e, 0x75, 0x6d, 0x52, 0x70, 0x63, 0x73, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x42, 0x79,
  1583. 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x70, 0x0a, 0x10, 0x73, 0x74, 0x61, 0x74, 0x73, 0x5f,
  1584. 0x70, 0x65, 0x72, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  1585. 0x32, 0x46, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e,
  1586. 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75,
  1587. 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70,
  1588. 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x65, 0x72, 0x4d, 0x65, 0x74,
  1589. 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x74, 0x73, 0x50,
  1590. 0x65, 0x72, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x1a, 0x49, 0x0a, 0x1b, 0x4e, 0x75, 0x6d, 0x52,
  1591. 0x70, 0x63, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68,
  1592. 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  1593. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  1594. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  1595. 0x02, 0x38, 0x01, 0x1a, 0x4b, 0x0a, 0x1d, 0x4e, 0x75, 0x6d, 0x52, 0x70, 0x63, 0x73, 0x53, 0x75,
  1596. 0x63, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45,
  1597. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  1598. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  1599. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  1600. 0x1a, 0x48, 0x0a, 0x1a, 0x4e, 0x75, 0x6d, 0x52, 0x70, 0x63, 0x73, 0x46, 0x61, 0x69, 0x6c, 0x65,
  1601. 0x64, 0x42, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  1602. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  1603. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  1604. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0xcf, 0x01, 0x0a, 0x0b, 0x4d,
  1605. 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x70,
  1606. 0x63, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  1607. 0x52, 0x0b, 0x72, 0x70, 0x63, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x12, 0x62, 0x0a,
  1608. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4a, 0x2e,
  1609. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c, 0x6f, 0x61,
  1610. 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c,
  1611. 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  1612. 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e, 0x52, 0x65,
  1613. 0x73, 0x75, 0x6c, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
  1614. 0x74, 0x1a, 0x39, 0x0a, 0x0b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1615. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b,
  1616. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1617. 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x81, 0x01, 0x0a,
  1618. 0x13, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45,
  1619. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  1620. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x54, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  1621. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73,
  1622. 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x4c, 0x6f, 0x61, 0x64, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  1623. 0x72, 0x41, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74,
  1624. 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  1625. 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  1626. 0x22, 0xe9, 0x02, 0x0a, 0x16, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  1627. 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x42, 0x0a, 0x05, 0x74,
  1628. 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x67, 0x72, 0x70,
  1629. 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  1630. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1631. 0x2e, 0x52, 0x70, 0x63, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x12,
  1632. 0x49, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28,
  1633. 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67,
  1634. 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65,
  1635. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
  1636. 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x69,
  1637. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
  1638. 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x1a, 0x74, 0x0a, 0x08, 0x4d,
  1639. 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x40, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  1640. 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73,
  1641. 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  1642. 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x70, 0x63, 0x54,
  1643. 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  1644. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  1645. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1646. 0x65, 0x22, 0x29, 0x0a, 0x07, 0x52, 0x70, 0x63, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x0a,
  1647. 0x45, 0x4d, 0x50, 0x54, 0x59, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a,
  1648. 0x55, 0x4e, 0x41, 0x52, 0x59, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x10, 0x01, 0x22, 0x19, 0x0a, 0x17,
  1649. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52,
  1650. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x8b, 0x03, 0x0a, 0x0e, 0x54, 0x65, 0x73, 0x74,
  1651. 0x4f, 0x72, 0x63, 0x61, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x63, 0x70,
  1652. 0x75, 0x5f, 0x75, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20,
  1653. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x70, 0x75, 0x55, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  1654. 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x12, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x75, 0x74,
  1655. 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
  1656. 0x11, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x55, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  1657. 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x63, 0x6f,
  1658. 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e,
  1659. 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x4f, 0x72, 0x63, 0x61,
  1660. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f,
  1661. 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1662. 0x43, 0x6f, 0x73, 0x74, 0x12, 0x4f, 0x0a, 0x0b, 0x75, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  1663. 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x72, 0x70, 0x63,
  1664. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x4f, 0x72, 0x63,
  1665. 0x61, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x55, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  1666. 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x75, 0x74, 0x69, 0x6c, 0x69, 0x7a,
  1667. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x3e, 0x0a, 0x10, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1668. 0x43, 0x6f, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  1669. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  1670. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1671. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a, 0x10, 0x55, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61,
  1672. 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  1673. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  1674. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1675. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x1f, 0x0a, 0x0b, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64,
  1676. 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4f, 0x4d, 0x50, 0x52, 0x45, 0x53, 0x53,
  1677. 0x41, 0x42, 0x4c, 0x45, 0x10, 0x00, 0x2a, 0x6f, 0x0a, 0x0f, 0x47, 0x72, 0x70, 0x63, 0x6c, 0x62,
  1678. 0x52, 0x6f, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x19, 0x47, 0x52, 0x50,
  1679. 0x43, 0x4c, 0x42, 0x5f, 0x52, 0x4f, 0x55, 0x54, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55,
  1680. 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x47, 0x52, 0x50, 0x43,
  1681. 0x4c, 0x42, 0x5f, 0x52, 0x4f, 0x55, 0x54, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x46, 0x41,
  1682. 0x4c, 0x4c, 0x42, 0x41, 0x43, 0x4b, 0x10, 0x01, 0x12, 0x1d, 0x0a, 0x19, 0x47, 0x52, 0x50, 0x43,
  1683. 0x4c, 0x42, 0x5f, 0x52, 0x4f, 0x55, 0x54, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x42, 0x41,
  1684. 0x43, 0x4b, 0x45, 0x4e, 0x44, 0x10, 0x02, 0x42, 0x1d, 0x0a, 0x1b, 0x69, 0x6f, 0x2e, 0x67, 0x72,
  1685. 0x70, 0x63, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x67,
  1686. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1687. }
  1688. var (
  1689. file_grpc_testing_messages_proto_rawDescOnce sync.Once
  1690. file_grpc_testing_messages_proto_rawDescData = file_grpc_testing_messages_proto_rawDesc
  1691. )
  1692. func file_grpc_testing_messages_proto_rawDescGZIP() []byte {
  1693. file_grpc_testing_messages_proto_rawDescOnce.Do(func() {
  1694. file_grpc_testing_messages_proto_rawDescData = protoimpl.X.CompressGZIP(file_grpc_testing_messages_proto_rawDescData)
  1695. })
  1696. return file_grpc_testing_messages_proto_rawDescData
  1697. }
  1698. var file_grpc_testing_messages_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
  1699. var file_grpc_testing_messages_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
  1700. var file_grpc_testing_messages_proto_goTypes = []interface{}{
  1701. (PayloadType)(0), // 0: grpc.testing.PayloadType
  1702. (GrpclbRouteType)(0), // 1: grpc.testing.GrpclbRouteType
  1703. (ClientConfigureRequest_RpcType)(0), // 2: grpc.testing.ClientConfigureRequest.RpcType
  1704. (*BoolValue)(nil), // 3: grpc.testing.BoolValue
  1705. (*Payload)(nil), // 4: grpc.testing.Payload
  1706. (*EchoStatus)(nil), // 5: grpc.testing.EchoStatus
  1707. (*SimpleRequest)(nil), // 6: grpc.testing.SimpleRequest
  1708. (*SimpleResponse)(nil), // 7: grpc.testing.SimpleResponse
  1709. (*StreamingInputCallRequest)(nil), // 8: grpc.testing.StreamingInputCallRequest
  1710. (*StreamingInputCallResponse)(nil), // 9: grpc.testing.StreamingInputCallResponse
  1711. (*ResponseParameters)(nil), // 10: grpc.testing.ResponseParameters
  1712. (*StreamingOutputCallRequest)(nil), // 11: grpc.testing.StreamingOutputCallRequest
  1713. (*StreamingOutputCallResponse)(nil), // 12: grpc.testing.StreamingOutputCallResponse
  1714. (*ReconnectParams)(nil), // 13: grpc.testing.ReconnectParams
  1715. (*ReconnectInfo)(nil), // 14: grpc.testing.ReconnectInfo
  1716. (*LoadBalancerStatsRequest)(nil), // 15: grpc.testing.LoadBalancerStatsRequest
  1717. (*LoadBalancerStatsResponse)(nil), // 16: grpc.testing.LoadBalancerStatsResponse
  1718. (*LoadBalancerAccumulatedStatsRequest)(nil), // 17: grpc.testing.LoadBalancerAccumulatedStatsRequest
  1719. (*LoadBalancerAccumulatedStatsResponse)(nil), // 18: grpc.testing.LoadBalancerAccumulatedStatsResponse
  1720. (*ClientConfigureRequest)(nil), // 19: grpc.testing.ClientConfigureRequest
  1721. (*ClientConfigureResponse)(nil), // 20: grpc.testing.ClientConfigureResponse
  1722. (*TestOrcaReport)(nil), // 21: grpc.testing.TestOrcaReport
  1723. (*LoadBalancerStatsResponse_RpcsByPeer)(nil), // 22: grpc.testing.LoadBalancerStatsResponse.RpcsByPeer
  1724. nil, // 23: grpc.testing.LoadBalancerStatsResponse.RpcsByPeerEntry
  1725. nil, // 24: grpc.testing.LoadBalancerStatsResponse.RpcsByMethodEntry
  1726. nil, // 25: grpc.testing.LoadBalancerStatsResponse.RpcsByPeer.RpcsByPeerEntry
  1727. nil, // 26: grpc.testing.LoadBalancerAccumulatedStatsResponse.NumRpcsStartedByMethodEntry
  1728. nil, // 27: grpc.testing.LoadBalancerAccumulatedStatsResponse.NumRpcsSucceededByMethodEntry
  1729. nil, // 28: grpc.testing.LoadBalancerAccumulatedStatsResponse.NumRpcsFailedByMethodEntry
  1730. (*LoadBalancerAccumulatedStatsResponse_MethodStats)(nil), // 29: grpc.testing.LoadBalancerAccumulatedStatsResponse.MethodStats
  1731. nil, // 30: grpc.testing.LoadBalancerAccumulatedStatsResponse.StatsPerMethodEntry
  1732. nil, // 31: grpc.testing.LoadBalancerAccumulatedStatsResponse.MethodStats.ResultEntry
  1733. (*ClientConfigureRequest_Metadata)(nil), // 32: grpc.testing.ClientConfigureRequest.Metadata
  1734. nil, // 33: grpc.testing.TestOrcaReport.RequestCostEntry
  1735. nil, // 34: grpc.testing.TestOrcaReport.UtilizationEntry
  1736. }
  1737. var file_grpc_testing_messages_proto_depIdxs = []int32{
  1738. 0, // 0: grpc.testing.Payload.type:type_name -> grpc.testing.PayloadType
  1739. 0, // 1: grpc.testing.SimpleRequest.response_type:type_name -> grpc.testing.PayloadType
  1740. 4, // 2: grpc.testing.SimpleRequest.payload:type_name -> grpc.testing.Payload
  1741. 3, // 3: grpc.testing.SimpleRequest.response_compressed:type_name -> grpc.testing.BoolValue
  1742. 5, // 4: grpc.testing.SimpleRequest.response_status:type_name -> grpc.testing.EchoStatus
  1743. 3, // 5: grpc.testing.SimpleRequest.expect_compressed:type_name -> grpc.testing.BoolValue
  1744. 21, // 6: grpc.testing.SimpleRequest.orca_per_query_report:type_name -> grpc.testing.TestOrcaReport
  1745. 4, // 7: grpc.testing.SimpleResponse.payload:type_name -> grpc.testing.Payload
  1746. 1, // 8: grpc.testing.SimpleResponse.grpclb_route_type:type_name -> grpc.testing.GrpclbRouteType
  1747. 4, // 9: grpc.testing.StreamingInputCallRequest.payload:type_name -> grpc.testing.Payload
  1748. 3, // 10: grpc.testing.StreamingInputCallRequest.expect_compressed:type_name -> grpc.testing.BoolValue
  1749. 3, // 11: grpc.testing.ResponseParameters.compressed:type_name -> grpc.testing.BoolValue
  1750. 0, // 12: grpc.testing.StreamingOutputCallRequest.response_type:type_name -> grpc.testing.PayloadType
  1751. 10, // 13: grpc.testing.StreamingOutputCallRequest.response_parameters:type_name -> grpc.testing.ResponseParameters
  1752. 4, // 14: grpc.testing.StreamingOutputCallRequest.payload:type_name -> grpc.testing.Payload
  1753. 5, // 15: grpc.testing.StreamingOutputCallRequest.response_status:type_name -> grpc.testing.EchoStatus
  1754. 21, // 16: grpc.testing.StreamingOutputCallRequest.orca_oob_report:type_name -> grpc.testing.TestOrcaReport
  1755. 4, // 17: grpc.testing.StreamingOutputCallResponse.payload:type_name -> grpc.testing.Payload
  1756. 23, // 18: grpc.testing.LoadBalancerStatsResponse.rpcs_by_peer:type_name -> grpc.testing.LoadBalancerStatsResponse.RpcsByPeerEntry
  1757. 24, // 19: grpc.testing.LoadBalancerStatsResponse.rpcs_by_method:type_name -> grpc.testing.LoadBalancerStatsResponse.RpcsByMethodEntry
  1758. 26, // 20: grpc.testing.LoadBalancerAccumulatedStatsResponse.num_rpcs_started_by_method:type_name -> grpc.testing.LoadBalancerAccumulatedStatsResponse.NumRpcsStartedByMethodEntry
  1759. 27, // 21: grpc.testing.LoadBalancerAccumulatedStatsResponse.num_rpcs_succeeded_by_method:type_name -> grpc.testing.LoadBalancerAccumulatedStatsResponse.NumRpcsSucceededByMethodEntry
  1760. 28, // 22: grpc.testing.LoadBalancerAccumulatedStatsResponse.num_rpcs_failed_by_method:type_name -> grpc.testing.LoadBalancerAccumulatedStatsResponse.NumRpcsFailedByMethodEntry
  1761. 30, // 23: grpc.testing.LoadBalancerAccumulatedStatsResponse.stats_per_method:type_name -> grpc.testing.LoadBalancerAccumulatedStatsResponse.StatsPerMethodEntry
  1762. 2, // 24: grpc.testing.ClientConfigureRequest.types:type_name -> grpc.testing.ClientConfigureRequest.RpcType
  1763. 32, // 25: grpc.testing.ClientConfigureRequest.metadata:type_name -> grpc.testing.ClientConfigureRequest.Metadata
  1764. 33, // 26: grpc.testing.TestOrcaReport.request_cost:type_name -> grpc.testing.TestOrcaReport.RequestCostEntry
  1765. 34, // 27: grpc.testing.TestOrcaReport.utilization:type_name -> grpc.testing.TestOrcaReport.UtilizationEntry
  1766. 25, // 28: grpc.testing.LoadBalancerStatsResponse.RpcsByPeer.rpcs_by_peer:type_name -> grpc.testing.LoadBalancerStatsResponse.RpcsByPeer.RpcsByPeerEntry
  1767. 22, // 29: grpc.testing.LoadBalancerStatsResponse.RpcsByMethodEntry.value:type_name -> grpc.testing.LoadBalancerStatsResponse.RpcsByPeer
  1768. 31, // 30: grpc.testing.LoadBalancerAccumulatedStatsResponse.MethodStats.result:type_name -> grpc.testing.LoadBalancerAccumulatedStatsResponse.MethodStats.ResultEntry
  1769. 29, // 31: grpc.testing.LoadBalancerAccumulatedStatsResponse.StatsPerMethodEntry.value:type_name -> grpc.testing.LoadBalancerAccumulatedStatsResponse.MethodStats
  1770. 2, // 32: grpc.testing.ClientConfigureRequest.Metadata.type:type_name -> grpc.testing.ClientConfigureRequest.RpcType
  1771. 33, // [33:33] is the sub-list for method output_type
  1772. 33, // [33:33] is the sub-list for method input_type
  1773. 33, // [33:33] is the sub-list for extension type_name
  1774. 33, // [33:33] is the sub-list for extension extendee
  1775. 0, // [0:33] is the sub-list for field type_name
  1776. }
  1777. func init() { file_grpc_testing_messages_proto_init() }
  1778. func file_grpc_testing_messages_proto_init() {
  1779. if File_grpc_testing_messages_proto != nil {
  1780. return
  1781. }
  1782. if !protoimpl.UnsafeEnabled {
  1783. file_grpc_testing_messages_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1784. switch v := v.(*BoolValue); i {
  1785. case 0:
  1786. return &v.state
  1787. case 1:
  1788. return &v.sizeCache
  1789. case 2:
  1790. return &v.unknownFields
  1791. default:
  1792. return nil
  1793. }
  1794. }
  1795. file_grpc_testing_messages_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1796. switch v := v.(*Payload); i {
  1797. case 0:
  1798. return &v.state
  1799. case 1:
  1800. return &v.sizeCache
  1801. case 2:
  1802. return &v.unknownFields
  1803. default:
  1804. return nil
  1805. }
  1806. }
  1807. file_grpc_testing_messages_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1808. switch v := v.(*EchoStatus); i {
  1809. case 0:
  1810. return &v.state
  1811. case 1:
  1812. return &v.sizeCache
  1813. case 2:
  1814. return &v.unknownFields
  1815. default:
  1816. return nil
  1817. }
  1818. }
  1819. file_grpc_testing_messages_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1820. switch v := v.(*SimpleRequest); i {
  1821. case 0:
  1822. return &v.state
  1823. case 1:
  1824. return &v.sizeCache
  1825. case 2:
  1826. return &v.unknownFields
  1827. default:
  1828. return nil
  1829. }
  1830. }
  1831. file_grpc_testing_messages_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1832. switch v := v.(*SimpleResponse); i {
  1833. case 0:
  1834. return &v.state
  1835. case 1:
  1836. return &v.sizeCache
  1837. case 2:
  1838. return &v.unknownFields
  1839. default:
  1840. return nil
  1841. }
  1842. }
  1843. file_grpc_testing_messages_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1844. switch v := v.(*StreamingInputCallRequest); i {
  1845. case 0:
  1846. return &v.state
  1847. case 1:
  1848. return &v.sizeCache
  1849. case 2:
  1850. return &v.unknownFields
  1851. default:
  1852. return nil
  1853. }
  1854. }
  1855. file_grpc_testing_messages_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1856. switch v := v.(*StreamingInputCallResponse); i {
  1857. case 0:
  1858. return &v.state
  1859. case 1:
  1860. return &v.sizeCache
  1861. case 2:
  1862. return &v.unknownFields
  1863. default:
  1864. return nil
  1865. }
  1866. }
  1867. file_grpc_testing_messages_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1868. switch v := v.(*ResponseParameters); i {
  1869. case 0:
  1870. return &v.state
  1871. case 1:
  1872. return &v.sizeCache
  1873. case 2:
  1874. return &v.unknownFields
  1875. default:
  1876. return nil
  1877. }
  1878. }
  1879. file_grpc_testing_messages_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1880. switch v := v.(*StreamingOutputCallRequest); i {
  1881. case 0:
  1882. return &v.state
  1883. case 1:
  1884. return &v.sizeCache
  1885. case 2:
  1886. return &v.unknownFields
  1887. default:
  1888. return nil
  1889. }
  1890. }
  1891. file_grpc_testing_messages_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1892. switch v := v.(*StreamingOutputCallResponse); i {
  1893. case 0:
  1894. return &v.state
  1895. case 1:
  1896. return &v.sizeCache
  1897. case 2:
  1898. return &v.unknownFields
  1899. default:
  1900. return nil
  1901. }
  1902. }
  1903. file_grpc_testing_messages_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1904. switch v := v.(*ReconnectParams); i {
  1905. case 0:
  1906. return &v.state
  1907. case 1:
  1908. return &v.sizeCache
  1909. case 2:
  1910. return &v.unknownFields
  1911. default:
  1912. return nil
  1913. }
  1914. }
  1915. file_grpc_testing_messages_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1916. switch v := v.(*ReconnectInfo); i {
  1917. case 0:
  1918. return &v.state
  1919. case 1:
  1920. return &v.sizeCache
  1921. case 2:
  1922. return &v.unknownFields
  1923. default:
  1924. return nil
  1925. }
  1926. }
  1927. file_grpc_testing_messages_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1928. switch v := v.(*LoadBalancerStatsRequest); i {
  1929. case 0:
  1930. return &v.state
  1931. case 1:
  1932. return &v.sizeCache
  1933. case 2:
  1934. return &v.unknownFields
  1935. default:
  1936. return nil
  1937. }
  1938. }
  1939. file_grpc_testing_messages_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1940. switch v := v.(*LoadBalancerStatsResponse); i {
  1941. case 0:
  1942. return &v.state
  1943. case 1:
  1944. return &v.sizeCache
  1945. case 2:
  1946. return &v.unknownFields
  1947. default:
  1948. return nil
  1949. }
  1950. }
  1951. file_grpc_testing_messages_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1952. switch v := v.(*LoadBalancerAccumulatedStatsRequest); i {
  1953. case 0:
  1954. return &v.state
  1955. case 1:
  1956. return &v.sizeCache
  1957. case 2:
  1958. return &v.unknownFields
  1959. default:
  1960. return nil
  1961. }
  1962. }
  1963. file_grpc_testing_messages_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1964. switch v := v.(*LoadBalancerAccumulatedStatsResponse); i {
  1965. case 0:
  1966. return &v.state
  1967. case 1:
  1968. return &v.sizeCache
  1969. case 2:
  1970. return &v.unknownFields
  1971. default:
  1972. return nil
  1973. }
  1974. }
  1975. file_grpc_testing_messages_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1976. switch v := v.(*ClientConfigureRequest); i {
  1977. case 0:
  1978. return &v.state
  1979. case 1:
  1980. return &v.sizeCache
  1981. case 2:
  1982. return &v.unknownFields
  1983. default:
  1984. return nil
  1985. }
  1986. }
  1987. file_grpc_testing_messages_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1988. switch v := v.(*ClientConfigureResponse); i {
  1989. case 0:
  1990. return &v.state
  1991. case 1:
  1992. return &v.sizeCache
  1993. case 2:
  1994. return &v.unknownFields
  1995. default:
  1996. return nil
  1997. }
  1998. }
  1999. file_grpc_testing_messages_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2000. switch v := v.(*TestOrcaReport); i {
  2001. case 0:
  2002. return &v.state
  2003. case 1:
  2004. return &v.sizeCache
  2005. case 2:
  2006. return &v.unknownFields
  2007. default:
  2008. return nil
  2009. }
  2010. }
  2011. file_grpc_testing_messages_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2012. switch v := v.(*LoadBalancerStatsResponse_RpcsByPeer); i {
  2013. case 0:
  2014. return &v.state
  2015. case 1:
  2016. return &v.sizeCache
  2017. case 2:
  2018. return &v.unknownFields
  2019. default:
  2020. return nil
  2021. }
  2022. }
  2023. file_grpc_testing_messages_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2024. switch v := v.(*LoadBalancerAccumulatedStatsResponse_MethodStats); i {
  2025. case 0:
  2026. return &v.state
  2027. case 1:
  2028. return &v.sizeCache
  2029. case 2:
  2030. return &v.unknownFields
  2031. default:
  2032. return nil
  2033. }
  2034. }
  2035. file_grpc_testing_messages_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2036. switch v := v.(*ClientConfigureRequest_Metadata); i {
  2037. case 0:
  2038. return &v.state
  2039. case 1:
  2040. return &v.sizeCache
  2041. case 2:
  2042. return &v.unknownFields
  2043. default:
  2044. return nil
  2045. }
  2046. }
  2047. }
  2048. type x struct{}
  2049. out := protoimpl.TypeBuilder{
  2050. File: protoimpl.DescBuilder{
  2051. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2052. RawDescriptor: file_grpc_testing_messages_proto_rawDesc,
  2053. NumEnums: 3,
  2054. NumMessages: 32,
  2055. NumExtensions: 0,
  2056. NumServices: 0,
  2057. },
  2058. GoTypes: file_grpc_testing_messages_proto_goTypes,
  2059. DependencyIndexes: file_grpc_testing_messages_proto_depIdxs,
  2060. EnumInfos: file_grpc_testing_messages_proto_enumTypes,
  2061. MessageInfos: file_grpc_testing_messages_proto_msgTypes,
  2062. }.Build()
  2063. File_grpc_testing_messages_proto = out.File
  2064. file_grpc_testing_messages_proto_rawDesc = nil
  2065. file_grpc_testing_messages_proto_goTypes = nil
  2066. file_grpc_testing_messages_proto_depIdxs = nil
  2067. }