Skip to content

Commit aefa366

Browse files
authored
Merge pull request #4 from yordis/chore-compile-latest
feat: compile with latest protobuf
2 parents b3b3f9d + 12e4b96 commit aefa366

49 files changed

Lines changed: 1488 additions & 177 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/generated/google/api/client.pb.ex

Lines changed: 90 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ defmodule Google.Api.ClientLibraryOrganization do
44
Affects the url where generated docs are published, etc.
55
"""
66

7-
use Protobuf, enum: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
7+
use Protobuf,
8+
enum: true,
9+
full_name: "google.api.ClientLibraryOrganization",
10+
protoc_gen_elixir_version: "0.16.0",
11+
syntax: :proto3
812

913
field :CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED, 0
1014
field :CLOUD, 1
@@ -21,7 +25,11 @@ defmodule Google.Api.ClientLibraryDestination do
2125
To where should client libraries be published?
2226
"""
2327

24-
use Protobuf, enum: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
28+
use Protobuf,
29+
enum: true,
30+
full_name: "google.api.ClientLibraryDestination",
31+
protoc_gen_elixir_version: "0.16.0",
32+
syntax: :proto3
2533

2634
field :CLIENT_LIBRARY_DESTINATION_UNSPECIFIED, 0
2735
field :GITHUB, 10
@@ -33,7 +41,10 @@ defmodule Google.Api.CommonLanguageSettings do
3341
Required information for every language.
3442
"""
3543

36-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
44+
use Protobuf,
45+
full_name: "google.api.CommonLanguageSettings",
46+
protoc_gen_elixir_version: "0.16.0",
47+
syntax: :proto3
3748

3849
field :reference_docs_uri, 1, type: :string, json_name: "referenceDocsUri", deprecated: true
3950
field :destinations, 2, repeated: true, type: Google.Api.ClientLibraryDestination, enum: true
@@ -48,7 +59,10 @@ defmodule Google.Api.ClientLibrarySettings do
4859
Details about how and where to publish client libraries.
4960
"""
5061

51-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
62+
use Protobuf,
63+
full_name: "google.api.ClientLibrarySettings",
64+
protoc_gen_elixir_version: "0.16.0",
65+
syntax: :proto3
5266

5367
field :version, 1, type: :string
5468
field :launch_stage, 2, type: Google.Api.LaunchStage, json_name: "launchStage", enum: true
@@ -70,7 +84,10 @@ defmodule Google.Api.Publishing do
7084
generated from the service config.
7185
"""
7286

73-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
87+
use Protobuf,
88+
full_name: "google.api.Publishing",
89+
protoc_gen_elixir_version: "0.16.0",
90+
syntax: :proto3
7491

7592
field :method_settings, 2,
7693
repeated: true,
@@ -105,7 +122,11 @@ defmodule Google.Api.Publishing do
105122
end
106123

107124
defmodule Google.Api.JavaSettings.ServiceClassNamesEntry do
108-
use Protobuf, map: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
125+
use Protobuf,
126+
full_name: "google.api.JavaSettings.ServiceClassNamesEntry",
127+
map: true,
128+
protoc_gen_elixir_version: "0.16.0",
129+
syntax: :proto3
109130

110131
field :key, 1, type: :string
111132
field :value, 2, type: :string
@@ -116,7 +137,10 @@ defmodule Google.Api.JavaSettings do
116137
Settings for Java client libraries.
117138
"""
118139

119-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
140+
use Protobuf,
141+
full_name: "google.api.JavaSettings",
142+
protoc_gen_elixir_version: "0.16.0",
143+
syntax: :proto3
120144

121145
field :library_package, 1, type: :string, json_name: "libraryPackage"
122146

@@ -134,7 +158,10 @@ defmodule Google.Api.CppSettings do
134158
Settings for C++ client libraries.
135159
"""
136160

137-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
161+
use Protobuf,
162+
full_name: "google.api.CppSettings",
163+
protoc_gen_elixir_version: "0.16.0",
164+
syntax: :proto3
138165

139166
field :common, 1, type: Google.Api.CommonLanguageSettings
140167
end
@@ -144,7 +171,10 @@ defmodule Google.Api.PhpSettings do
144171
Settings for Php client libraries.
145172
"""
146173

147-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
174+
use Protobuf,
175+
full_name: "google.api.PhpSettings",
176+
protoc_gen_elixir_version: "0.16.0",
177+
syntax: :proto3
148178

149179
field :common, 1, type: Google.Api.CommonLanguageSettings
150180
end
@@ -156,7 +186,10 @@ defmodule Google.Api.PythonSettings.ExperimentalFeatures do
156186
by default.
157187
"""
158188

159-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
189+
use Protobuf,
190+
full_name: "google.api.PythonSettings.ExperimentalFeatures",
191+
protoc_gen_elixir_version: "0.16.0",
192+
syntax: :proto3
160193

161194
field :rest_async_io_enabled, 1, type: :bool, json_name: "restAsyncIoEnabled"
162195

@@ -172,7 +205,10 @@ defmodule Google.Api.PythonSettings do
172205
Settings for Python client libraries.
173206
"""
174207

