protobug_googleapis_annotations_protos 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 48ce2ab20754e20fe6674765b1adb3458757df3aaf3490d961ed04f5bc4dc280
4
+ data.tar.gz: 34a102e9c57c50e4931ce20e098151b8ee3b247d72557dca16b997f3a3b776ea
5
+ SHA512:
6
+ metadata.gz: 2ea71518a22f09ee38b8ca5e12f2e238bbd118310b42d633a15a7e22236208e536c308598b5d6cfdc8bd91a0b0f4bb8a91561902c50d907e14fe7831e5426b35
7
+ data.tar.gz: 5a0f3d4e3f476c5e4993bd9accc1821e3965a891c16deb5c62b978a3136364806a382194a61f2a17e5bb6753b1f2e1d2530e6843bf651f20560c3d1bdc83b8dd
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Code generated by protoc-gen-protobug. DO NOT EDIT.
4
+
5
+ # source: google/api/annotations.proto
6
+ # syntax: proto3
7
+ # package: google.api
8
+ # options:
9
+ # java_package: "com.google.api"
10
+ # java_outer_classname: "AnnotationsProto"
11
+ # java_multiple_files: true
12
+ # go_package: "google.golang.org/genproto/googleapis/api/annotations;annotations"
13
+ # objc_class_prefix: "GAPI"
14
+
15
+ # Copyright 2015 Google LLC
16
+ #
17
+ # Licensed under the Apache License, Version 2.0 (the "License");
18
+ # you may not use this file except in compliance with the License.
19
+ # You may obtain a copy of the License at
20
+ #
21
+ # http://www.apache.org/licenses/LICENSE-2.0
22
+ #
23
+ # Unless required by applicable law or agreed to in writing, software
24
+ # distributed under the License is distributed on an "AS IS" BASIS,
25
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26
+ # See the License for the specific language governing permissions and
27
+ # limitations under the License.
28
+
29
+ require "protobug"
30
+
31
+ require "google/protobuf/descriptor_pb"
32
+
33
+ require_relative "http_pb"
34
+
35
+ module Google
36
+ module Api
37
+ # See `HttpRule`.
38
+ # extension: google.protobuf.MethodOptions
39
+ # http 72295728
40
+
41
+ def self.register_annotations_protos(registry)
42
+ Google::Api.register_http_protos(registry)
43
+ Google::Protobuf.register_descriptor_protos(registry)
44
+ # extension: google.protobuf.MethodOptions
45
+ # TYPE_MESSAGE 72295728
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,438 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Code generated by protoc-gen-protobug. DO NOT EDIT.
4
+
5
+ # source: google/api/http.proto
6
+ # syntax: proto3
7
+ # package: google.api
8
+ # options:
9
+ # java_package: "com.google.api"
10
+ # java_outer_classname: "HttpProto"
11
+ # java_multiple_files: true
12
+ # go_package: "google.golang.org/genproto/googleapis/api/annotations;annotations"
13
+ # cc_enable_arenas: true
14
+ # objc_class_prefix: "GAPI"
15
+
16
+ # Copyright 2023 Google LLC
17
+ #
18
+ # Licensed under the Apache License, Version 2.0 (the "License");
19
+ # you may not use this file except in compliance with the License.
20
+ # You may obtain a copy of the License at
21
+ #
22
+ # http://www.apache.org/licenses/LICENSE-2.0
23
+ #
24
+ # Unless required by applicable law or agreed to in writing, software
25
+ # distributed under the License is distributed on an "AS IS" BASIS,
26
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
27
+ # See the License for the specific language governing permissions and
28
+ # limitations under the License.
29
+
30
+ require "protobug"
31
+
32
+ module Google
33
+ module Api
34
+ # Defines the HTTP configuration for an API service. It contains a list of
35
+ # [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method
36
+ # to one or more HTTP REST API methods.
37
+ class Http
38
+ extend Protobug::Message
39
+
40
+ self.full_name = "google.api.Http"
41
+
42
+ # A list of HTTP configuration rules that apply to individual API methods.
43
+ #
44
+ # **NOTE:** All service configuration rules follow "last one wins" order.
45
+ repeated(1, "rules", type: :message, message_type: "google.api.HttpRule")
46
+ # When set to true, URL path parameters will be fully URI-decoded except in
47
+ # cases of single segment matches in reserved expansion, where "%2F" will be
48
+ # left encoded.
49
+ #
50
+ # The default behavior is to not decode RFC 6570 reserved characters in multi
51
+ # segment matches.
52
+ optional(
53
+ 2,
54
+ "fully_decode_reserved_expansion",
55
+ type: :bool,
56
+ json_name: "fullyDecodeReservedExpansion",
57
+ proto3_optional: false
58
+ )
59
+ end
60
+
61
+ # # gRPC Transcoding
62
+ #
63
+ # gRPC Transcoding is a feature for mapping between a gRPC method and one or
64
+ # more HTTP REST endpoints. It allows developers to build a single API service
65
+ # that supports both gRPC APIs and REST APIs. Many systems, including [Google
66
+ # APIs](https://github.com/googleapis/googleapis),
67
+ # [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC
68
+ # Gateway](https://github.com/grpc-ecosystem/grpc-gateway),
69
+ # and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature
70
+ # and use it for large scale production services.
71
+ #
72
+ # `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies
73
+ # how different portions of the gRPC request message are mapped to the URL
74
+ # path, URL query parameters, and HTTP request body. It also controls how the
75
+ # gRPC response message is mapped to the HTTP response body. `HttpRule` is
76
+ # typically specified as an `google.api.http` annotation on the gRPC method.
77
+ #
78
+ # Each mapping specifies a URL path template and an HTTP method. The path
79
+ # template may refer to one or more fields in the gRPC request message, as long
80
+ # as each field is a non-repeated field with a primitive (non-message) type.
81
+ # The path template controls how fields of the request message are mapped to
82
+ # the URL path.
83
+ #
84
+ # Example:
85
+ #
86
+ # service Messaging {
87
+ # rpc GetMessage(GetMessageRequest) returns (Message) {
88
+ # option (google.api.http) = {
89
+ # get: "/v1/{name=messages/*}"
90
+ # };
91
+ # }
92
+ # }
93
+ # message GetMessageRequest {
94
+ # string name = 1; // Mapped to URL path.
95
+ # }
96
+ # message Message {
97
+ # string text = 1; // The resource content.
98
+ # }
99
+ #
100
+ # This enables an HTTP REST to gRPC mapping as below:
101
+ #
102
+ # HTTP | gRPC
103
+ # -----|-----
104
+ # `GET /v1/messages/123456` | `GetMessage(name: "messages/123456")`
105
+ #
106
+ # Any fields in the request message which are not bound by the path template
107
+ # automatically become HTTP query parameters if there is no HTTP request body.
108
+ # For example:
109
+ #
110
+ # service Messaging {
111
+ # rpc GetMessage(GetMessageRequest) returns (Message) {
112
+ # option (google.api.http) = {
113
+ # get:"/v1/messages/{message_id}"
114
+ # };
115
+ # }
116
+ # }
117
+ # message GetMessageRequest {
118
+ # message SubMessage {
119
+ # string subfield = 1;
120
+ # }
121
+ # string message_id = 1; // Mapped to URL path.
122
+ # int64 revision = 2; // Mapped to URL query parameter `revision`.
123
+ # SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`.
124
+ # }
125
+ #
126
+ # This enables a HTTP JSON to RPC mapping as below:
127
+ #
128
+ # HTTP | gRPC
129
+ # -----|-----
130
+ # `GET /v1/messages/123456?revision=2&sub.subfield=foo` |
131
+ # `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield:
132
+ # "foo"))`
133
+ #
134
+ # Note that fields which are mapped to URL query parameters must have a
135
+ # primitive type or a repeated primitive type or a non-repeated message type.
136
+ # In the case of a repeated type, the parameter can be repeated in the URL
137
+ # as `...?param=A&param=B`. In the case of a message type, each field of the
138
+ # message is mapped to a separate parameter, such as
139
+ # `...?foo.a=A&foo.b=B&foo.c=C`.
140
+ #
141
+ # For HTTP methods that allow a request body, the `body` field
142
+ # specifies the mapping. Consider a REST update method on the
143
+ # message resource collection:
144
+ #
145
+ # service Messaging {
146
+ # rpc UpdateMessage(UpdateMessageRequest) returns (Message) {
147
+ # option (google.api.http) = {
148
+ # patch: "/v1/messages/{message_id}"
149
+ # body: "message"
150
+ # };
151
+ # }
152
+ # }
153
+ # message UpdateMessageRequest {
154
+ # string message_id = 1; // mapped to the URL
155
+ # Message message = 2; // mapped to the body
156
+ # }
157
+ #
158
+ # The following HTTP JSON to RPC mapping is enabled, where the
159
+ # representation of the JSON in the request body is determined by
160
+ # protos JSON encoding:
161
+ #
162
+ # HTTP | gRPC
163
+ # -----|-----
164
+ # `PATCH /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id:
165
+ # "123456" message { text: "Hi!" })`
166
+ #
167
+ # The special name `*` can be used in the body mapping to define that
168
+ # every field not bound by the path template should be mapped to the
169
+ # request body. This enables the following alternative definition of
170
+ # the update method:
171
+ #
172
+ # service Messaging {
173
+ # rpc UpdateMessage(Message) returns (Message) {
174
+ # option (google.api.http) = {
175
+ # patch: "/v1/messages/{message_id}"
176
+ # body: "*"
177
+ # };
178
+ # }
179
+ # }
180
+ # message Message {
181
+ # string message_id = 1;
182
+ # string text = 2;
183
+ # }
184
+ #
185
+ #
186
+ # The following HTTP JSON to RPC mapping is enabled:
187
+ #
188
+ # HTTP | gRPC
189
+ # -----|-----
190
+ # `PATCH /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id:
191
+ # "123456" text: "Hi!")`
192
+ #
193
+ # Note that when using `*` in the body mapping, it is not possible to
194
+ # have HTTP parameters, as all fields not bound by the path end in
195
+ # the body. This makes this option more rarely used in practice when
196
+ # defining REST APIs. The common usage of `*` is in custom methods
197
+ # which don't use the URL at all for transferring data.
198
+ #
199
+ # It is possible to define multiple HTTP methods for one RPC by using
200
+ # the `additional_bindings` option. Example:
201
+ #
202
+ # service Messaging {
203
+ # rpc GetMessage(GetMessageRequest) returns (Message) {
204
+ # option (google.api.http) = {
205
+ # get: "/v1/messages/{message_id}"
206
+ # additional_bindings {
207
+ # get: "/v1/users/{user_id}/messages/{message_id}"
208
+ # }
209
+ # };
210
+ # }
211
+ # }
212
+ # message GetMessageRequest {
213
+ # string message_id = 1;
214
+ # string user_id = 2;
215
+ # }
216
+ #
217
+ # This enables the following two alternative HTTP JSON to RPC mappings:
218
+ #
219
+ # HTTP | gRPC
220
+ # -----|-----
221
+ # `GET /v1/messages/123456` | `GetMessage(message_id: "123456")`
222
+ # `GET /v1/users/me/messages/123456` | `GetMessage(user_id: "me" message_id:
223
+ # "123456")`
224
+ #
225
+ # ## Rules for HTTP mapping
226
+ #
227
+ # 1. Leaf request fields (recursive expansion nested messages in the request
228
+ # message) are classified into three categories:
229
+ # - Fields referred by the path template. They are passed via the URL path.
230
+ # - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They
231
+ # are passed via the HTTP
232
+ # request body.
233
+ # - All other fields are passed via the URL query parameters, and the
234
+ # parameter name is the field path in the request message. A repeated
235
+ # field can be represented as multiple query parameters under the same
236
+ # name.
237
+ # 2. If [HttpRule.body][google.api.HttpRule.body] is "*", there is no URL
238
+ # query parameter, all fields
239
+ # are passed via URL path and HTTP request body.
240
+ # 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP
241
+ # request body, all
242
+ # fields are passed via URL path and URL query parameters.
243
+ #
244
+ # ### Path template syntax
245
+ #
246
+ # Template = "/" Segments [ Verb ] ;
247
+ # Segments = Segment { "/" Segment } ;
248
+ # Segment = "*" | "**" | LITERAL | Variable ;
249
+ # Variable = "{" FieldPath [ "=" Segments ] "}" ;
250
+ # FieldPath = IDENT { "." IDENT } ;
251
+ # Verb = ":" LITERAL ;
252
+ #
253
+ # The syntax `*` matches a single URL path segment. The syntax `**` matches
254
+ # zero or more URL path segments, which must be the last part of the URL path
255
+ # except the `Verb`.
256
+ #
257
+ # The syntax `Variable` matches part of the URL path as specified by its
258
+ # template. A variable template must not contain other variables. If a variable
259
+ # matches a single path segment, its template may be omitted, e.g. `{var}`
260
+ # is equivalent to `{var=*}`.
261
+ #
262
+ # The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`
263
+ # contains any reserved character, such characters should be percent-encoded
264
+ # before the matching.
265
+ #
266
+ # If a variable contains exactly one path segment, such as `"{var}"` or
267
+ # `"{var=*}"`, when such a variable is expanded into a URL path on the client
268
+ # side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The
269
+ # server side does the reverse decoding. Such variables show up in the
270
+ # [Discovery
271
+ # Document](https://developers.google.com/discovery/v1/reference/apis) as
272
+ # `{var}`.
273
+ #
274
+ # If a variable contains multiple path segments, such as `"{var=foo/*}"`
275
+ # or `"{var=**}"`, when such a variable is expanded into a URL path on the
276
+ # client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.
277
+ # The server side does the reverse decoding, except "%2F" and "%2f" are left
278
+ # unchanged. Such variables show up in the
279
+ # [Discovery
280
+ # Document](https://developers.google.com/discovery/v1/reference/apis) as
281
+ # `{+var}`.
282
+ #
283
+ # ## Using gRPC API Service Configuration
284
+ #
285
+ # gRPC API Service Configuration (service config) is a configuration language
286
+ # for configuring a gRPC service to become a user-facing product. The
287
+ # service config is simply the YAML representation of the `google.api.Service`
288
+ # proto message.
289
+ #
290
+ # As an alternative to annotating your proto file, you can configure gRPC
291
+ # transcoding in your service config YAML files. You do this by specifying a
292
+ # `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same
293
+ # effect as the proto annotation. This can be particularly useful if you
294
+ # have a proto that is reused in multiple services. Note that any transcoding
295
+ # specified in the service config will override any matching transcoding
296
+ # configuration in the proto.
297
+ #
298
+ # Example:
299
+ #
300
+ # http:
301
+ # rules:
302
+ # # Selects a gRPC method and applies HttpRule to it.
303
+ # - selector: example.v1.Messaging.GetMessage
304
+ # get: /v1/messages/{message_id}/{sub.subfield}
305
+ #
306
+ # ## Special notes
307
+ #
308
+ # When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the
309
+ # proto to JSON conversion must follow the [proto3
310
+ # specification](https://developers.google.com/protocol-buffers/docs/proto3#json).
311
+ #
312
+ # While the single segment variable follows the semantics of
313
+ # [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
314
+ # Expansion, the multi segment variable **does not** follow RFC 6570 Section
315
+ # 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion
316
+ # does not expand special characters like `?` and `#`, which would lead
317
+ # to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
318
+ # for multi segment variables.
319
+ #
320
+ # The path variables **must not** refer to any repeated or mapped field,
321
+ # because client libraries are not capable of handling such variable expansion.
322
+ #
323
+ # The path variables **must not** capture the leading "/" character. The reason
324
+ # is that the most common use case "{var}" does not capture the leading "/"
325
+ # character. For consistency, all path variables must share the same behavior.
326
+ #
327
+ # Repeated message fields must not be mapped to URL query parameters, because
328
+ # no client library can support such complicated mapping.
329
+ #
330
+ # If an API needs to use a JSON array for request or response body, it can map
331
+ # the request or response body to a repeated field. However, some gRPC
332
+ # Transcoding implementations may not support this feature.
333
+ class HttpRule
334
+ extend Protobug::Message
335
+
336
+ self.full_name = "google.api.HttpRule"
337
+
338
+ # Selects a method to which this rule applies.
339
+ #
340
+ # Refer to [selector][google.api.DocumentationRule.selector] for syntax
341
+ # details.
342
+ optional(1, "selector", type: :string, proto3_optional: false)
343
+ # Determines the URL pattern is matched by this rules. This pattern can be
344
+ # used with any of the {get|put|post|delete|patch} methods. A custom method
345
+ # can be defined using the 'custom' field.
346
+
347
+ # Maps to HTTP GET. Used for listing and getting information about
348
+ # resources.
349
+ optional(2, "get", type: :string, oneof: :pattern, proto3_optional: false)
350
+ # Maps to HTTP PUT. Used for replacing a resource.
351
+ optional(3, "put", type: :string, oneof: :pattern, proto3_optional: false)
352
+ # Maps to HTTP POST. Used for creating a resource or performing an action.
353
+ optional(
354
+ 4,
355
+ "post",
356
+ type: :string,
357
+ oneof: :pattern,
358
+ proto3_optional: false
359
+ )
360
+ # Maps to HTTP DELETE. Used for deleting a resource.
361
+ optional(
362
+ 5,
363
+ "delete",
364
+ type: :string,
365
+ oneof: :pattern,
366
+ proto3_optional: false
367
+ )
368
+ # Maps to HTTP PATCH. Used for updating a resource.
369
+ optional(
370
+ 6,
371
+ "patch",
372
+ type: :string,
373
+ oneof: :pattern,
374
+ proto3_optional: false
375
+ )
376
+ # The custom pattern is used for specifying an HTTP method that is not
377
+ # included in the `pattern` field, such as HEAD, or "*" to leave the
378
+ # HTTP method unspecified for this rule. The wild-card rule is useful
379
+ # for services that provide content to Web (HTML) clients.
380
+ optional(
381
+ 8,
382
+ "custom",
383
+ type: :message,
384
+ message_type: "google.api.CustomHttpPattern",
385
+ oneof: :pattern,
386
+ proto3_optional: false
387
+ )
388
+ # The name of the request field whose value is mapped to the HTTP request
389
+ # body, or `*` for mapping all request fields not captured by the path
390
+ # pattern to the HTTP body, or omitted for not having any HTTP request body.
391
+ #
392
+ # NOTE: the referred field must be present at the top-level of the request
393
+ # message type.
394
+ optional(7, "body", type: :string, proto3_optional: false)
395
+ # Optional. The name of the response field whose value is mapped to the HTTP
396
+ # response body. When omitted, the entire response message will be used
397
+ # as the HTTP response body.
398
+ #
399
+ # NOTE: The referred field must be present at the top-level of the response
400
+ # message type.
401
+ optional(
402
+ 12,
403
+ "response_body",
404
+ type: :string,
405
+ json_name: "responseBody",
406
+ proto3_optional: false
407
+ )
408
+ # Additional HTTP bindings for the selector. Nested bindings must
409
+ # not contain an `additional_bindings` field themselves (that is,
410
+ # the nesting may only be one level deep).
411
+ repeated(
412
+ 11,
413
+ "additional_bindings",
414
+ type: :message,
415
+ message_type: "google.api.HttpRule",
416
+ json_name: "additionalBindings"
417
+ )
418
+ end
419
+
420
+ # A custom pattern is used for defining custom HTTP verb.
421
+ class CustomHttpPattern
422
+ extend Protobug::Message
423
+
424
+ self.full_name = "google.api.CustomHttpPattern"
425
+
426
+ # The name of this custom HTTP verb.
427
+ optional(1, "kind", type: :string, proto3_optional: false)
428
+ # The path matched by this custom verb.
429
+ optional(2, "path", type: :string, proto3_optional: false)
430
+ end
431
+
432
+ def self.register_http_protos(registry)
433
+ registry.register(Google::Api::Http)
434
+ registry.register(Google::Api::HttpRule)
435
+ registry.register(Google::Api::CustomHttpPattern)
436
+ end
437
+ end
438
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "protobug"
4
+
5
+ require_relative "google/api/annotations_pb"
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: protobug_googleapis_annotations_protos
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Samuel Giddins
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-06-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: protobug
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: protobug_well_known_protos
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.2.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.2.0
41
+ description:
42
+ email:
43
+ - segiddins@segiddins.me
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - lib/google/api/annotations_pb.rb
49
+ - lib/google/api/http_pb.rb
50
+ - lib/protobug_googleapis_annotations_protos.rb
51
+ homepage: https://github.com/segiddins/protobug/blob/v0.2.0/gen/protobug_googleapis_annotations_protos
52
+ licenses:
53
+ - Unlicense
54
+ metadata:
55
+ rubygems_mfa_required: 'true'
56
+ post_install_message:
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 3.0.0
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ requirements: []
71
+ rubygems_version: 3.5.9
72
+ signing_key:
73
+ specification_version: 4
74
+ summary: Compiled protos for protobug from https://github.com/googleapis/googleapis
75
+ (googleapis_annotations_protos)
76
+ test_files: []