client.pb.go 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. // Copyright 2023 Google LLC
  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. // Code generated by protoc-gen-go. DO NOT EDIT.
  15. // versions:
  16. // protoc-gen-go v1.26.0
  17. // protoc v4.24.4
  18. // source: google/api/client.proto
  19. package annotations
  20. import (
  21. reflect "reflect"
  22. sync "sync"
  23. api "google.golang.org/genproto/googleapis/api"
  24. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  25. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  26. descriptorpb "google.golang.org/protobuf/types/descriptorpb"
  27. durationpb "google.golang.org/protobuf/types/known/durationpb"
  28. )
  29. const (
  30. // Verify that this generated code is sufficiently up-to-date.
  31. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  32. // Verify that runtime/protoimpl is sufficiently up-to-date.
  33. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  34. )
  35. // The organization for which the client libraries are being published.
  36. // Affects the url where generated docs are published, etc.
  37. type ClientLibraryOrganization int32
  38. const (
  39. // Not useful.
  40. ClientLibraryOrganization_CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED ClientLibraryOrganization = 0
  41. // Google Cloud Platform Org.
  42. ClientLibraryOrganization_CLOUD ClientLibraryOrganization = 1
  43. // Ads (Advertising) Org.
  44. ClientLibraryOrganization_ADS ClientLibraryOrganization = 2
  45. // Photos Org.
  46. ClientLibraryOrganization_PHOTOS ClientLibraryOrganization = 3
  47. // Street View Org.
  48. ClientLibraryOrganization_STREET_VIEW ClientLibraryOrganization = 4
  49. // Shopping Org.
  50. ClientLibraryOrganization_SHOPPING ClientLibraryOrganization = 5
  51. // Geo Org.
  52. ClientLibraryOrganization_GEO ClientLibraryOrganization = 6
  53. // Generative AI - https://developers.generativeai.google
  54. ClientLibraryOrganization_GENERATIVE_AI ClientLibraryOrganization = 7
  55. )
  56. // Enum value maps for ClientLibraryOrganization.
  57. var (
  58. ClientLibraryOrganization_name = map[int32]string{
  59. 0: "CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED",
  60. 1: "CLOUD",
  61. 2: "ADS",
  62. 3: "PHOTOS",
  63. 4: "STREET_VIEW",
  64. 5: "SHOPPING",
  65. 6: "GEO",
  66. 7: "GENERATIVE_AI",
  67. }
  68. ClientLibraryOrganization_value = map[string]int32{
  69. "CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED": 0,
  70. "CLOUD": 1,
  71. "ADS": 2,
  72. "PHOTOS": 3,
  73. "STREET_VIEW": 4,
  74. "SHOPPING": 5,
  75. "GEO": 6,
  76. "GENERATIVE_AI": 7,
  77. }
  78. )
  79. func (x ClientLibraryOrganization) Enum() *ClientLibraryOrganization {
  80. p := new(ClientLibraryOrganization)
  81. *p = x
  82. return p
  83. }
  84. func (x ClientLibraryOrganization) String() string {
  85. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  86. }
  87. func (ClientLibraryOrganization) Descriptor() protoreflect.EnumDescriptor {
  88. return file_google_api_client_proto_enumTypes[0].Descriptor()
  89. }
  90. func (ClientLibraryOrganization) Type() protoreflect.EnumType {
  91. return &file_google_api_client_proto_enumTypes[0]
  92. }
  93. func (x ClientLibraryOrganization) Number() protoreflect.EnumNumber {
  94. return protoreflect.EnumNumber(x)
  95. }
  96. // Deprecated: Use ClientLibraryOrganization.Descriptor instead.
  97. func (ClientLibraryOrganization) EnumDescriptor() ([]byte, []int) {
  98. return file_google_api_client_proto_rawDescGZIP(), []int{0}
  99. }
  100. // To where should client libraries be published?
  101. type ClientLibraryDestination int32
  102. const (
  103. // Client libraries will neither be generated nor published to package
  104. // managers.
  105. ClientLibraryDestination_CLIENT_LIBRARY_DESTINATION_UNSPECIFIED ClientLibraryDestination = 0
  106. // Generate the client library in a repo under github.com/googleapis,
  107. // but don't publish it to package managers.
  108. ClientLibraryDestination_GITHUB ClientLibraryDestination = 10
  109. // Publish the library to package managers like nuget.org and npmjs.com.
  110. ClientLibraryDestination_PACKAGE_MANAGER ClientLibraryDestination = 20
  111. )
  112. // Enum value maps for ClientLibraryDestination.
  113. var (
  114. ClientLibraryDestination_name = map[int32]string{
  115. 0: "CLIENT_LIBRARY_DESTINATION_UNSPECIFIED",
  116. 10: "GITHUB",
  117. 20: "PACKAGE_MANAGER",
  118. }
  119. ClientLibraryDestination_value = map[string]int32{
  120. "CLIENT_LIBRARY_DESTINATION_UNSPECIFIED": 0,
  121. "GITHUB": 10,
  122. "PACKAGE_MANAGER": 20,
  123. }
  124. )
  125. func (x ClientLibraryDestination) Enum() *ClientLibraryDestination {
  126. p := new(ClientLibraryDestination)
  127. *p = x
  128. return p
  129. }
  130. func (x ClientLibraryDestination) String() string {
  131. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  132. }
  133. func (ClientLibraryDestination) Descriptor() protoreflect.EnumDescriptor {
  134. return file_google_api_client_proto_enumTypes[1].Descriptor()
  135. }
  136. func (ClientLibraryDestination) Type() protoreflect.EnumType {
  137. return &file_google_api_client_proto_enumTypes[1]
  138. }
  139. func (x ClientLibraryDestination) Number() protoreflect.EnumNumber {
  140. return protoreflect.EnumNumber(x)
  141. }
  142. // Deprecated: Use ClientLibraryDestination.Descriptor instead.
  143. func (ClientLibraryDestination) EnumDescriptor() ([]byte, []int) {
  144. return file_google_api_client_proto_rawDescGZIP(), []int{1}
  145. }
  146. // Required information for every language.
  147. type CommonLanguageSettings struct {
  148. state protoimpl.MessageState
  149. sizeCache protoimpl.SizeCache
  150. unknownFields protoimpl.UnknownFields
  151. // Link to automatically generated reference documentation. Example:
  152. // https://cloud.google.com/nodejs/docs/reference/asset/latest
  153. //
  154. // Deprecated: Do not use.
  155. ReferenceDocsUri string `protobuf:"bytes,1,opt,name=reference_docs_uri,json=referenceDocsUri,proto3" json:"reference_docs_uri,omitempty"`
  156. // The destination where API teams want this client library to be published.
  157. Destinations []ClientLibraryDestination `protobuf:"varint,2,rep,packed,name=destinations,proto3,enum=google.api.ClientLibraryDestination" json:"destinations,omitempty"`
  158. }
  159. func (x *CommonLanguageSettings) Reset() {
  160. *x = CommonLanguageSettings{}
  161. if protoimpl.UnsafeEnabled {
  162. mi := &file_google_api_client_proto_msgTypes[0]
  163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  164. ms.StoreMessageInfo(mi)
  165. }
  166. }
  167. func (x *CommonLanguageSettings) String() string {
  168. return protoimpl.X.MessageStringOf(x)
  169. }
  170. func (*CommonLanguageSettings) ProtoMessage() {}
  171. func (x *CommonLanguageSettings) ProtoReflect() protoreflect.Message {
  172. mi := &file_google_api_client_proto_msgTypes[0]
  173. if protoimpl.UnsafeEnabled && x != nil {
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. if ms.LoadMessageInfo() == nil {
  176. ms.StoreMessageInfo(mi)
  177. }
  178. return ms
  179. }
  180. return mi.MessageOf(x)
  181. }
  182. // Deprecated: Use CommonLanguageSettings.ProtoReflect.Descriptor instead.
  183. func (*CommonLanguageSettings) Descriptor() ([]byte, []int) {
  184. return file_google_api_client_proto_rawDescGZIP(), []int{0}
  185. }
  186. // Deprecated: Do not use.
  187. func (x *CommonLanguageSettings) GetReferenceDocsUri() string {
  188. if x != nil {
  189. return x.ReferenceDocsUri
  190. }
  191. return ""
  192. }
  193. func (x *CommonLanguageSettings) GetDestinations() []ClientLibraryDestination {
  194. if x != nil {
  195. return x.Destinations
  196. }
  197. return nil
  198. }
  199. // Details about how and where to publish client libraries.
  200. type ClientLibrarySettings struct {
  201. state protoimpl.MessageState
  202. sizeCache protoimpl.SizeCache
  203. unknownFields protoimpl.UnknownFields
  204. // Version of the API to apply these settings to. This is the full protobuf
  205. // package for the API, ending in the version element.
  206. // Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
  207. Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
  208. // Launch stage of this version of the API.
  209. LaunchStage api.LaunchStage `protobuf:"varint,2,opt,name=launch_stage,json=launchStage,proto3,enum=google.api.LaunchStage" json:"launch_stage,omitempty"`
  210. // When using transport=rest, the client request will encode enums as
  211. // numbers rather than strings.
  212. RestNumericEnums bool `protobuf:"varint,3,opt,name=rest_numeric_enums,json=restNumericEnums,proto3" json:"rest_numeric_enums,omitempty"`
  213. // Settings for legacy Java features, supported in the Service YAML.
  214. JavaSettings *JavaSettings `protobuf:"bytes,21,opt,name=java_settings,json=javaSettings,proto3" json:"java_settings,omitempty"`
  215. // Settings for C++ client libraries.
  216. CppSettings *CppSettings `protobuf:"bytes,22,opt,name=cpp_settings,json=cppSettings,proto3" json:"cpp_settings,omitempty"`
  217. // Settings for PHP client libraries.
  218. PhpSettings *PhpSettings `protobuf:"bytes,23,opt,name=php_settings,json=phpSettings,proto3" json:"php_settings,omitempty"`
  219. // Settings for Python client libraries.
  220. PythonSettings *PythonSettings `protobuf:"bytes,24,opt,name=python_settings,json=pythonSettings,proto3" json:"python_settings,omitempty"`
  221. // Settings for Node client libraries.
  222. NodeSettings *NodeSettings `protobuf:"bytes,25,opt,name=node_settings,json=nodeSettings,proto3" json:"node_settings,omitempty"`
  223. // Settings for .NET client libraries.
  224. DotnetSettings *DotnetSettings `protobuf:"bytes,26,opt,name=dotnet_settings,json=dotnetSettings,proto3" json:"dotnet_settings,omitempty"`
  225. // Settings for Ruby client libraries.
  226. RubySettings *RubySettings `protobuf:"bytes,27,opt,name=ruby_settings,json=rubySettings,proto3" json:"ruby_settings,omitempty"`
  227. // Settings for Go client libraries.
  228. GoSettings *GoSettings `protobuf:"bytes,28,opt,name=go_settings,json=goSettings,proto3" json:"go_settings,omitempty"`
  229. }
  230. func (x *ClientLibrarySettings) Reset() {
  231. *x = ClientLibrarySettings{}
  232. if protoimpl.UnsafeEnabled {
  233. mi := &file_google_api_client_proto_msgTypes[1]
  234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  235. ms.StoreMessageInfo(mi)
  236. }
  237. }
  238. func (x *ClientLibrarySettings) String() string {
  239. return protoimpl.X.MessageStringOf(x)
  240. }
  241. func (*ClientLibrarySettings) ProtoMessage() {}
  242. func (x *ClientLibrarySettings) ProtoReflect() protoreflect.Message {
  243. mi := &file_google_api_client_proto_msgTypes[1]
  244. if protoimpl.UnsafeEnabled && x != nil {
  245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  246. if ms.LoadMessageInfo() == nil {
  247. ms.StoreMessageInfo(mi)
  248. }
  249. return ms
  250. }
  251. return mi.MessageOf(x)
  252. }
  253. // Deprecated: Use ClientLibrarySettings.ProtoReflect.Descriptor instead.
  254. func (*ClientLibrarySettings) Descriptor() ([]byte, []int) {
  255. return file_google_api_client_proto_rawDescGZIP(), []int{1}
  256. }
  257. func (x *ClientLibrarySettings) GetVersion() string {
  258. if x != nil {
  259. return x.Version
  260. }
  261. return ""
  262. }
  263. func (x *ClientLibrarySettings) GetLaunchStage() api.LaunchStage {
  264. if x != nil {
  265. return x.LaunchStage
  266. }
  267. return api.LaunchStage_LAUNCH_STAGE_UNSPECIFIED
  268. }
  269. func (x *ClientLibrarySettings) GetRestNumericEnums() bool {
  270. if x != nil {
  271. return x.RestNumericEnums
  272. }
  273. return false
  274. }
  275. func (x *ClientLibrarySettings) GetJavaSettings() *JavaSettings {
  276. if x != nil {
  277. return x.JavaSettings
  278. }
  279. return nil
  280. }
  281. func (x *ClientLibrarySettings) GetCppSettings() *CppSettings {
  282. if x != nil {
  283. return x.CppSettings
  284. }
  285. return nil
  286. }
  287. func (x *ClientLibrarySettings) GetPhpSettings() *PhpSettings {
  288. if x != nil {
  289. return x.PhpSettings
  290. }
  291. return nil
  292. }
  293. func (x *ClientLibrarySettings) GetPythonSettings() *PythonSettings {
  294. if x != nil {
  295. return x.PythonSettings
  296. }
  297. return nil
  298. }
  299. func (x *ClientLibrarySettings) GetNodeSettings() *NodeSettings {
  300. if x != nil {
  301. return x.NodeSettings
  302. }
  303. return nil
  304. }
  305. func (x *ClientLibrarySettings) GetDotnetSettings() *DotnetSettings {
  306. if x != nil {
  307. return x.DotnetSettings
  308. }
  309. return nil
  310. }
  311. func (x *ClientLibrarySettings) GetRubySettings() *RubySettings {
  312. if x != nil {
  313. return x.RubySettings
  314. }
  315. return nil
  316. }
  317. func (x *ClientLibrarySettings) GetGoSettings() *GoSettings {
  318. if x != nil {
  319. return x.GoSettings
  320. }
  321. return nil
  322. }
  323. // This message configures the settings for publishing [Google Cloud Client
  324. // libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
  325. // generated from the service config.
  326. type Publishing struct {
  327. state protoimpl.MessageState
  328. sizeCache protoimpl.SizeCache
  329. unknownFields protoimpl.UnknownFields
  330. // A list of API method settings, e.g. the behavior for methods that use the
  331. // long-running operation pattern.
  332. MethodSettings []*MethodSettings `protobuf:"bytes,2,rep,name=method_settings,json=methodSettings,proto3" json:"method_settings,omitempty"`
  333. // Link to a *public* URI where users can report issues. Example:
  334. // https://issuetracker.google.com/issues/new?component=190865&template=1161103
  335. NewIssueUri string `protobuf:"bytes,101,opt,name=new_issue_uri,json=newIssueUri,proto3" json:"new_issue_uri,omitempty"`
  336. // Link to product home page. Example:
  337. // https://cloud.google.com/asset-inventory/docs/overview
  338. DocumentationUri string `protobuf:"bytes,102,opt,name=documentation_uri,json=documentationUri,proto3" json:"documentation_uri,omitempty"`
  339. // Used as a tracking tag when collecting data about the APIs developer
  340. // relations artifacts like docs, packages delivered to package managers,
  341. // etc. Example: "speech".
  342. ApiShortName string `protobuf:"bytes,103,opt,name=api_short_name,json=apiShortName,proto3" json:"api_short_name,omitempty"`
  343. // GitHub label to apply to issues and pull requests opened for this API.
  344. GithubLabel string `protobuf:"bytes,104,opt,name=github_label,json=githubLabel,proto3" json:"github_label,omitempty"`
  345. // GitHub teams to be added to CODEOWNERS in the directory in GitHub
  346. // containing source code for the client libraries for this API.
  347. CodeownerGithubTeams []string `protobuf:"bytes,105,rep,name=codeowner_github_teams,json=codeownerGithubTeams,proto3" json:"codeowner_github_teams,omitempty"`
  348. // A prefix used in sample code when demarking regions to be included in
  349. // documentation.
  350. DocTagPrefix string `protobuf:"bytes,106,opt,name=doc_tag_prefix,json=docTagPrefix,proto3" json:"doc_tag_prefix,omitempty"`
  351. // For whom the client library is being published.
  352. Organization ClientLibraryOrganization `protobuf:"varint,107,opt,name=organization,proto3,enum=google.api.ClientLibraryOrganization" json:"organization,omitempty"`
  353. // Client library settings. If the same version string appears multiple
  354. // times in this list, then the last one wins. Settings from earlier
  355. // settings with the same version string are discarded.
  356. LibrarySettings []*ClientLibrarySettings `protobuf:"bytes,109,rep,name=library_settings,json=librarySettings,proto3" json:"library_settings,omitempty"`
  357. // Optional link to proto reference documentation. Example:
  358. // https://cloud.google.com/pubsub/lite/docs/reference/rpc
  359. ProtoReferenceDocumentationUri string `protobuf:"bytes,110,opt,name=proto_reference_documentation_uri,json=protoReferenceDocumentationUri,proto3" json:"proto_reference_documentation_uri,omitempty"`
  360. }
  361. func (x *Publishing) Reset() {
  362. *x = Publishing{}
  363. if protoimpl.UnsafeEnabled {
  364. mi := &file_google_api_client_proto_msgTypes[2]
  365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  366. ms.StoreMessageInfo(mi)
  367. }
  368. }
  369. func (x *Publishing) String() string {
  370. return protoimpl.X.MessageStringOf(x)
  371. }
  372. func (*Publishing) ProtoMessage() {}
  373. func (x *Publishing) ProtoReflect() protoreflect.Message {
  374. mi := &file_google_api_client_proto_msgTypes[2]
  375. if protoimpl.UnsafeEnabled && x != nil {
  376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  377. if ms.LoadMessageInfo() == nil {
  378. ms.StoreMessageInfo(mi)
  379. }
  380. return ms
  381. }
  382. return mi.MessageOf(x)
  383. }
  384. // Deprecated: Use Publishing.ProtoReflect.Descriptor instead.
  385. func (*Publishing) Descriptor() ([]byte, []int) {
  386. return file_google_api_client_proto_rawDescGZIP(), []int{2}
  387. }
  388. func (x *Publishing) GetMethodSettings() []*MethodSettings {
  389. if x != nil {
  390. return x.MethodSettings
  391. }
  392. return nil
  393. }
  394. func (x *Publishing) GetNewIssueUri() string {
  395. if x != nil {
  396. return x.NewIssueUri
  397. }
  398. return ""
  399. }
  400. func (x *Publishing) GetDocumentationUri() string {
  401. if x != nil {
  402. return x.DocumentationUri
  403. }
  404. return ""
  405. }
  406. func (x *Publishing) GetApiShortName() string {
  407. if x != nil {
  408. return x.ApiShortName
  409. }
  410. return ""
  411. }
  412. func (x *Publishing) GetGithubLabel() string {
  413. if x != nil {
  414. return x.GithubLabel
  415. }
  416. return ""
  417. }
  418. func (x *Publishing) GetCodeownerGithubTeams() []string {
  419. if x != nil {
  420. return x.CodeownerGithubTeams
  421. }
  422. return nil
  423. }
  424. func (x *Publishing) GetDocTagPrefix() string {
  425. if x != nil {
  426. return x.DocTagPrefix
  427. }
  428. return ""
  429. }
  430. func (x *Publishing) GetOrganization() ClientLibraryOrganization {
  431. if x != nil {
  432. return x.Organization
  433. }
  434. return ClientLibraryOrganization_CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED
  435. }
  436. func (x *Publishing) GetLibrarySettings() []*ClientLibrarySettings {
  437. if x != nil {
  438. return x.LibrarySettings
  439. }
  440. return nil
  441. }
  442. func (x *Publishing) GetProtoReferenceDocumentationUri() string {
  443. if x != nil {
  444. return x.ProtoReferenceDocumentationUri
  445. }
  446. return ""
  447. }
  448. // Settings for Java client libraries.
  449. type JavaSettings struct {
  450. state protoimpl.MessageState
  451. sizeCache protoimpl.SizeCache
  452. unknownFields protoimpl.UnknownFields
  453. // The package name to use in Java. Clobbers the java_package option
  454. // set in the protobuf. This should be used **only** by APIs
  455. // who have already set the language_settings.java.package_name" field
  456. // in gapic.yaml. API teams should use the protobuf java_package option
  457. // where possible.
  458. //
  459. // Example of a YAML configuration::
  460. //
  461. // publishing:
  462. // java_settings:
  463. // library_package: com.google.cloud.pubsub.v1
  464. LibraryPackage string `protobuf:"bytes,1,opt,name=library_package,json=libraryPackage,proto3" json:"library_package,omitempty"`
  465. // Configure the Java class name to use instead of the service's for its
  466. // corresponding generated GAPIC client. Keys are fully-qualified
  467. // service names as they appear in the protobuf (including the full
  468. // the language_settings.java.interface_names" field in gapic.yaml. API
  469. // teams should otherwise use the service name as it appears in the
  470. // protobuf.
  471. //
  472. // Example of a YAML configuration::
  473. //
  474. // publishing:
  475. // java_settings:
  476. // service_class_names:
  477. // - google.pubsub.v1.Publisher: TopicAdmin
  478. // - google.pubsub.v1.Subscriber: SubscriptionAdmin
  479. ServiceClassNames map[string]string `protobuf:"bytes,2,rep,name=service_class_names,json=serviceClassNames,proto3" json:"service_class_names,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  480. // Some settings.
  481. Common *CommonLanguageSettings `protobuf:"bytes,3,opt,name=common,proto3" json:"common,omitempty"`
  482. }
  483. func (x *JavaSettings) Reset() {
  484. *x = JavaSettings{}
  485. if protoimpl.UnsafeEnabled {
  486. mi := &file_google_api_client_proto_msgTypes[3]
  487. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  488. ms.StoreMessageInfo(mi)
  489. }
  490. }
  491. func (x *JavaSettings) String() string {
  492. return protoimpl.X.MessageStringOf(x)
  493. }
  494. func (*JavaSettings) ProtoMessage() {}
  495. func (x *JavaSettings) ProtoReflect() protoreflect.Message {
  496. mi := &file_google_api_client_proto_msgTypes[3]
  497. if protoimpl.UnsafeEnabled && x != nil {
  498. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  499. if ms.LoadMessageInfo() == nil {
  500. ms.StoreMessageInfo(mi)
  501. }
  502. return ms
  503. }
  504. return mi.MessageOf(x)
  505. }
  506. // Deprecated: Use JavaSettings.ProtoReflect.Descriptor instead.
  507. func (*JavaSettings) Descriptor() ([]byte, []int) {
  508. return file_google_api_client_proto_rawDescGZIP(), []int{3}
  509. }
  510. func (x *JavaSettings) GetLibraryPackage() string {
  511. if x != nil {
  512. return x.LibraryPackage
  513. }
  514. return ""
  515. }
  516. func (x *JavaSettings) GetServiceClassNames() map[string]string {
  517. if x != nil {
  518. return x.ServiceClassNames
  519. }
  520. return nil
  521. }
  522. func (x *JavaSettings) GetCommon() *CommonLanguageSettings {
  523. if x != nil {
  524. return x.Common
  525. }
  526. return nil
  527. }
  528. // Settings for C++ client libraries.
  529. type CppSettings struct {
  530. state protoimpl.MessageState
  531. sizeCache protoimpl.SizeCache
  532. unknownFields protoimpl.UnknownFields
  533. // Some settings.
  534. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  535. }
  536. func (x *CppSettings) Reset() {
  537. *x = CppSettings{}
  538. if protoimpl.UnsafeEnabled {
  539. mi := &file_google_api_client_proto_msgTypes[4]
  540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  541. ms.StoreMessageInfo(mi)
  542. }
  543. }
  544. func (x *CppSettings) String() string {
  545. return protoimpl.X.MessageStringOf(x)
  546. }
  547. func (*CppSettings) ProtoMessage() {}
  548. func (x *CppSettings) ProtoReflect() protoreflect.Message {
  549. mi := &file_google_api_client_proto_msgTypes[4]
  550. if protoimpl.UnsafeEnabled && x != nil {
  551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  552. if ms.LoadMessageInfo() == nil {
  553. ms.StoreMessageInfo(mi)
  554. }
  555. return ms
  556. }
  557. return mi.MessageOf(x)
  558. }
  559. // Deprecated: Use CppSettings.ProtoReflect.Descriptor instead.
  560. func (*CppSettings) Descriptor() ([]byte, []int) {
  561. return file_google_api_client_proto_rawDescGZIP(), []int{4}
  562. }
  563. func (x *CppSettings) GetCommon() *CommonLanguageSettings {
  564. if x != nil {
  565. return x.Common
  566. }
  567. return nil
  568. }
  569. // Settings for Php client libraries.
  570. type PhpSettings struct {
  571. state protoimpl.MessageState
  572. sizeCache protoimpl.SizeCache
  573. unknownFields protoimpl.UnknownFields
  574. // Some settings.
  575. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  576. }
  577. func (x *PhpSettings) Reset() {
  578. *x = PhpSettings{}
  579. if protoimpl.UnsafeEnabled {
  580. mi := &file_google_api_client_proto_msgTypes[5]
  581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  582. ms.StoreMessageInfo(mi)
  583. }
  584. }
  585. func (x *PhpSettings) String() string {
  586. return protoimpl.X.MessageStringOf(x)
  587. }
  588. func (*PhpSettings) ProtoMessage() {}
  589. func (x *PhpSettings) ProtoReflect() protoreflect.Message {
  590. mi := &file_google_api_client_proto_msgTypes[5]
  591. if protoimpl.UnsafeEnabled && x != nil {
  592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  593. if ms.LoadMessageInfo() == nil {
  594. ms.StoreMessageInfo(mi)
  595. }
  596. return ms
  597. }
  598. return mi.MessageOf(x)
  599. }
  600. // Deprecated: Use PhpSettings.ProtoReflect.Descriptor instead.
  601. func (*PhpSettings) Descriptor() ([]byte, []int) {
  602. return file_google_api_client_proto_rawDescGZIP(), []int{5}
  603. }
  604. func (x *PhpSettings) GetCommon() *CommonLanguageSettings {
  605. if x != nil {
  606. return x.Common
  607. }
  608. return nil
  609. }
  610. // Settings for Python client libraries.
  611. type PythonSettings struct {
  612. state protoimpl.MessageState
  613. sizeCache protoimpl.SizeCache
  614. unknownFields protoimpl.UnknownFields
  615. // Some settings.
  616. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  617. }
  618. func (x *PythonSettings) Reset() {
  619. *x = PythonSettings{}
  620. if protoimpl.UnsafeEnabled {
  621. mi := &file_google_api_client_proto_msgTypes[6]
  622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  623. ms.StoreMessageInfo(mi)
  624. }
  625. }
  626. func (x *PythonSettings) String() string {
  627. return protoimpl.X.MessageStringOf(x)
  628. }
  629. func (*PythonSettings) ProtoMessage() {}
  630. func (x *PythonSettings) ProtoReflect() protoreflect.Message {
  631. mi := &file_google_api_client_proto_msgTypes[6]
  632. if protoimpl.UnsafeEnabled && x != nil {
  633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  634. if ms.LoadMessageInfo() == nil {
  635. ms.StoreMessageInfo(mi)
  636. }
  637. return ms
  638. }
  639. return mi.MessageOf(x)
  640. }
  641. // Deprecated: Use PythonSettings.ProtoReflect.Descriptor instead.
  642. func (*PythonSettings) Descriptor() ([]byte, []int) {
  643. return file_google_api_client_proto_rawDescGZIP(), []int{6}
  644. }
  645. func (x *PythonSettings) GetCommon() *CommonLanguageSettings {
  646. if x != nil {
  647. return x.Common
  648. }
  649. return nil
  650. }
  651. // Settings for Node client libraries.
  652. type NodeSettings struct {
  653. state protoimpl.MessageState
  654. sizeCache protoimpl.SizeCache
  655. unknownFields protoimpl.UnknownFields
  656. // Some settings.
  657. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  658. }
  659. func (x *NodeSettings) Reset() {
  660. *x = NodeSettings{}
  661. if protoimpl.UnsafeEnabled {
  662. mi := &file_google_api_client_proto_msgTypes[7]
  663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  664. ms.StoreMessageInfo(mi)
  665. }
  666. }
  667. func (x *NodeSettings) String() string {
  668. return protoimpl.X.MessageStringOf(x)
  669. }
  670. func (*NodeSettings) ProtoMessage() {}
  671. func (x *NodeSettings) ProtoReflect() protoreflect.Message {
  672. mi := &file_google_api_client_proto_msgTypes[7]
  673. if protoimpl.UnsafeEnabled && x != nil {
  674. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  675. if ms.LoadMessageInfo() == nil {
  676. ms.StoreMessageInfo(mi)
  677. }
  678. return ms
  679. }
  680. return mi.MessageOf(x)
  681. }
  682. // Deprecated: Use NodeSettings.ProtoReflect.Descriptor instead.
  683. func (*NodeSettings) Descriptor() ([]byte, []int) {
  684. return file_google_api_client_proto_rawDescGZIP(), []int{7}
  685. }
  686. func (x *NodeSettings) GetCommon() *CommonLanguageSettings {
  687. if x != nil {
  688. return x.Common
  689. }
  690. return nil
  691. }
  692. // Settings for Dotnet client libraries.
  693. type DotnetSettings struct {
  694. state protoimpl.MessageState
  695. sizeCache protoimpl.SizeCache
  696. unknownFields protoimpl.UnknownFields
  697. // Some settings.
  698. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  699. // Map from original service names to renamed versions.
  700. // This is used when the default generated types
  701. // would cause a naming conflict. (Neither name is
  702. // fully-qualified.)
  703. // Example: Subscriber to SubscriberServiceApi.
  704. RenamedServices map[string]string `protobuf:"bytes,2,rep,name=renamed_services,json=renamedServices,proto3" json:"renamed_services,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  705. // Map from full resource types to the effective short name
  706. // for the resource. This is used when otherwise resource
  707. // named from different services would cause naming collisions.
  708. // Example entry:
  709. // "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
  710. RenamedResources map[string]string `protobuf:"bytes,3,rep,name=renamed_resources,json=renamedResources,proto3" json:"renamed_resources,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  711. // List of full resource types to ignore during generation.
  712. // This is typically used for API-specific Location resources,
  713. // which should be handled by the generator as if they were actually
  714. // the common Location resources.
  715. // Example entry: "documentai.googleapis.com/Location"
  716. IgnoredResources []string `protobuf:"bytes,4,rep,name=ignored_resources,json=ignoredResources,proto3" json:"ignored_resources,omitempty"`
  717. // Namespaces which must be aliased in snippets due to
  718. // a known (but non-generator-predictable) naming collision
  719. ForcedNamespaceAliases []string `protobuf:"bytes,5,rep,name=forced_namespace_aliases,json=forcedNamespaceAliases,proto3" json:"forced_namespace_aliases,omitempty"`
  720. // Method signatures (in the form "service.method(signature)")
  721. // which are provided separately, so shouldn't be generated.
  722. // Snippets *calling* these methods are still generated, however.
  723. HandwrittenSignatures []string `protobuf:"bytes,6,rep,name=handwritten_signatures,json=handwrittenSignatures,proto3" json:"handwritten_signatures,omitempty"`
  724. }
  725. func (x *DotnetSettings) Reset() {
  726. *x = DotnetSettings{}
  727. if protoimpl.UnsafeEnabled {
  728. mi := &file_google_api_client_proto_msgTypes[8]
  729. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  730. ms.StoreMessageInfo(mi)
  731. }
  732. }
  733. func (x *DotnetSettings) String() string {
  734. return protoimpl.X.MessageStringOf(x)
  735. }
  736. func (*DotnetSettings) ProtoMessage() {}
  737. func (x *DotnetSettings) ProtoReflect() protoreflect.Message {
  738. mi := &file_google_api_client_proto_msgTypes[8]
  739. if protoimpl.UnsafeEnabled && x != nil {
  740. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  741. if ms.LoadMessageInfo() == nil {
  742. ms.StoreMessageInfo(mi)
  743. }
  744. return ms
  745. }
  746. return mi.MessageOf(x)
  747. }
  748. // Deprecated: Use DotnetSettings.ProtoReflect.Descriptor instead.
  749. func (*DotnetSettings) Descriptor() ([]byte, []int) {
  750. return file_google_api_client_proto_rawDescGZIP(), []int{8}
  751. }
  752. func (x *DotnetSettings) GetCommon() *CommonLanguageSettings {
  753. if x != nil {
  754. return x.Common
  755. }
  756. return nil
  757. }
  758. func (x *DotnetSettings) GetRenamedServices() map[string]string {
  759. if x != nil {
  760. return x.RenamedServices
  761. }
  762. return nil
  763. }
  764. func (x *DotnetSettings) GetRenamedResources() map[string]string {
  765. if x != nil {
  766. return x.RenamedResources
  767. }
  768. return nil
  769. }
  770. func (x *DotnetSettings) GetIgnoredResources() []string {
  771. if x != nil {
  772. return x.IgnoredResources
  773. }
  774. return nil
  775. }
  776. func (x *DotnetSettings) GetForcedNamespaceAliases() []string {
  777. if x != nil {
  778. return x.ForcedNamespaceAliases
  779. }
  780. return nil
  781. }
  782. func (x *DotnetSettings) GetHandwrittenSignatures() []string {
  783. if x != nil {
  784. return x.HandwrittenSignatures
  785. }
  786. return nil
  787. }
  788. // Settings for Ruby client libraries.
  789. type RubySettings struct {
  790. state protoimpl.MessageState
  791. sizeCache protoimpl.SizeCache
  792. unknownFields protoimpl.UnknownFields
  793. // Some settings.
  794. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  795. }
  796. func (x *RubySettings) Reset() {
  797. *x = RubySettings{}
  798. if protoimpl.UnsafeEnabled {
  799. mi := &file_google_api_client_proto_msgTypes[9]
  800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  801. ms.StoreMessageInfo(mi)
  802. }
  803. }
  804. func (x *RubySettings) String() string {
  805. return protoimpl.X.MessageStringOf(x)
  806. }
  807. func (*RubySettings) ProtoMessage() {}
  808. func (x *RubySettings) ProtoReflect() protoreflect.Message {
  809. mi := &file_google_api_client_proto_msgTypes[9]
  810. if protoimpl.UnsafeEnabled && x != nil {
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. if ms.LoadMessageInfo() == nil {
  813. ms.StoreMessageInfo(mi)
  814. }
  815. return ms
  816. }
  817. return mi.MessageOf(x)
  818. }
  819. // Deprecated: Use RubySettings.ProtoReflect.Descriptor instead.
  820. func (*RubySettings) Descriptor() ([]byte, []int) {
  821. return file_google_api_client_proto_rawDescGZIP(), []int{9}
  822. }
  823. func (x *RubySettings) GetCommon() *CommonLanguageSettings {
  824. if x != nil {
  825. return x.Common
  826. }
  827. return nil
  828. }
  829. // Settings for Go client libraries.
  830. type GoSettings struct {
  831. state protoimpl.MessageState
  832. sizeCache protoimpl.SizeCache
  833. unknownFields protoimpl.UnknownFields
  834. // Some settings.
  835. Common *CommonLanguageSettings `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
  836. }
  837. func (x *GoSettings) Reset() {
  838. *x = GoSettings{}
  839. if protoimpl.UnsafeEnabled {
  840. mi := &file_google_api_client_proto_msgTypes[10]
  841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  842. ms.StoreMessageInfo(mi)
  843. }
  844. }
  845. func (x *GoSettings) String() string {
  846. return protoimpl.X.MessageStringOf(x)
  847. }
  848. func (*GoSettings) ProtoMessage() {}
  849. func (x *GoSettings) ProtoReflect() protoreflect.Message {
  850. mi := &file_google_api_client_proto_msgTypes[10]
  851. if protoimpl.UnsafeEnabled && x != nil {
  852. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  853. if ms.LoadMessageInfo() == nil {
  854. ms.StoreMessageInfo(mi)
  855. }
  856. return ms
  857. }
  858. return mi.MessageOf(x)
  859. }
  860. // Deprecated: Use GoSettings.ProtoReflect.Descriptor instead.
  861. func (*GoSettings) Descriptor() ([]byte, []int) {
  862. return file_google_api_client_proto_rawDescGZIP(), []int{10}
  863. }
  864. func (x *GoSettings) GetCommon() *CommonLanguageSettings {
  865. if x != nil {
  866. return x.Common
  867. }
  868. return nil
  869. }
  870. // Describes the generator configuration for a method.
  871. type MethodSettings struct {
  872. state protoimpl.MessageState
  873. sizeCache protoimpl.SizeCache
  874. unknownFields protoimpl.UnknownFields
  875. // The fully qualified name of the method, for which the options below apply.
  876. // This is used to find the method to apply the options.
  877. Selector string `protobuf:"bytes,1,opt,name=selector,proto3" json:"selector,omitempty"`
  878. // Describes settings to use for long-running operations when generating
  879. // API methods for RPCs. Complements RPCs that use the annotations in
  880. // google/longrunning/operations.proto.
  881. //
  882. // Example of a YAML configuration::
  883. //
  884. // publishing:
  885. // method_settings:
  886. // - selector: google.cloud.speech.v2.Speech.BatchRecognize
  887. // long_running:
  888. // initial_poll_delay:
  889. // seconds: 60 # 1 minute
  890. // poll_delay_multiplier: 1.5
  891. // max_poll_delay:
  892. // seconds: 360 # 6 minutes
  893. // total_poll_timeout:
  894. // seconds: 54000 # 90 minutes
  895. LongRunning *MethodSettings_LongRunning `protobuf:"bytes,2,opt,name=long_running,json=longRunning,proto3" json:"long_running,omitempty"`
  896. // List of top-level fields of the request message, that should be
  897. // automatically populated by the client libraries based on their
  898. // (google.api.field_info).format. Currently supported format: UUID4.
  899. //
  900. // Example of a YAML configuration:
  901. //
  902. // publishing:
  903. // method_settings:
  904. // - selector: google.example.v1.ExampleService.CreateExample
  905. // auto_populated_fields:
  906. // - request_id
  907. AutoPopulatedFields []string `protobuf:"bytes,3,rep,name=auto_populated_fields,json=autoPopulatedFields,proto3" json:"auto_populated_fields,omitempty"`
  908. }
  909. func (x *MethodSettings) Reset() {
  910. *x = MethodSettings{}
  911. if protoimpl.UnsafeEnabled {
  912. mi := &file_google_api_client_proto_msgTypes[11]
  913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  914. ms.StoreMessageInfo(mi)
  915. }
  916. }
  917. func (x *MethodSettings) String() string {
  918. return protoimpl.X.MessageStringOf(x)
  919. }
  920. func (*MethodSettings) ProtoMessage() {}
  921. func (x *MethodSettings) ProtoReflect() protoreflect.Message {
  922. mi := &file_google_api_client_proto_msgTypes[11]
  923. if protoimpl.UnsafeEnabled && x != nil {
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. if ms.LoadMessageInfo() == nil {
  926. ms.StoreMessageInfo(mi)
  927. }
  928. return ms
  929. }
  930. return mi.MessageOf(x)
  931. }
  932. // Deprecated: Use MethodSettings.ProtoReflect.Descriptor instead.
  933. func (*MethodSettings) Descriptor() ([]byte, []int) {
  934. return file_google_api_client_proto_rawDescGZIP(), []int{11}
  935. }
  936. func (x *MethodSettings) GetSelector() string {
  937. if x != nil {
  938. return x.Selector
  939. }
  940. return ""
  941. }
  942. func (x *MethodSettings) GetLongRunning() *MethodSettings_LongRunning {
  943. if x != nil {
  944. return x.LongRunning
  945. }
  946. return nil
  947. }
  948. func (x *MethodSettings) GetAutoPopulatedFields() []string {
  949. if x != nil {
  950. return x.AutoPopulatedFields
  951. }
  952. return nil
  953. }
  954. // Describes settings to use when generating API methods that use the
  955. // long-running operation pattern.
  956. // All default values below are from those used in the client library
  957. // generators (e.g.
  958. // [Java](https://github.com/googleapis/gapic-generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
  959. type MethodSettings_LongRunning struct {
  960. state protoimpl.MessageState
  961. sizeCache protoimpl.SizeCache
  962. unknownFields protoimpl.UnknownFields
  963. // Initial delay after which the first poll request will be made.
  964. // Default value: 5 seconds.
  965. InitialPollDelay *durationpb.Duration `protobuf:"bytes,1,opt,name=initial_poll_delay,json=initialPollDelay,proto3" json:"initial_poll_delay,omitempty"`
  966. // Multiplier to gradually increase delay between subsequent polls until it
  967. // reaches max_poll_delay.
  968. // Default value: 1.5.
  969. PollDelayMultiplier float32 `protobuf:"fixed32,2,opt,name=poll_delay_multiplier,json=pollDelayMultiplier,proto3" json:"poll_delay_multiplier,omitempty"`
  970. // Maximum time between two subsequent poll requests.
  971. // Default value: 45 seconds.
  972. MaxPollDelay *durationpb.Duration `protobuf:"bytes,3,opt,name=max_poll_delay,json=maxPollDelay,proto3" json:"max_poll_delay,omitempty"`
  973. // Total polling timeout.
  974. // Default value: 5 minutes.
  975. TotalPollTimeout *durationpb.Duration `protobuf:"bytes,4,opt,name=total_poll_timeout,json=totalPollTimeout,proto3" json:"total_poll_timeout,omitempty"`
  976. }
  977. func (x *MethodSettings_LongRunning) Reset() {
  978. *x = MethodSettings_LongRunning{}
  979. if protoimpl.UnsafeEnabled {
  980. mi := &file_google_api_client_proto_msgTypes[15]
  981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  982. ms.StoreMessageInfo(mi)
  983. }
  984. }
  985. func (x *MethodSettings_LongRunning) String() string {
  986. return protoimpl.X.MessageStringOf(x)
  987. }
  988. func (*MethodSettings_LongRunning) ProtoMessage() {}
  989. func (x *MethodSettings_LongRunning) ProtoReflect() protoreflect.Message {
  990. mi := &file_google_api_client_proto_msgTypes[15]
  991. if protoimpl.UnsafeEnabled && x != nil {
  992. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  993. if ms.LoadMessageInfo() == nil {
  994. ms.StoreMessageInfo(mi)
  995. }
  996. return ms
  997. }
  998. return mi.MessageOf(x)
  999. }
  1000. // Deprecated: Use MethodSettings_LongRunning.ProtoReflect.Descriptor instead.
  1001. func (*MethodSettings_LongRunning) Descriptor() ([]byte, []int) {
  1002. return file_google_api_client_proto_rawDescGZIP(), []int{11, 0}
  1003. }
  1004. func (x *MethodSettings_LongRunning) GetInitialPollDelay() *durationpb.Duration {
  1005. if x != nil {
  1006. return x.InitialPollDelay
  1007. }
  1008. return nil
  1009. }
  1010. func (x *MethodSettings_LongRunning) GetPollDelayMultiplier() float32 {
  1011. if x != nil {
  1012. return x.PollDelayMultiplier
  1013. }
  1014. return 0
  1015. }
  1016. func (x *MethodSettings_LongRunning) GetMaxPollDelay() *durationpb.Duration {
  1017. if x != nil {
  1018. return x.MaxPollDelay
  1019. }
  1020. return nil
  1021. }
  1022. func (x *MethodSettings_LongRunning) GetTotalPollTimeout() *durationpb.Duration {
  1023. if x != nil {
  1024. return x.TotalPollTimeout
  1025. }
  1026. return nil
  1027. }
  1028. var file_google_api_client_proto_extTypes = []protoimpl.ExtensionInfo{
  1029. {
  1030. ExtendedType: (*descriptorpb.MethodOptions)(nil),
  1031. ExtensionType: ([]string)(nil),
  1032. Field: 1051,
  1033. Name: "google.api.method_signature",
  1034. Tag: "bytes,1051,rep,name=method_signature",
  1035. Filename: "google/api/client.proto",
  1036. },
  1037. {
  1038. ExtendedType: (*descriptorpb.ServiceOptions)(nil),
  1039. ExtensionType: (*string)(nil),
  1040. Field: 1049,
  1041. Name: "google.api.default_host",
  1042. Tag: "bytes,1049,opt,name=default_host",
  1043. Filename: "google/api/client.proto",
  1044. },
  1045. {
  1046. ExtendedType: (*descriptorpb.ServiceOptions)(nil),
  1047. ExtensionType: (*string)(nil),
  1048. Field: 1050,
  1049. Name: "google.api.oauth_scopes",
  1050. Tag: "bytes,1050,opt,name=oauth_scopes",
  1051. Filename: "google/api/client.proto",
  1052. },
  1053. }
  1054. // Extension fields to descriptorpb.MethodOptions.
  1055. var (
  1056. // A definition of a client library method signature.
  1057. //
  1058. // In client libraries, each proto RPC corresponds to one or more methods
  1059. // which the end user is able to call, and calls the underlying RPC.
  1060. // Normally, this method receives a single argument (a struct or instance
  1061. // corresponding to the RPC request object). Defining this field will
  1062. // add one or more overloads providing flattened or simpler method signatures
  1063. // in some languages.
  1064. //
  1065. // The fields on the method signature are provided as a comma-separated
  1066. // string.
  1067. //
  1068. // For example, the proto RPC and annotation:
  1069. //
  1070. // rpc CreateSubscription(CreateSubscriptionRequest)
  1071. // returns (Subscription) {
  1072. // option (google.api.method_signature) = "name,topic";
  1073. // }
  1074. //
  1075. // Would add the following Java overload (in addition to the method accepting
  1076. // the request object):
  1077. //
  1078. // public final Subscription createSubscription(String name, String topic)
  1079. //
  1080. // The following backwards-compatibility guidelines apply:
  1081. //
  1082. // - Adding this annotation to an unannotated method is backwards
  1083. // compatible.
  1084. // - Adding this annotation to a method which already has existing
  1085. // method signature annotations is backwards compatible if and only if
  1086. // the new method signature annotation is last in the sequence.
  1087. // - Modifying or removing an existing method signature annotation is
  1088. // a breaking change.
  1089. // - Re-ordering existing method signature annotations is a breaking
  1090. // change.
  1091. //
  1092. // repeated string method_signature = 1051;
  1093. E_MethodSignature = &file_google_api_client_proto_extTypes[0]
  1094. )
  1095. // Extension fields to descriptorpb.ServiceOptions.
  1096. var (
  1097. // The hostname for this service.
  1098. // This should be specified with no prefix or protocol.
  1099. //
  1100. // Example:
  1101. //
  1102. // service Foo {
  1103. // option (google.api.default_host) = "foo.googleapi.com";
  1104. // ...
  1105. // }
  1106. //
  1107. // optional string default_host = 1049;
  1108. E_DefaultHost = &file_google_api_client_proto_extTypes[1]
  1109. // OAuth scopes needed for the client.
  1110. //
  1111. // Example:
  1112. //
  1113. // service Foo {
  1114. // option (google.api.oauth_scopes) = \
  1115. // "https://www.googleapis.com/auth/cloud-platform";
  1116. // ...
  1117. // }
  1118. //
  1119. // If there is more than one scope, use a comma-separated string:
  1120. //
  1121. // Example:
  1122. //
  1123. // service Foo {
  1124. // option (google.api.oauth_scopes) = \
  1125. // "https://www.googleapis.com/auth/cloud-platform,"
  1126. // "https://www.googleapis.com/auth/monitoring";
  1127. // ...
  1128. // }
  1129. //
  1130. // optional string oauth_scopes = 1050;
  1131. E_OauthScopes = &file_google_api_client_proto_extTypes[2]
  1132. )
  1133. var File_google_api_client_proto protoreflect.FileDescriptor
  1134. var file_google_api_client_proto_rawDesc = []byte{
  1135. 0x0a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69,
  1136. 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1137. 0x65, 0x2e, 0x61, 0x70, 0x69, 0x1a, 0x1d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
  1138. 0x69, 0x2f, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x5f, 0x73, 0x74, 0x61, 0x67, 0x65, 0x2e, 0x70,
  1139. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1140. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72,
  1141. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
  1142. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1143. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x94, 0x01, 0x0a, 0x16, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
  1144. 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  1145. 0x73, 0x12, 0x30, 0x0a, 0x12, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64,
  1146. 0x6f, 0x63, 0x73, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18,
  1147. 0x01, 0x52, 0x10, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x6f, 0x63, 0x73,
  1148. 0x55, 0x72, 0x69, 0x12, 0x48, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69,
  1149. 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1150. 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62,
  1151. 0x72, 0x61, 0x72, 0x79, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  1152. 0x0c, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x93, 0x05,
  1153. 0x0a, 0x15, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x53,
  1154. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  1155. 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  1156. 0x6e, 0x12, 0x3a, 0x0a, 0x0c, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x5f, 0x73, 0x74, 0x61, 0x67,
  1157. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1158. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x74, 0x61, 0x67, 0x65,
  1159. 0x52, 0x0b, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x74, 0x61, 0x67, 0x65, 0x12, 0x2c, 0x0a,
  1160. 0x12, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x5f, 0x65, 0x6e,
  1161. 0x75, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x72, 0x65, 0x73, 0x74, 0x4e,
  1162. 0x75, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x6a,
  1163. 0x61, 0x76, 0x61, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x15, 0x20, 0x01,
  1164. 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1165. 0x4a, 0x61, 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0c, 0x6a, 0x61,
  1166. 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x63, 0x70,
  1167. 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b,
  1168. 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x70,
  1169. 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0b, 0x63, 0x70, 0x70, 0x53, 0x65,
  1170. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x70, 0x68, 0x70, 0x5f, 0x73, 0x65,
  1171. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67,
  1172. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x50, 0x68, 0x70, 0x53, 0x65, 0x74,
  1173. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0b, 0x70, 0x68, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1174. 0x67, 0x73, 0x12, 0x43, 0x0a, 0x0f, 0x70, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74,
  1175. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
  1176. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x50, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x53,
  1177. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x70, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x53,
  1178. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x5f,
  1179. 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18,
  1180. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4e, 0x6f, 0x64, 0x65,
  1181. 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x53, 0x65,
  1182. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x43, 0x0a, 0x0f, 0x64, 0x6f, 0x74, 0x6e, 0x65, 0x74,
  1183. 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1184. 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x6f, 0x74,
  1185. 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x64, 0x6f, 0x74,
  1186. 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x72,
  1187. 0x75, 0x62, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x1b, 0x20, 0x01,
  1188. 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1189. 0x52, 0x75, 0x62, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0c, 0x72, 0x75,
  1190. 0x62, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x37, 0x0a, 0x0b, 0x67, 0x6f,
  1191. 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1192. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x47, 0x6f, 0x53,
  1193. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0a, 0x67, 0x6f, 0x53, 0x65, 0x74, 0x74, 0x69,
  1194. 0x6e, 0x67, 0x73, 0x22, 0xab, 0x04, 0x0a, 0x0a, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x69,
  1195. 0x6e, 0x67, 0x12, 0x43, 0x0a, 0x0f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x73, 0x65, 0x74,
  1196. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
  1197. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53,
  1198. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53,
  1199. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x6e, 0x65, 0x77, 0x5f, 0x69,
  1200. 0x73, 0x73, 0x75, 0x65, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x65, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  1201. 0x6e, 0x65, 0x77, 0x49, 0x73, 0x73, 0x75, 0x65, 0x55, 0x72, 0x69, 0x12, 0x2b, 0x0a, 0x11, 0x64,
  1202. 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x72, 0x69,
  1203. 0x18, 0x66, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
  1204. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x69, 0x12, 0x24, 0x0a, 0x0e, 0x61, 0x70, 0x69, 0x5f,
  1205. 0x73, 0x68, 0x6f, 0x72, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x67, 0x20, 0x01, 0x28, 0x09,
  1206. 0x52, 0x0c, 0x61, 0x70, 0x69, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21,
  1207. 0x0a, 0x0c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x68,
  1208. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x4c, 0x61, 0x62, 0x65,
  1209. 0x6c, 0x12, 0x34, 0x0a, 0x16, 0x63, 0x6f, 0x64, 0x65, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x67,
  1210. 0x69, 0x74, 0x68, 0x75, 0x62, 0x5f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x69, 0x20, 0x03, 0x28,
  1211. 0x09, 0x52, 0x14, 0x63, 0x6f, 0x64, 0x65, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x47, 0x69, 0x74, 0x68,
  1212. 0x75, 0x62, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x64, 0x6f, 0x63, 0x5f, 0x74,
  1213. 0x61, 0x67, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x18, 0x6a, 0x20, 0x01, 0x28, 0x09, 0x52,
  1214. 0x0c, 0x64, 0x6f, 0x63, 0x54, 0x61, 0x67, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x12, 0x49, 0x0a,
  1215. 0x0c, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x6b, 0x20,
  1216. 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69,
  1217. 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x4f, 0x72,
  1218. 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x6f, 0x72, 0x67, 0x61,
  1219. 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x10, 0x6c, 0x69, 0x62, 0x72,
  1220. 0x61, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x6d, 0x20, 0x03,
  1221. 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1222. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x53, 0x65, 0x74,
  1223. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0f, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x53, 0x65,
  1224. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x49, 0x0a, 0x21, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f,
  1225. 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
  1226. 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x6e, 0x20, 0x01, 0x28,
  1227. 0x09, 0x52, 0x1e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
  1228. 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72,
  1229. 0x69, 0x22, 0x9a, 0x02, 0x0a, 0x0c, 0x4a, 0x61, 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1230. 0x67, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x5f, 0x70, 0x61,
  1231. 0x63, 0x6b, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6c, 0x69, 0x62,
  1232. 0x72, 0x61, 0x72, 0x79, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x12, 0x5f, 0x0a, 0x13, 0x73,
  1233. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d,
  1234. 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1235. 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4a, 0x61, 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1236. 0x67, 0x73, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4e,
  1237. 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x73, 0x65, 0x72, 0x76, 0x69,
  1238. 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x3a, 0x0a, 0x06,
  1239. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67,
  1240. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1241. 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
  1242. 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x44, 0x0a, 0x16, 0x53, 0x65, 0x72, 0x76,
  1243. 0x69, 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74,
  1244. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1245. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  1246. 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x49,
  1247. 0x0a, 0x0b, 0x43, 0x70, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a,
  1248. 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  1249. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
  1250. 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  1251. 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x49, 0x0a, 0x0b, 0x50, 0x68, 0x70,
  1252. 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d,
  1253. 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1254. 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67,
  1255. 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f,
  1256. 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x4c, 0x0a, 0x0e, 0x50, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x53, 0x65,
  1257. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1258. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1259. 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
  1260. 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d,
  1261. 0x6f, 0x6e, 0x22, 0x4a, 0x0a, 0x0c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1262. 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
  1263. 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1264. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65,
  1265. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xae,
  1266. 0x04, 0x0a, 0x0e, 0x44, 0x6f, 0x74, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  1267. 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
  1268. 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43,
  1269. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1270. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x5a, 0x0a,
  1271. 0x10, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  1272. 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1273. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x6f, 0x74, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69,
  1274. 0x6e, 0x67, 0x73, 0x2e, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69,
  1275. 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65,
  1276. 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x12, 0x5d, 0x0a, 0x11, 0x72, 0x65, 0x6e,
  1277. 0x61, 0x6d, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x03,
  1278. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70,
  1279. 0x69, 0x2e, 0x44, 0x6f, 0x74, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
  1280. 0x2e, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  1281. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x52,
  1282. 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x67, 0x6e, 0x6f,
  1283. 0x72, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x04, 0x20,
  1284. 0x03, 0x28, 0x09, 0x52, 0x10, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f,
  1285. 0x75, 0x72, 0x63, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x18, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x64, 0x5f,
  1286. 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65,
  1287. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x64, 0x4e,
  1288. 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x12,
  1289. 0x35, 0x0a, 0x16, 0x68, 0x61, 0x6e, 0x64, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x5f, 0x73,
  1290. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52,
  1291. 0x15, 0x68, 0x61, 0x6e, 0x64, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x53, 0x69, 0x67, 0x6e,
  1292. 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x1a, 0x42, 0x0a, 0x14, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65,
  1293. 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  1294. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  1295. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1296. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x43, 0x0a, 0x15, 0x52, 0x65,
  1297. 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x45, 0x6e,
  1298. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1299. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  1300. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  1301. 0x4a, 0x0a, 0x0c, 0x52, 0x75, 0x62, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
  1302. 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1303. 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d,
  1304. 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
  1305. 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x48, 0x0a, 0x0a, 0x47,
  1306. 0x6f, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d,
  1307. 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1308. 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e,
  1309. 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63,
  1310. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xc2, 0x03, 0x0a, 0x0e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  1311. 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6c, 0x65,
  1312. 0x63, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6c, 0x65,
  1313. 0x63, 0x74, 0x6f, 0x72, 0x12, 0x49, 0x0a, 0x0c, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6e,
  1314. 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f,
  1315. 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x65,
  1316. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x75, 0x6e, 0x6e, 0x69,
  1317. 0x6e, 0x67, 0x52, 0x0b, 0x6c, 0x6f, 0x6e, 0x67, 0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x12,
  1318. 0x32, 0x0a, 0x15, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65,
  1319. 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x13,
  1320. 0x61, 0x75, 0x74, 0x6f, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x65,
  1321. 0x6c, 0x64, 0x73, 0x1a, 0x94, 0x02, 0x0a, 0x0b, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x75, 0x6e, 0x6e,
  1322. 0x69, 0x6e, 0x67, 0x12, 0x47, 0x0a, 0x12, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x70,
  1323. 0x6f, 0x6c, 0x6c, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1324. 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1325. 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x69, 0x6e, 0x69, 0x74,
  1326. 0x69, 0x61, 0x6c, 0x50, 0x6f, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x32, 0x0a, 0x15,
  1327. 0x70, 0x6f, 0x6c, 0x6c, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69,
  1328. 0x70, 0x6c, 0x69, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x6f, 0x6c,
  1329. 0x6c, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72,
  1330. 0x12, 0x3f, 0x0a, 0x0e, 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x5f, 0x64, 0x65, 0x6c,
  1331. 0x61, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1332. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74,
  1333. 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x50, 0x6f, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x61,
  1334. 0x79, 0x12, 0x47, 0x0a, 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x5f,
  1335. 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e,
  1336. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1337. 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50,
  1338. 0x6f, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x2a, 0xa3, 0x01, 0x0a, 0x19, 0x43,
  1339. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x4f, 0x72, 0x67, 0x61,
  1340. 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x27, 0x43, 0x4c, 0x49, 0x45,
  1341. 0x4e, 0x54, 0x5f, 0x4c, 0x49, 0x42, 0x52, 0x41, 0x52, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x41, 0x4e,
  1342. 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
  1343. 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x01,
  1344. 0x12, 0x07, 0x0a, 0x03, 0x41, 0x44, 0x53, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x48, 0x4f,
  1345. 0x54, 0x4f, 0x53, 0x10, 0x03, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x54, 0x52, 0x45, 0x45, 0x54, 0x5f,
  1346. 0x56, 0x49, 0x45, 0x57, 0x10, 0x04, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x4f, 0x50, 0x50, 0x49,
  1347. 0x4e, 0x47, 0x10, 0x05, 0x12, 0x07, 0x0a, 0x03, 0x47, 0x45, 0x4f, 0x10, 0x06, 0x12, 0x11, 0x0a,
  1348. 0x0d, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x41, 0x49, 0x10, 0x07,
  1349. 0x2a, 0x67, 0x0a, 0x18, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72,
  1350. 0x79, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x26,
  1351. 0x43, 0x4c, 0x49, 0x45, 0x4e, 0x54, 0x5f, 0x4c, 0x49, 0x42, 0x52, 0x41, 0x52, 0x59, 0x5f, 0x44,
  1352. 0x45, 0x53, 0x54, 0x49, 0x4e, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
  1353. 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x47, 0x49, 0x54, 0x48,
  1354. 0x55, 0x42, 0x10, 0x0a, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x41, 0x43, 0x4b, 0x41, 0x47, 0x45, 0x5f,
  1355. 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x52, 0x10, 0x14, 0x3a, 0x4a, 0x0a, 0x10, 0x6d, 0x65, 0x74,
  1356. 0x68, 0x6f, 0x64, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1e, 0x2e,
  1357. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1358. 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x9b, 0x08,
  1359. 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x69, 0x67, 0x6e,
  1360. 0x61, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x43, 0x0a, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  1361. 0x5f, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1362. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4f,
  1363. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x99, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
  1364. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x48, 0x6f, 0x73, 0x74, 0x3a, 0x43, 0x0a, 0x0c, 0x6f, 0x61,
  1365. 0x75, 0x74, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f,
  1366. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x65, 0x72,
  1367. 0x76, 0x69, 0x63, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x9a, 0x08, 0x20, 0x01,
  1368. 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x61, 0x75, 0x74, 0x68, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x42,
  1369. 0x69, 0x0a, 0x0e, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70,
  1370. 0x69, 0x42, 0x0b, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
  1371. 0x5a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
  1372. 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
  1373. 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f,
  1374. 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
  1375. 0x6f, 0x6e, 0x73, 0xa2, 0x02, 0x04, 0x47, 0x41, 0x50, 0x49, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  1376. 0x6f, 0x33,
  1377. }
  1378. var (
  1379. file_google_api_client_proto_rawDescOnce sync.Once
  1380. file_google_api_client_proto_rawDescData = file_google_api_client_proto_rawDesc
  1381. )
  1382. func file_google_api_client_proto_rawDescGZIP() []byte {
  1383. file_google_api_client_proto_rawDescOnce.Do(func() {
  1384. file_google_api_client_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_api_client_proto_rawDescData)
  1385. })
  1386. return file_google_api_client_proto_rawDescData
  1387. }
  1388. var file_google_api_client_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
  1389. var file_google_api_client_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
  1390. var file_google_api_client_proto_goTypes = []interface{}{
  1391. (ClientLibraryOrganization)(0), // 0: google.api.ClientLibraryOrganization
  1392. (ClientLibraryDestination)(0), // 1: google.api.ClientLibraryDestination
  1393. (*CommonLanguageSettings)(nil), // 2: google.api.CommonLanguageSettings
  1394. (*ClientLibrarySettings)(nil), // 3: google.api.ClientLibrarySettings
  1395. (*Publishing)(nil), // 4: google.api.Publishing
  1396. (*JavaSettings)(nil), // 5: google.api.JavaSettings
  1397. (*CppSettings)(nil), // 6: google.api.CppSettings
  1398. (*PhpSettings)(nil), // 7: google.api.PhpSettings
  1399. (*PythonSettings)(nil), // 8: google.api.PythonSettings
  1400. (*NodeSettings)(nil), // 9: google.api.NodeSettings
  1401. (*DotnetSettings)(nil), // 10: google.api.DotnetSettings
  1402. (*RubySettings)(nil), // 11: google.api.RubySettings
  1403. (*GoSettings)(nil), // 12: google.api.GoSettings
  1404. (*MethodSettings)(nil), // 13: google.api.MethodSettings
  1405. nil, // 14: google.api.JavaSettings.ServiceClassNamesEntry
  1406. nil, // 15: google.api.DotnetSettings.RenamedServicesEntry
  1407. nil, // 16: google.api.DotnetSettings.RenamedResourcesEntry
  1408. (*MethodSettings_LongRunning)(nil), // 17: google.api.MethodSettings.LongRunning
  1409. (api.LaunchStage)(0), // 18: google.api.LaunchStage
  1410. (*durationpb.Duration)(nil), // 19: google.protobuf.Duration
  1411. (*descriptorpb.MethodOptions)(nil), // 20: google.protobuf.MethodOptions
  1412. (*descriptorpb.ServiceOptions)(nil), // 21: google.protobuf.ServiceOptions
  1413. }
  1414. var file_google_api_client_proto_depIdxs = []int32{
  1415. 1, // 0: google.api.CommonLanguageSettings.destinations:type_name -> google.api.ClientLibraryDestination
  1416. 18, // 1: google.api.ClientLibrarySettings.launch_stage:type_name -> google.api.LaunchStage
  1417. 5, // 2: google.api.ClientLibrarySettings.java_settings:type_name -> google.api.JavaSettings
  1418. 6, // 3: google.api.ClientLibrarySettings.cpp_settings:type_name -> google.api.CppSettings
  1419. 7, // 4: google.api.ClientLibrarySettings.php_settings:type_name -> google.api.PhpSettings
  1420. 8, // 5: google.api.ClientLibrarySettings.python_settings:type_name -> google.api.PythonSettings
  1421. 9, // 6: google.api.ClientLibrarySettings.node_settings:type_name -> google.api.NodeSettings
  1422. 10, // 7: google.api.ClientLibrarySettings.dotnet_settings:type_name -> google.api.DotnetSettings
  1423. 11, // 8: google.api.ClientLibrarySettings.ruby_settings:type_name -> google.api.RubySettings
  1424. 12, // 9: google.api.ClientLibrarySettings.go_settings:type_name -> google.api.GoSettings
  1425. 13, // 10: google.api.Publishing.method_settings:type_name -> google.api.MethodSettings
  1426. 0, // 11: google.api.Publishing.organization:type_name -> google.api.ClientLibraryOrganization
  1427. 3, // 12: google.api.Publishing.library_settings:type_name -> google.api.ClientLibrarySettings
  1428. 14, // 13: google.api.JavaSettings.service_class_names:type_name -> google.api.JavaSettings.ServiceClassNamesEntry
  1429. 2, // 14: google.api.JavaSettings.common:type_name -> google.api.CommonLanguageSettings
  1430. 2, // 15: google.api.CppSettings.common:type_name -> google.api.CommonLanguageSettings
  1431. 2, // 16: google.api.PhpSettings.common:type_name -> google.api.CommonLanguageSettings
  1432. 2, // 17: google.api.PythonSettings.common:type_name -> google.api.CommonLanguageSettings
  1433. 2, // 18: google.api.NodeSettings.common:type_name -> google.api.CommonLanguageSettings
  1434. 2, // 19: google.api.DotnetSettings.common:type_name -> google.api.CommonLanguageSettings
  1435. 15, // 20: google.api.DotnetSettings.renamed_services:type_name -> google.api.DotnetSettings.RenamedServicesEntry
  1436. 16, // 21: google.api.DotnetSettings.renamed_resources:type_name -> google.api.DotnetSettings.RenamedResourcesEntry
  1437. 2, // 22: google.api.RubySettings.common:type_name -> google.api.CommonLanguageSettings
  1438. 2, // 23: google.api.GoSettings.common:type_name -> google.api.CommonLanguageSettings
  1439. 17, // 24: google.api.MethodSettings.long_running:type_name -> google.api.MethodSettings.LongRunning
  1440. 19, // 25: google.api.MethodSettings.LongRunning.initial_poll_delay:type_name -> google.protobuf.Duration
  1441. 19, // 26: google.api.MethodSettings.LongRunning.max_poll_delay:type_name -> google.protobuf.Duration
  1442. 19, // 27: google.api.MethodSettings.LongRunning.total_poll_timeout:type_name -> google.protobuf.Duration
  1443. 20, // 28: google.api.method_signature:extendee -> google.protobuf.MethodOptions
  1444. 21, // 29: google.api.default_host:extendee -> google.protobuf.ServiceOptions
  1445. 21, // 30: google.api.oauth_scopes:extendee -> google.protobuf.ServiceOptions
  1446. 31, // [31:31] is the sub-list for method output_type
  1447. 31, // [31:31] is the sub-list for method input_type
  1448. 31, // [31:31] is the sub-list for extension type_name
  1449. 28, // [28:31] is the sub-list for extension extendee
  1450. 0, // [0:28] is the sub-list for field type_name
  1451. }
  1452. func init() { file_google_api_client_proto_init() }
  1453. func file_google_api_client_proto_init() {
  1454. if File_google_api_client_proto != nil {
  1455. return
  1456. }
  1457. if !protoimpl.UnsafeEnabled {
  1458. file_google_api_client_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1459. switch v := v.(*CommonLanguageSettings); i {
  1460. case 0:
  1461. return &v.state
  1462. case 1:
  1463. return &v.sizeCache
  1464. case 2:
  1465. return &v.unknownFields
  1466. default:
  1467. return nil
  1468. }
  1469. }
  1470. file_google_api_client_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1471. switch v := v.(*ClientLibrarySettings); i {
  1472. case 0:
  1473. return &v.state
  1474. case 1:
  1475. return &v.sizeCache
  1476. case 2:
  1477. return &v.unknownFields
  1478. default:
  1479. return nil
  1480. }
  1481. }
  1482. file_google_api_client_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1483. switch v := v.(*Publishing); i {
  1484. case 0:
  1485. return &v.state
  1486. case 1:
  1487. return &v.sizeCache
  1488. case 2:
  1489. return &v.unknownFields
  1490. default:
  1491. return nil
  1492. }
  1493. }
  1494. file_google_api_client_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1495. switch v := v.(*JavaSettings); i {
  1496. case 0:
  1497. return &v.state
  1498. case 1:
  1499. return &v.sizeCache
  1500. case 2:
  1501. return &v.unknownFields
  1502. default:
  1503. return nil
  1504. }
  1505. }
  1506. file_google_api_client_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1507. switch v := v.(*CppSettings); i {
  1508. case 0:
  1509. return &v.state
  1510. case 1:
  1511. return &v.sizeCache
  1512. case 2:
  1513. return &v.unknownFields
  1514. default:
  1515. return nil
  1516. }
  1517. }
  1518. file_google_api_client_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1519. switch v := v.(*PhpSettings); i {
  1520. case 0:
  1521. return &v.state
  1522. case 1:
  1523. return &v.sizeCache
  1524. case 2:
  1525. return &v.unknownFields
  1526. default:
  1527. return nil
  1528. }
  1529. }
  1530. file_google_api_client_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1531. switch v := v.(*PythonSettings); i {
  1532. case 0:
  1533. return &v.state
  1534. case 1:
  1535. return &v.sizeCache
  1536. case 2:
  1537. return &v.unknownFields
  1538. default:
  1539. return nil
  1540. }
  1541. }
  1542. file_google_api_client_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1543. switch v := v.(*NodeSettings); i {
  1544. case 0:
  1545. return &v.state
  1546. case 1:
  1547. return &v.sizeCache
  1548. case 2:
  1549. return &v.unknownFields
  1550. default:
  1551. return nil
  1552. }
  1553. }
  1554. file_google_api_client_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1555. switch v := v.(*DotnetSettings); i {
  1556. case 0:
  1557. return &v.state
  1558. case 1:
  1559. return &v.sizeCache
  1560. case 2:
  1561. return &v.unknownFields
  1562. default:
  1563. return nil
  1564. }
  1565. }
  1566. file_google_api_client_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1567. switch v := v.(*RubySettings); i {
  1568. case 0:
  1569. return &v.state
  1570. case 1:
  1571. return &v.sizeCache
  1572. case 2:
  1573. return &v.unknownFields
  1574. default:
  1575. return nil
  1576. }
  1577. }
  1578. file_google_api_client_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1579. switch v := v.(*GoSettings); i {
  1580. case 0:
  1581. return &v.state
  1582. case 1:
  1583. return &v.sizeCache
  1584. case 2:
  1585. return &v.unknownFields
  1586. default:
  1587. return nil
  1588. }
  1589. }
  1590. file_google_api_client_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1591. switch v := v.(*MethodSettings); i {
  1592. case 0:
  1593. return &v.state
  1594. case 1:
  1595. return &v.sizeCache
  1596. case 2:
  1597. return &v.unknownFields
  1598. default:
  1599. return nil
  1600. }
  1601. }
  1602. file_google_api_client_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1603. switch v := v.(*MethodSettings_LongRunning); i {
  1604. case 0:
  1605. return &v.state
  1606. case 1:
  1607. return &v.sizeCache
  1608. case 2:
  1609. return &v.unknownFields
  1610. default:
  1611. return nil
  1612. }
  1613. }
  1614. }
  1615. type x struct{}
  1616. out := protoimpl.TypeBuilder{
  1617. File: protoimpl.DescBuilder{
  1618. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1619. RawDescriptor: file_google_api_client_proto_rawDesc,
  1620. NumEnums: 2,
  1621. NumMessages: 16,
  1622. NumExtensions: 3,
  1623. NumServices: 0,
  1624. },
  1625. GoTypes: file_google_api_client_proto_goTypes,
  1626. DependencyIndexes: file_google_api_client_proto_depIdxs,
  1627. EnumInfos: file_google_api_client_proto_enumTypes,
  1628. MessageInfos: file_google_api_client_proto_msgTypes,
  1629. ExtensionInfos: file_google_api_client_proto_extTypes,
  1630. }.Build()
  1631. File_google_api_client_proto = out.File
  1632. file_google_api_client_proto_rawDesc = nil
  1633. file_google_api_client_proto_goTypes = nil
  1634. file_google_api_client_proto_depIdxs = nil
  1635. }