175-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
208+
use Protobuf,
209+
full_name: "google.api.PythonSettings",
210+
protoc_gen_elixir_version: "0.16.0",
211+
syntax: :proto3
176212

177213
field :common, 1, type: Google.Api.CommonLanguageSettings
178214

@@ -186,20 +222,31 @@ defmodule Google.Api.NodeSettings do
186222
Settings for Node client libraries.
187223
"""
188224

189-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
225+
use Protobuf,
226+
full_name: "google.api.NodeSettings",
227+
protoc_gen_elixir_version: "0.16.0",
228+
syntax: :proto3
190229

191230
field :common, 1, type: Google.Api.CommonLanguageSettings
192231
end
193232

194233
defmodule Google.Api.DotnetSettings.RenamedServicesEntry do
195-
use Protobuf, map: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
234+
use Protobuf,
235+
full_name: "google.api.DotnetSettings.RenamedServicesEntry",
236+
map: true,
237+
protoc_gen_elixir_version: "0.16.0",
238+
syntax: :proto3
196239

197240
field :key, 1, type: :string
198241
field :value, 2, type: :string
199242
end
200243

201244
defmodule Google.Api.DotnetSettings.RenamedResourcesEntry do
202-
use Protobuf, map: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
245+
use Protobuf,
246+
full_name: "google.api.DotnetSettings.RenamedResourcesEntry",
247+
map: true,
248+
protoc_gen_elixir_version: "0.16.0",
249+
syntax: :proto3
203250

204251
field :key, 1, type: :string
205252
field :value, 2, type: :string
@@ -210,7 +257,10 @@ defmodule Google.Api.DotnetSettings do
210257
Settings for Dotnet client libraries.
211258
"""
212259

213-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
260+
use Protobuf,
261+
full_name: "google.api.DotnetSettings",
262+
protoc_gen_elixir_version: "0.16.0",
263+
syntax: :proto3
214264

215265
field :common, 1, type: Google.Api.CommonLanguageSettings
216266

@@ -244,13 +294,20 @@ defmodule Google.Api.RubySettings do
244294
Settings for Ruby client libraries.
245295
"""
246296

247-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
297+
use Protobuf,
298+
full_name: "google.api.RubySettings",
299+
protoc_gen_elixir_version: "0.16.0",
300+
syntax: :proto3
248301

249302
field :common, 1, type: Google.Api.CommonLanguageSettings
250303
end
251304

252305
defmodule Google.Api.GoSettings.RenamedServicesEntry do
253-
use Protobuf, map: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
306+
use Protobuf,
307+
full_name: "google.api.GoSettings.RenamedServicesEntry",
308+
map: true,
309+
protoc_gen_elixir_version: "0.16.0",
310+
syntax: :proto3
254311

255312
field :key, 1, type: :string
256313
field :value, 2, type: :string
@@ -261,7 +318,10 @@ defmodule Google.Api.GoSettings do
261318
Settings for Go client libraries.
262319
"""
263320

264-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
321+
use Protobuf,
322+
full_name: "google.api.GoSettings",
323+
protoc_gen_elixir_version: "0.16.0",
324+
syntax: :proto3
265325

266326
field :common, 1, type: Google.Api.CommonLanguageSettings
267327

@@ -281,7 +341,10 @@ defmodule Google.Api.MethodSettings.LongRunning do
281341
[Java](https://github.com/googleapis/gapic-generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
282342
"""
283343

284-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
344+
use Protobuf,
345+
full_name: "google.api.MethodSettings.LongRunning",
346+
protoc_gen_elixir_version: "0.16.0",
347+
syntax: :proto3
285348

286349
field :initial_poll_delay, 1, type: Google.Protobuf.Duration, json_name: "initialPollDelay"
287350
field :poll_delay_multiplier, 2, type: :float, json_name: "pollDelayMultiplier"
@@ -294,7 +357,10 @@ defmodule Google.Api.MethodSettings do
294357
Describes the generator configuration for a method.
295358
"""
296359

297-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
360+
use Protobuf,
361+
full_name: "google.api.MethodSettings",
362+
protoc_gen_elixir_version: "0.16.0",
363+
syntax: :proto3
298364

299365
field :selector, 1, type: :string
300366
field :long_running, 2, type: Google.Api.MethodSettings.LongRunning, json_name: "longRunning"
@@ -307,7 +373,10 @@ defmodule Google.Api.SelectiveGapicGeneration do
307373
a service for client libraries.
308374
"""
309375

310-
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
376+
use Protobuf,
377+
full_name: "google.api.SelectiveGapicGeneration",
378+
protoc_gen_elixir_version: "0.16.0",
379+
syntax: :proto3
311380

312381
field :methods, 1, repeated: true, type: :string
313382
field :generate_omitted_as_internal, 2, type: :bool, json_name: "generateOmittedAsInternal"

0 commit comments

Comments
 (0)