blob: 2ed81a60d8b5b5c6614d99673c526e12639419ad [file] [log] [blame]
Don Newton276cd1f2019-02-06 17:14:03 -05001// Copyright (c) 2015, Google Inc.
2// Modififications (C) 2018, Open Networking Foundation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16// See NOTE in http.proto for the modifications made to these files
17
18syntax = "proto3";
19
20package googleapi;
21
22import "http.proto";
23import "google/protobuf/descriptor.proto";
24
25option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations";
26option java_multiple_files = true;
27option java_outer_classname = "AnnotationsProto";
28option java_package = "com.google.api";
29option objc_class_prefix = "GAPI";
30
31extend google.protobuf.MethodOptions {
32 // See `HttpRule`.
33 HttpRule http = 72295728;
34}