|
| 1 | +// Copyright 2018 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 | +// https://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 | + |
| 15 | +syntax = "proto3"; |
| 16 | + |
| 17 | +import "google/api/annotations.proto"; |
| 18 | +import "google/api/client.proto"; |
| 19 | +import "google/api/field_behavior.proto"; |
| 20 | +import "google/api/field_info.proto"; |
| 21 | +import "google/api/resource.proto"; |
| 22 | +import "google/longrunning/operations.proto"; |
| 23 | +import "google/protobuf/duration.proto"; |
| 24 | +import "google/protobuf/timestamp.proto"; |
| 25 | +import "google/rpc/status.proto"; |
| 26 | + |
| 27 | +package google.api.service.without.methods.test.v1; |
| 28 | + |
| 29 | +option java_package = "com.google.api.service.without.methods.test"; |
| 30 | +option java_multiple_files = true; |
| 31 | +option java_outer_classname = "ServiceWithNoMethodsOuterClass"; |
| 32 | + |
| 33 | +option (google.api.resource_definition) = { |
| 34 | + type: "showcase.googleapis.com/AnythingGoes" |
| 35 | + pattern: "*" |
| 36 | +}; |
| 37 | +// This proto is used to test scenarios where a service does not have any rpc methods |
| 38 | + |
| 39 | +// This service is used as control group when it is not empty. |
| 40 | +service EchoWithMethods { |
| 41 | + // This service is meant to only run locally on the port 7469 (keypad digits |
| 42 | + // for "show"). |
| 43 | + option (google.api.default_host) = "localhost:7469"; |
| 44 | + option (google.api.oauth_scopes) = |
| 45 | + "https://www.googleapis.com/auth/cloud-platform"; |
| 46 | + |
| 47 | + // This method simply echos the request. This method is showcases unary rpcs. |
| 48 | + rpc EchoWithMethod(EchoRequest) returns (EchoResponse) { |
| 49 | + option (google.api.http) = { |
| 50 | + post: "/v1beta1/echo:echo" |
| 51 | + body: "*" |
| 52 | + }; |
| 53 | + option (google.api.method_signature) = "content"; |
| 54 | + option (google.api.method_signature) = "error"; |
| 55 | + option (google.api.method_signature) = "content,severity"; |
| 56 | + option (google.api.method_signature) = "name"; |
| 57 | + option (google.api.method_signature) = "parent"; |
| 58 | + option (google.api.method_signature) = ""; |
| 59 | + } |
| 60 | +} |
| 61 | + |
| 62 | +// This service is to test when no method specified. |
| 63 | +service EchoWithoutMethods { |
| 64 | + // This service is meant to only run locally on the port 7469 (keypad digits |
| 65 | + // for "show"). |
| 66 | + option (google.api.default_host) = "localhost:7469"; |
| 67 | + option (google.api.oauth_scopes) = |
| 68 | + "https://www.googleapis.com/auth/cloud-platform"; |
| 69 | +} |
| 70 | + |
| 71 | +// A severity enum used to test enum capabilities in GAPIC surfaces |
| 72 | +enum Severity { |
| 73 | + UNNECESSARY = 0; |
| 74 | + NECESSARY = 1; |
| 75 | + URGENT = 2; |
| 76 | + CRITICAL = 3; |
| 77 | +} |
| 78 | + |
| 79 | +message Foobar { |
| 80 | + option (google.api.resource) = { |
| 81 | + type: "showcase.googleapis.com/Foobar" |
| 82 | + pattern: "projects/{project}/foobars/{foobar}" |
| 83 | + pattern: "projects/{project}/chocolate/variants/{variant}/foobars/{foobar}" |
| 84 | + pattern: "foobars/{foobar}" |
| 85 | + pattern: "bar_foos/{bar_foo}/foobars/{foobar}" |
| 86 | + pattern: "*" |
| 87 | + }; |
| 88 | + |
| 89 | + string name = 1; |
| 90 | + string info = 2; |
| 91 | +} |
| 92 | + |
| 93 | +// The request message used for the Echo, Collect and Chat methods. |
| 94 | +// If content or opt are set in this message then the request will succeed. |
| 95 | +// If status is set in this message |
| 96 | +// then the status will be returned as an error. |
| 97 | +message EchoRequest { |
| 98 | + string name = 5 [ |
| 99 | + (google.api.resource_reference).type = "showcase.googleapis.com/Foobar", |
| 100 | + (google.api.field_behavior) = REQUIRED |
| 101 | + ]; |
| 102 | + |
| 103 | + string parent = 6 [ |
| 104 | + (google.api.resource_reference).child_type = |
| 105 | + "showcase.googleapis.com/AnythingGoes", |
| 106 | + (google.api.field_behavior) = REQUIRED |
| 107 | + ]; |
| 108 | + |
| 109 | + oneof response { |
| 110 | + // The content to be echoed by the server. |
| 111 | + string content = 1; |
| 112 | + |
| 113 | + // The error to be thrown by the server. |
| 114 | + google.rpc.Status error = 2; |
| 115 | + } |
| 116 | + |
| 117 | + // The severity to be echoed by the server. |
| 118 | + Severity severity = 3; |
| 119 | + |
| 120 | + Foobar foobar = 4; |
| 121 | +} |
| 122 | + |
| 123 | +// The response message for the Echo methods. |
| 124 | +message EchoResponse { |
| 125 | + // The content specified in the request. |
| 126 | + string content = 1; |
| 127 | + |
| 128 | + // The severity specified in the request. |
| 129 | + Severity severity = 2; |
| 130 | +} |
| 131 | + |
0 commit comments