blob: 18dcf209909ee6bcf5488eebbc2704a149f326b1 [file] [log] [blame]
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -07001// Copyright (c) 2015, Google Inc.
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
15syntax = "proto3";
16
Daniele Moro538eba72020-02-12 22:07:24 -080017package google.api;
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -070018
Daniele Moro538eba72020-02-12 22:07:24 -080019import "google/api/http.proto";
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -070020import "google/protobuf/descriptor.proto";
21
Zack Williamsf97bf092018-03-22 21:27:28 -070022option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations";
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -070023option java_multiple_files = true;
24option java_outer_classname = "AnnotationsProto";
25option java_package = "com.google.api";
Zack Williamsf97bf092018-03-22 21:27:28 -070026option objc_class_prefix = "GAPI";
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -070027
28extend google.protobuf.MethodOptions {
29 // See `HttpRule`.
30 HttpRule http = 72295728;
Daniele Moro538eba72020-02-12 22:07:24 -080031}