client.pb.go 72 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780
  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 v3.21.12
  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. }
  897. func (x *MethodSettings) Reset() {
  898. *x = MethodSettings{}
  899. if protoimpl.UnsafeEnabled {
  900. mi := &file_google_api_client_proto_msgTypes[11]
  901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  902. ms.StoreMessageInfo(mi)
  903. }
  904. }
  905. func (x *MethodSettings) String() string {
  906. return protoimpl.X.MessageStringOf(x)
  907. }
  908. func (*MethodSettings) ProtoMessage() {}
  909. func (x *MethodSettings) ProtoReflect() protoreflect.Message {
  910. mi := &file_google_api_client_proto_msgTypes[11]
  911. if protoimpl.UnsafeEnabled && x != nil {
  912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  913. if ms.LoadMessageInfo() == nil {
  914. ms.StoreMessageInfo(mi)
  915. }
  916. return ms
  917. }
  918. return mi.MessageOf(x)
  919. }
  920. // Deprecated: Use MethodSettings.ProtoReflect.Descriptor instead.
  921. func (*MethodSettings) Descriptor() ([]byte, []int) {
  922. return file_google_api_client_proto_rawDescGZIP(), []int{11}
  923. }
  924. func (x *MethodSettings) GetSelector() string {
  925. if x != nil {
  926. return x.Selector
  927. }
  928. return ""
  929. }
  930. func (x *MethodSettings) GetLongRunning() *MethodSettings_LongRunning {
  931. if x != nil {
  932. return x.LongRunning
  933. }
  934. return nil
  935. }
  936. // Describes settings to use when generating API methods that use the
  937. // long-running operation pattern.
  938. // All default values below are from those used in the client library
  939. // generators (e.g.
  940. // [Java](https://github.com/googleapis/gapic-generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
  941. type MethodSettings_LongRunning struct {
  942. state protoimpl.MessageState
  943. sizeCache protoimpl.SizeCache
  944. unknownFields protoimpl.UnknownFields
  945. // Initial delay after which the first poll request will be made.
  946. // Default value: 5 seconds.
  947. InitialPollDelay *durationpb.Duration `protobuf:"bytes,1,opt,name=initial_poll_delay,json=initialPollDelay,proto3" json:"initial_poll_delay,omitempty"`
  948. // Multiplier to gradually increase delay between subsequent polls until it
  949. // reaches max_poll_delay.
  950. // Default value: 1.5.
  951. PollDelayMultiplier float32 `protobuf:"fixed32,2,opt,name=poll_delay_multiplier,json=pollDelayMultiplier,proto3" json:"poll_delay_multiplier,omitempty"`
  952. // Maximum time between two subsequent poll requests.
  953. // Default value: 45 seconds.
  954. MaxPollDelay *durationpb.Duration `protobuf:"bytes,3,opt,name=max_poll_delay,json=maxPollDelay,proto3" json:"max_poll_delay,omitempty"`
  955. // Total polling timeout.
  956. // Default value: 5 minutes.
  957. TotalPollTimeout *durationpb.Duration `protobuf:"bytes,4,opt,name=total_poll_timeout,json=totalPollTimeout,proto3" json:"total_poll_timeout,omitempty"`
  958. }
  959. func (x *MethodSettings_LongRunning) Reset() {
  960. *x = MethodSettings_LongRunning{}
  961. if protoimpl.UnsafeEnabled {
  962. mi := &file_google_api_client_proto_msgTypes[15]
  963. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  964. ms.StoreMessageInfo(mi)
  965. }
  966. }
  967. func (x *MethodSettings_LongRunning) String() string {
  968. return protoimpl.X.MessageStringOf(x)
  969. }
  970. func (*MethodSettings_LongRunning) ProtoMessage() {}
  971. func (x *MethodSettings_LongRunning) ProtoReflect() protoreflect.Message {
  972. mi := &file_google_api_client_proto_msgTypes[15]
  973. if protoimpl.UnsafeEnabled && x != nil {
  974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  975. if ms.LoadMessageInfo() == nil {
  976. ms.StoreMessageInfo(mi)
  977. }
  978. return ms
  979. }
  980. return mi.MessageOf(x)
  981. }
  982. // Deprecated: Use MethodSettings_LongRunning.ProtoReflect.Descriptor instead.
  983. func (*MethodSettings_LongRunning) Descriptor() ([]byte, []int) {
  984. return file_google_api_client_proto_rawDescGZIP(), []int{11, 0}
  985. }
  986. func (x *MethodSettings_LongRunning) GetInitialPollDelay() *durationpb.Duration {
  987. if x != nil {
  988. return x.InitialPollDelay
  989. }
  990. return nil
  991. }
  992. func (x *MethodSettings_LongRunning) GetPollDelayMultiplier() float32 {
  993. if x != nil {
  994. return x.PollDelayMultiplier
  995. }
  996. return 0
  997. }
  998. func (x *MethodSettings_LongRunning) GetMaxPollDelay() *durationpb.Duration {
  999. if x != nil {
  1000. return x.MaxPollDelay
  1001. }
  1002. return nil
  1003. }
  1004. func (x *MethodSettings_LongRunning) GetTotalPollTimeout() *durationpb.Duration {
  1005. if x != nil {
  1006. return x.TotalPollTimeout
  1007. }
  1008. return nil
  1009. }
  1010. var file_google_api_client_proto_extTypes = []protoimpl.ExtensionInfo{
  1011. {
  1012. ExtendedType: (*descriptorpb.MethodOptions)(nil),
  1013. ExtensionType: ([]string)(nil),
  1014. Field: 1051,
  1015. Name: "google.api.method_signature",
  1016. Tag: "bytes,1051,rep,name=method_signature",
  1017. Filename: "google/api/client.proto",
  1018. },
  1019. {
  1020. ExtendedType: (*descriptorpb.ServiceOptions)(nil),
  1021. ExtensionType: (*string)(nil),
  1022. Field: 1049,
  1023. Name: "google.api.default_host",
  1024. Tag: "bytes,1049,opt,name=default_host",
  1025. Filename: "google/api/client.proto",
  1026. },
  1027. {
  1028. ExtendedType: (*descriptorpb.ServiceOptions)(nil),
  1029. ExtensionType: (*string)(nil),
  1030. Field: 1050,
  1031. Name: "google.api.oauth_scopes",
  1032. Tag: "bytes,1050,opt,name=oauth_scopes",
  1033. Filename: "google/api/client.proto",
  1034. },
  1035. }
  1036. // Extension fields to descriptorpb.MethodOptions.
  1037. var (
  1038. // A definition of a client library method signature.
  1039. //
  1040. // In client libraries, each proto RPC corresponds to one or more methods
  1041. // which the end user is able to call, and calls the underlying RPC.
  1042. // Normally, this method receives a single argument (a struct or instance
  1043. // corresponding to the RPC request object). Defining this field will
  1044. // add one or more overloads providing flattened or simpler method signatures
  1045. // in some languages.
  1046. //
  1047. // The fields on the method signature are provided as a comma-separated
  1048. // string.
  1049. //
  1050. // For example, the proto RPC and annotation:
  1051. //
  1052. // rpc CreateSubscription(CreateSubscriptionRequest)
  1053. // returns (Subscription) {
  1054. // option (google.api.method_signature) = "name,topic";
  1055. // }
  1056. //
  1057. // Would add the following Java overload (in addition to the method accepting
  1058. // the request object):
  1059. //
  1060. // public final Subscription createSubscription(String name, String topic)
  1061. //
  1062. // The following backwards-compatibility guidelines apply:
  1063. //
  1064. // - Adding this annotation to an unannotated method is backwards
  1065. // compatible.
  1066. // - Adding this annotation to a method which already has existing
  1067. // method signature annotations is backwards compatible if and only if
  1068. // the new method signature annotation is last in the sequence.
  1069. // - Modifying or removing an existing method signature annotation is
  1070. // a breaking change.
  1071. // - Re-ordering existing method signature annotations is a breaking
  1072. // change.
  1073. //
  1074. // repeated string method_signature = 1051;
  1075. E_MethodSignature = &file_google_api_client_proto_extTypes[0]
  1076. )
  1077. // Extension fields to descriptorpb.ServiceOptions.
  1078. var (
  1079. // The hostname for this service.
  1080. // This should be specified with no prefix or protocol.
  1081. //
  1082. // Example:
  1083. //
  1084. // service Foo {
  1085. // option (google.api.default_host) = "foo.googleapi.com";
  1086. // ...
  1087. // }
  1088. //
  1089. // optional string default_host = 1049;
  1090. E_DefaultHost = &file_google_api_client_proto_extTypes[1]
  1091. // OAuth scopes needed for the client.
  1092. //
  1093. // Example:
  1094. //
  1095. // service Foo {
  1096. // option (google.api.oauth_scopes) = \
  1097. // "https://www.googleapis.com/auth/cloud-platform";
  1098. // ...
  1099. // }
  1100. //
  1101. // If there is more than one scope, use a comma-separated string:
  1102. //
  1103. // Example:
  1104. //
  1105. // service Foo {
  1106. // option (google.api.oauth_scopes) = \
  1107. // "https://www.googleapis.com/auth/cloud-platform,"
  1108. // "https://www.googleapis.com/auth/monitoring";
  1109. // ...
  1110. // }
  1111. //
  1112. // optional string oauth_scopes = 1050;
  1113. E_OauthScopes = &file_google_api_client_proto_extTypes[2]
  1114. )
  1115. var File_google_api_client_proto protoreflect.FileDescriptor
  1116. var file_google_api_client_proto_rawDesc = []byte{
  1117. 0x0a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69,
  1118. 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1119. 0x65, 0x2e, 0x61, 0x70, 0x69, 0x1a, 0x1d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
  1120. 0x69, 0x2f, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x5f, 0x73, 0x74, 0x61, 0x67, 0x65, 0x2e, 0x70,
  1121. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1122. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72,
  1123. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
  1124. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1125. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x94, 0x01, 0x0a, 0x16, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
  1126. 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  1127. 0x73, 0x12, 0x30, 0x0a, 0x12, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64,
  1128. 0x6f, 0x63, 0x73, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18,
  1129. 0x01, 0x52, 0x10, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x6f, 0x63, 0x73,
  1130. 0x55, 0x72, 0x69, 0x12, 0x48, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69,
  1131. 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1132. 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62,
  1133. 0x72, 0x61, 0x72, 0x79, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  1134. 0x0c, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x93, 0x05,
  1135. 0x0a, 0x15, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x53,
  1136. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  1137. 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  1138. 0x6e, 0x12, 0x3a, 0x0a, 0x0c, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x5f, 0x73, 0x74, 0x61, 0x67,
  1139. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1140. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x74, 0x61, 0x67, 0x65,
  1141. 0x52, 0x0b, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x74, 0x61, 0x67, 0x65, 0x12, 0x2c, 0x0a,
  1142. 0x12, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x5f, 0x65, 0x6e,
  1143. 0x75, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x72, 0x65, 0x73, 0x74, 0x4e,
  1144. 0x75, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x6a,
  1145. 0x61, 0x76, 0x61, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x15, 0x20, 0x01,
  1146. 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1147. 0x4a, 0x61, 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0c, 0x6a, 0x61,
  1148. 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x63, 0x70,
  1149. 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b,
  1150. 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x70,
  1151. 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0b, 0x63, 0x70, 0x70, 0x53, 0x65,
  1152. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x70, 0x68, 0x70, 0x5f, 0x73, 0x65,
  1153. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67,
  1154. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x50, 0x68, 0x70, 0x53, 0x65, 0x74,
  1155. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0b, 0x70, 0x68, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1156. 0x67, 0x73, 0x12, 0x43, 0x0a, 0x0f, 0x70, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74,
  1157. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
  1158. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x50, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x53,
  1159. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x70, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x53,
  1160. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x5f,
  1161. 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18,
  1162. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4e, 0x6f, 0x64, 0x65,
  1163. 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x53, 0x65,
  1164. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x43, 0x0a, 0x0f, 0x64, 0x6f, 0x74, 0x6e, 0x65, 0x74,
  1165. 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1166. 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x6f, 0x74,
  1167. 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x64, 0x6f, 0x74,
  1168. 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x72,
  1169. 0x75, 0x62, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x1b, 0x20, 0x01,
  1170. 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1171. 0x52, 0x75, 0x62, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0c, 0x72, 0x75,
  1172. 0x62, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x37, 0x0a, 0x0b, 0x67, 0x6f,
  1173. 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1174. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x47, 0x6f, 0x53,
  1175. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0a, 0x67, 0x6f, 0x53, 0x65, 0x74, 0x74, 0x69,
  1176. 0x6e, 0x67, 0x73, 0x22, 0xab, 0x04, 0x0a, 0x0a, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x69,
  1177. 0x6e, 0x67, 0x12, 0x43, 0x0a, 0x0f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x73, 0x65, 0x74,
  1178. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
  1179. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53,
  1180. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53,
  1181. 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x6e, 0x65, 0x77, 0x5f, 0x69,
  1182. 0x73, 0x73, 0x75, 0x65, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x65, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  1183. 0x6e, 0x65, 0x77, 0x49, 0x73, 0x73, 0x75, 0x65, 0x55, 0x72, 0x69, 0x12, 0x2b, 0x0a, 0x11, 0x64,
  1184. 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x72, 0x69,
  1185. 0x18, 0x66, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
  1186. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x69, 0x12, 0x24, 0x0a, 0x0e, 0x61, 0x70, 0x69, 0x5f,
  1187. 0x73, 0x68, 0x6f, 0x72, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x67, 0x20, 0x01, 0x28, 0x09,
  1188. 0x52, 0x0c, 0x61, 0x70, 0x69, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21,
  1189. 0x0a, 0x0c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x68,
  1190. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x4c, 0x61, 0x62, 0x65,
  1191. 0x6c, 0x12, 0x34, 0x0a, 0x16, 0x63, 0x6f, 0x64, 0x65, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x67,
  1192. 0x69, 0x74, 0x68, 0x75, 0x62, 0x5f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x69, 0x20, 0x03, 0x28,
  1193. 0x09, 0x52, 0x14, 0x63, 0x6f, 0x64, 0x65, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x47, 0x69, 0x74, 0x68,
  1194. 0x75, 0x62, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x64, 0x6f, 0x63, 0x5f, 0x74,
  1195. 0x61, 0x67, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x18, 0x6a, 0x20, 0x01, 0x28, 0x09, 0x52,
  1196. 0x0c, 0x64, 0x6f, 0x63, 0x54, 0x61, 0x67, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x12, 0x49, 0x0a,
  1197. 0x0c, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x6b, 0x20,
  1198. 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69,
  1199. 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x4f, 0x72,
  1200. 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x6f, 0x72, 0x67, 0x61,
  1201. 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x10, 0x6c, 0x69, 0x62, 0x72,
  1202. 0x61, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x6d, 0x20, 0x03,
  1203. 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1204. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x53, 0x65, 0x74,
  1205. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0f, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x53, 0x65,
  1206. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x49, 0x0a, 0x21, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f,
  1207. 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
  1208. 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x6e, 0x20, 0x01, 0x28,
  1209. 0x09, 0x52, 0x1e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
  1210. 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72,
  1211. 0x69, 0x22, 0x9a, 0x02, 0x0a, 0x0c, 0x4a, 0x61, 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1212. 0x67, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x5f, 0x70, 0x61,
  1213. 0x63, 0x6b, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6c, 0x69, 0x62,
  1214. 0x72, 0x61, 0x72, 0x79, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x12, 0x5f, 0x0a, 0x13, 0x73,
  1215. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d,
  1216. 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1217. 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4a, 0x61, 0x76, 0x61, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1218. 0x67, 0x73, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4e,
  1219. 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x73, 0x65, 0x72, 0x76, 0x69,
  1220. 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x3a, 0x0a, 0x06,
  1221. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67,
  1222. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1223. 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
  1224. 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x44, 0x0a, 0x16, 0x53, 0x65, 0x72, 0x76,
  1225. 0x69, 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74,
  1226. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1227. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  1228. 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x49,
  1229. 0x0a, 0x0b, 0x43, 0x70, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a,
  1230. 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  1231. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
  1232. 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  1233. 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x49, 0x0a, 0x0b, 0x50, 0x68, 0x70,
  1234. 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d,
  1235. 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1236. 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67,
  1237. 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f,
  1238. 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x4c, 0x0a, 0x0e, 0x50, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x53, 0x65,
  1239. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1240. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1241. 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
  1242. 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d,
  1243. 0x6f, 0x6e, 0x22, 0x4a, 0x0a, 0x0c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  1244. 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
  1245. 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1246. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65,
  1247. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xae,
  1248. 0x04, 0x0a, 0x0e, 0x44, 0x6f, 0x74, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  1249. 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
  1250. 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43,
  1251. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1252. 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x5a, 0x0a,
  1253. 0x10, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  1254. 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1255. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x6f, 0x74, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69,
  1256. 0x6e, 0x67, 0x73, 0x2e, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69,
  1257. 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65,
  1258. 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x12, 0x5d, 0x0a, 0x11, 0x72, 0x65, 0x6e,
  1259. 0x61, 0x6d, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x03,
  1260. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70,
  1261. 0x69, 0x2e, 0x44, 0x6f, 0x74, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
  1262. 0x2e, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  1263. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x52,
  1264. 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x67, 0x6e, 0x6f,
  1265. 0x72, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x04, 0x20,
  1266. 0x03, 0x28, 0x09, 0x52, 0x10, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f,
  1267. 0x75, 0x72, 0x63, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x18, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x64, 0x5f,
  1268. 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65,
  1269. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x64, 0x4e,
  1270. 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x12,
  1271. 0x35, 0x0a, 0x16, 0x68, 0x61, 0x6e, 0x64, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x5f, 0x73,
  1272. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52,
  1273. 0x15, 0x68, 0x61, 0x6e, 0x64, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x53, 0x69, 0x67, 0x6e,
  1274. 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x1a, 0x42, 0x0a, 0x14, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65,
  1275. 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  1276. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  1277. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1278. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x43, 0x0a, 0x15, 0x52, 0x65,
  1279. 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x45, 0x6e,
  1280. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1281. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  1282. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  1283. 0x4a, 0x0a, 0x0c, 0x52, 0x75, 0x62, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
  1284. 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1285. 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d,
  1286. 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
  1287. 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x48, 0x0a, 0x0a, 0x47,
  1288. 0x6f, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x63, 0x6f, 0x6d,
  1289. 0x6d, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1290. 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4c, 0x61, 0x6e,
  1291. 0x67, 0x75, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x06, 0x63,
  1292. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x8e, 0x03, 0x0a, 0x0e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  1293. 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6c, 0x65,
  1294. 0x63, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6c, 0x65,
  1295. 0x63, 0x74, 0x6f, 0x72, 0x12, 0x49, 0x0a, 0x0c, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6e,
  1296. 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f,
  1297. 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x65,
  1298. 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x75, 0x6e, 0x6e, 0x69,
  1299. 0x6e, 0x67, 0x52, 0x0b, 0x6c, 0x6f, 0x6e, 0x67, 0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x1a,
  1300. 0x94, 0x02, 0x0a, 0x0b, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x12,
  1301. 0x47, 0x0a, 0x12, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x5f,
  1302. 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f,
  1303. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75,
  1304. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x50,
  1305. 0x6f, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x32, 0x0a, 0x15, 0x70, 0x6f, 0x6c, 0x6c,
  1306. 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65,
  1307. 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x6f, 0x6c, 0x6c, 0x44, 0x65, 0x6c,
  1308. 0x61, 0x79, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x12, 0x3f, 0x0a, 0x0e,
  1309. 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x03,
  1310. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1311. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  1312. 0x0c, 0x6d, 0x61, 0x78, 0x50, 0x6f, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x47, 0x0a,
  1313. 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  1314. 0x6f, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1315. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61,
  1316. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x6f, 0x6c, 0x6c, 0x54,
  1317. 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x2a, 0xa3, 0x01, 0x0a, 0x19, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  1318. 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
  1319. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x27, 0x43, 0x4c, 0x49, 0x45, 0x4e, 0x54, 0x5f, 0x4c,
  1320. 0x49, 0x42, 0x52, 0x41, 0x52, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x41, 0x4e, 0x49, 0x5a, 0x41, 0x54,
  1321. 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
  1322. 0x00, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03,
  1323. 0x41, 0x44, 0x53, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x48, 0x4f, 0x54, 0x4f, 0x53, 0x10,
  1324. 0x03, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x54, 0x52, 0x45, 0x45, 0x54, 0x5f, 0x56, 0x49, 0x45, 0x57,
  1325. 0x10, 0x04, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x4f, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x10, 0x05,
  1326. 0x12, 0x07, 0x0a, 0x03, 0x47, 0x45, 0x4f, 0x10, 0x06, 0x12, 0x11, 0x0a, 0x0d, 0x47, 0x45, 0x4e,
  1327. 0x45, 0x52, 0x41, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x41, 0x49, 0x10, 0x07, 0x2a, 0x67, 0x0a, 0x18,
  1328. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x44, 0x65, 0x73,
  1329. 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x26, 0x43, 0x4c, 0x49, 0x45,
  1330. 0x4e, 0x54, 0x5f, 0x4c, 0x49, 0x42, 0x52, 0x41, 0x52, 0x59, 0x5f, 0x44, 0x45, 0x53, 0x54, 0x49,
  1331. 0x4e, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
  1332. 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x47, 0x49, 0x54, 0x48, 0x55, 0x42, 0x10, 0x0a,
  1333. 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x41, 0x43, 0x4b, 0x41, 0x47, 0x45, 0x5f, 0x4d, 0x41, 0x4e, 0x41,
  1334. 0x47, 0x45, 0x52, 0x10, 0x14, 0x3a, 0x4a, 0x0a, 0x10, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f,
  1335. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1336. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x74, 0x68,
  1337. 0x6f, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x9b, 0x08, 0x20, 0x03, 0x28, 0x09,
  1338. 0x52, 0x0f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  1339. 0x65, 0x3a, 0x43, 0x0a, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x68, 0x6f, 0x73,
  1340. 0x74, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1341. 0x62, 0x75, 0x66, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f,
  1342. 0x6e, 0x73, 0x18, 0x99, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61, 0x75,
  1343. 0x6c, 0x74, 0x48, 0x6f, 0x73, 0x74, 0x3a, 0x43, 0x0a, 0x0c, 0x6f, 0x61, 0x75, 0x74, 0x68, 0x5f,
  1344. 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1345. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  1346. 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x9a, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  1347. 0x6f, 0x61, 0x75, 0x74, 0x68, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x42, 0x69, 0x0a, 0x0e, 0x63,
  1348. 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x42, 0x0b, 0x43,
  1349. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x41, 0x67, 0x6f,
  1350. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
  1351. 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
  1352. 0x70, 0x69, 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
  1353. 0x6f, 0x6e, 0x73, 0x3b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0xa2,
  1354. 0x02, 0x04, 0x47, 0x41, 0x50, 0x49, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1355. }
  1356. var (
  1357. file_google_api_client_proto_rawDescOnce sync.Once
  1358. file_google_api_client_proto_rawDescData = file_google_api_client_proto_rawDesc
  1359. )
  1360. func file_google_api_client_proto_rawDescGZIP() []byte {
  1361. file_google_api_client_proto_rawDescOnce.Do(func() {
  1362. file_google_api_client_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_api_client_proto_rawDescData)
  1363. })
  1364. return file_google_api_client_proto_rawDescData
  1365. }
  1366. var file_google_api_client_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
  1367. var file_google_api_client_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
  1368. var file_google_api_client_proto_goTypes = []interface{}{
  1369. (ClientLibraryOrganization)(0), // 0: google.api.ClientLibraryOrganization
  1370. (ClientLibraryDestination)(0), // 1: google.api.ClientLibraryDestination
  1371. (*CommonLanguageSettings)(nil), // 2: google.api.CommonLanguageSettings
  1372. (*ClientLibrarySettings)(nil), // 3: google.api.ClientLibrarySettings
  1373. (*Publishing)(nil), // 4: google.api.Publishing
  1374. (*JavaSettings)(nil), // 5: google.api.JavaSettings
  1375. (*CppSettings)(nil), // 6: google.api.CppSettings
  1376. (*PhpSettings)(nil), // 7: google.api.PhpSettings
  1377. (*PythonSettings)(nil), // 8: google.api.PythonSettings
  1378. (*NodeSettings)(nil), // 9: google.api.NodeSettings
  1379. (*DotnetSettings)(nil), // 10: google.api.DotnetSettings
  1380. (*RubySettings)(nil), // 11: google.api.RubySettings
  1381. (*GoSettings)(nil), // 12: google.api.GoSettings
  1382. (*MethodSettings)(nil), // 13: google.api.MethodSettings
  1383. nil, // 14: google.api.JavaSettings.ServiceClassNamesEntry
  1384. nil, // 15: google.api.DotnetSettings.RenamedServicesEntry
  1385. nil, // 16: google.api.DotnetSettings.RenamedResourcesEntry
  1386. (*MethodSettings_LongRunning)(nil), // 17: google.api.MethodSettings.LongRunning
  1387. (api.LaunchStage)(0), // 18: google.api.LaunchStage
  1388. (*durationpb.Duration)(nil), // 19: google.protobuf.Duration
  1389. (*descriptorpb.MethodOptions)(nil), // 20: google.protobuf.MethodOptions
  1390. (*descriptorpb.ServiceOptions)(nil), // 21: google.protobuf.ServiceOptions
  1391. }
  1392. var file_google_api_client_proto_depIdxs = []int32{
  1393. 1, // 0: google.api.CommonLanguageSettings.destinations:type_name -> google.api.ClientLibraryDestination
  1394. 18, // 1: google.api.ClientLibrarySettings.launch_stage:type_name -> google.api.LaunchStage
  1395. 5, // 2: google.api.ClientLibrarySettings.java_settings:type_name -> google.api.JavaSettings
  1396. 6, // 3: google.api.ClientLibrarySettings.cpp_settings:type_name -> google.api.CppSettings
  1397. 7, // 4: google.api.ClientLibrarySettings.php_settings:type_name -> google.api.PhpSettings
  1398. 8, // 5: google.api.ClientLibrarySettings.python_settings:type_name -> google.api.PythonSettings
  1399. 9, // 6: google.api.ClientLibrarySettings.node_settings:type_name -> google.api.NodeSettings
  1400. 10, // 7: google.api.ClientLibrarySettings.dotnet_settings:type_name -> google.api.DotnetSettings
  1401. 11, // 8: google.api.ClientLibrarySettings.ruby_settings:type_name -> google.api.RubySettings
  1402. 12, // 9: google.api.ClientLibrarySettings.go_settings:type_name -> google.api.GoSettings
  1403. 13, // 10: google.api.Publishing.method_settings:type_name -> google.api.MethodSettings
  1404. 0, // 11: google.api.Publishing.organization:type_name -> google.api.ClientLibraryOrganization
  1405. 3, // 12: google.api.Publishing.library_settings:type_name -> google.api.ClientLibrarySettings
  1406. 14, // 13: google.api.JavaSettings.service_class_names:type_name -> google.api.JavaSettings.ServiceClassNamesEntry
  1407. 2, // 14: google.api.JavaSettings.common:type_name -> google.api.CommonLanguageSettings
  1408. 2, // 15: google.api.CppSettings.common:type_name -> google.api.CommonLanguageSettings
  1409. 2, // 16: google.api.PhpSettings.common:type_name -> google.api.CommonLanguageSettings
  1410. 2, // 17: google.api.PythonSettings.common:type_name -> google.api.CommonLanguageSettings
  1411. 2, // 18: google.api.NodeSettings.common:type_name -> google.api.CommonLanguageSettings
  1412. 2, // 19: google.api.DotnetSettings.common:type_name -> google.api.CommonLanguageSettings
  1413. 15, // 20: google.api.DotnetSettings.renamed_services:type_name -> google.api.DotnetSettings.RenamedServicesEntry
  1414. 16, // 21: google.api.DotnetSettings.renamed_resources:type_name -> google.api.DotnetSettings.RenamedResourcesEntry
  1415. 2, // 22: google.api.RubySettings.common:type_name -> google.api.CommonLanguageSettings
  1416. 2, // 23: google.api.GoSettings.common:type_name -> google.api.CommonLanguageSettings
  1417. 17, // 24: google.api.MethodSettings.long_running:type_name -> google.api.MethodSettings.LongRunning
  1418. 19, // 25: google.api.MethodSettings.LongRunning.initial_poll_delay:type_name -> google.protobuf.Duration
  1419. 19, // 26: google.api.MethodSettings.LongRunning.max_poll_delay:type_name -> google.protobuf.Duration
  1420. 19, // 27: google.api.MethodSettings.LongRunning.total_poll_timeout:type_name -> google.protobuf.Duration
  1421. 20, // 28: google.api.method_signature:extendee -> google.protobuf.MethodOptions
  1422. 21, // 29: google.api.default_host:extendee -> google.protobuf.ServiceOptions
  1423. 21, // 30: google.api.oauth_scopes:extendee -> google.protobuf.ServiceOptions
  1424. 31, // [31:31] is the sub-list for method output_type
  1425. 31, // [31:31] is the sub-list for method input_type
  1426. 31, // [31:31] is the sub-list for extension type_name
  1427. 28, // [28:31] is the sub-list for extension extendee
  1428. 0, // [0:28] is the sub-list for field type_name
  1429. }
  1430. func init() { file_google_api_client_proto_init() }
  1431. func file_google_api_client_proto_init() {
  1432. if File_google_api_client_proto != nil {
  1433. return
  1434. }
  1435. if !protoimpl.UnsafeEnabled {
  1436. file_google_api_client_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1437. switch v := v.(*CommonLanguageSettings); i {
  1438. case 0:
  1439. return &v.state
  1440. case 1:
  1441. return &v.sizeCache
  1442. case 2:
  1443. return &v.unknownFields
  1444. default:
  1445. return nil
  1446. }
  1447. }
  1448. file_google_api_client_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1449. switch v := v.(*ClientLibrarySettings); i {
  1450. case 0:
  1451. return &v.state
  1452. case 1:
  1453. return &v.sizeCache
  1454. case 2:
  1455. return &v.unknownFields
  1456. default:
  1457. return nil
  1458. }
  1459. }
  1460. file_google_api_client_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1461. switch v := v.(*Publishing); i {
  1462. case 0:
  1463. return &v.state
  1464. case 1:
  1465. return &v.sizeCache
  1466. case 2:
  1467. return &v.unknownFields
  1468. default:
  1469. return nil
  1470. }
  1471. }
  1472. file_google_api_client_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1473. switch v := v.(*JavaSettings); i {
  1474. case 0:
  1475. return &v.state
  1476. case 1:
  1477. return &v.sizeCache
  1478. case 2:
  1479. return &v.unknownFields
  1480. default:
  1481. return nil
  1482. }
  1483. }
  1484. file_google_api_client_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1485. switch v := v.(*CppSettings); i {
  1486. case 0:
  1487. return &v.state
  1488. case 1:
  1489. return &v.sizeCache
  1490. case 2:
  1491. return &v.unknownFields
  1492. default:
  1493. return nil
  1494. }
  1495. }
  1496. file_google_api_client_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1497. switch v := v.(*PhpSettings); i {
  1498. case 0:
  1499. return &v.state
  1500. case 1:
  1501. return &v.sizeCache
  1502. case 2:
  1503. return &v.unknownFields
  1504. default:
  1505. return nil
  1506. }
  1507. }
  1508. file_google_api_client_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1509. switch v := v.(*PythonSettings); i {
  1510. case 0:
  1511. return &v.state
  1512. case 1:
  1513. return &v.sizeCache
  1514. case 2:
  1515. return &v.unknownFields
  1516. default:
  1517. return nil
  1518. }
  1519. }
  1520. file_google_api_client_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1521. switch v := v.(*NodeSettings); i {
  1522. case 0:
  1523. return &v.state
  1524. case 1:
  1525. return &v.sizeCache
  1526. case 2:
  1527. return &v.unknownFields
  1528. default:
  1529. return nil
  1530. }
  1531. }
  1532. file_google_api_client_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1533. switch v := v.(*DotnetSettings); i {
  1534. case 0:
  1535. return &v.state
  1536. case 1:
  1537. return &v.sizeCache
  1538. case 2:
  1539. return &v.unknownFields
  1540. default:
  1541. return nil
  1542. }
  1543. }
  1544. file_google_api_client_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1545. switch v := v.(*RubySettings); i {
  1546. case 0:
  1547. return &v.state
  1548. case 1:
  1549. return &v.sizeCache
  1550. case 2:
  1551. return &v.unknownFields
  1552. default:
  1553. return nil
  1554. }
  1555. }
  1556. file_google_api_client_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1557. switch v := v.(*GoSettings); i {
  1558. case 0:
  1559. return &v.state
  1560. case 1:
  1561. return &v.sizeCache
  1562. case 2:
  1563. return &v.unknownFields
  1564. default:
  1565. return nil
  1566. }
  1567. }
  1568. file_google_api_client_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1569. switch v := v.(*MethodSettings); i {
  1570. case 0:
  1571. return &v.state
  1572. case 1:
  1573. return &v.sizeCache
  1574. case 2:
  1575. return &v.unknownFields
  1576. default:
  1577. return nil
  1578. }
  1579. }
  1580. file_google_api_client_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1581. switch v := v.(*MethodSettings_LongRunning); i {
  1582. case 0:
  1583. return &v.state
  1584. case 1:
  1585. return &v.sizeCache
  1586. case 2:
  1587. return &v.unknownFields
  1588. default:
  1589. return nil
  1590. }
  1591. }
  1592. }
  1593. type x struct{}
  1594. out := protoimpl.TypeBuilder{
  1595. File: protoimpl.DescBuilder{
  1596. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1597. RawDescriptor: file_google_api_client_proto_rawDesc,
  1598. NumEnums: 2,
  1599. NumMessages: 16,
  1600. NumExtensions: 3,
  1601. NumServices: 0,
  1602. },
  1603. GoTypes: file_google_api_client_proto_goTypes,
  1604. DependencyIndexes: file_google_api_client_proto_depIdxs,
  1605. EnumInfos: file_google_api_client_proto_enumTypes,
  1606. MessageInfos: file_google_api_client_proto_msgTypes,
  1607. ExtensionInfos: file_google_api_client_proto_extTypes,
  1608. }.Build()
  1609. File_google_api_client_proto = out.File
  1610. file_google_api_client_proto_rawDesc = nil
  1611. file_google_api_client_proto_goTypes = nil
  1612. file_google_api_client_proto_depIdxs = nil
  1613. }