tether.proto 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. // Copyright 2021 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. // 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. syntax = "proto3";
  15. package google.cloud.apigeeconnect.v1;
  16. import "google/protobuf/duration.proto";
  17. import "google/rpc/status.proto";
  18. import "google/api/client.proto";
  19. option csharp_namespace = "Google.Cloud.ApigeeConnect.V1";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/apigeeconnect/v1;apigeeconnect";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "TetherProto";
  23. option java_package = "com.google.cloud.apigeeconnect.v1";
  24. option php_namespace = "Google\\Cloud\\ApigeeConnect\\V1";
  25. option ruby_package = "Google::Cloud::ApigeeConnect::V1";
  26. // Tether provides a way for the control plane to send HTTP API requests to
  27. // services in data planes that runs in a remote datacenter without
  28. // requiring customers to open firewalls on their runtime plane.
  29. service Tether {
  30. option (google.api.default_host) = "apigeeconnect.googleapis.com";
  31. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  32. // Egress streams egress requests and responses. Logically, this is not
  33. // actually a streaming request, but uses streaming as a mechanism to flip
  34. // the client-server relationship of gRPC so that the server can act as a
  35. // client.
  36. // The listener, the RPC server, accepts connections from the dialer,
  37. // the RPC client.
  38. // The listener streams http requests and the dialer streams http responses.
  39. rpc Egress(stream EgressResponse) returns (stream EgressRequest) {
  40. }
  41. }
  42. // gRPC request payload for tether.
  43. message EgressRequest {
  44. // Unique identifier for the request.
  45. string id = 1;
  46. // Actual payload to send to agent.
  47. Payload payload = 2;
  48. // Tether Endpoint.
  49. TetherEndpoint endpoint = 3;
  50. // GCP Project.
  51. // Format: `projects/{project_number}`.
  52. string project = 4;
  53. // Unique identifier for clients to trace their request/response.
  54. string trace_id = 5;
  55. // Timeout for the HTTP request.
  56. google.protobuf.Duration timeout = 6;
  57. }
  58. // Payload for EgressRequest.
  59. message Payload {
  60. // The kind of payload.
  61. oneof kind {
  62. // The HttpRequest proto.
  63. HttpRequest http_request = 1;
  64. // The information of stream.
  65. StreamInfo stream_info = 2;
  66. // The action taken by agent.
  67. Action action = 3;
  68. }
  69. }
  70. // The Information of bi-directional stream.
  71. message StreamInfo {
  72. // Unique identifier for the stream.
  73. string id = 1;
  74. }
  75. // The action taken by agent.
  76. enum Action {
  77. // Unspecified Action.
  78. ACTION_UNSPECIFIED = 0;
  79. // Indicates that agent should open a new stream.
  80. OPEN_NEW_STREAM = 1;
  81. }
  82. // gRPC response payload for tether.
  83. message EgressResponse {
  84. // Unique identifier for the response. Matches the EgressRequest's id.
  85. string id = 1;
  86. // HttpResponse.
  87. HttpResponse http_response = 2;
  88. // Errors from application when handling the http request.
  89. google.rpc.Status status = 3;
  90. // GCP Project.
  91. // Format: `projects/{project_number}`.
  92. string project = 4;
  93. // Unique identifier for clients to trace their request/response. Matches the
  94. // EgressRequest's trace id
  95. string trace_id = 5;
  96. // Tether Endpoint.
  97. TetherEndpoint endpoint = 6;
  98. // Name is the full resource path of endpoint.
  99. // Format: `projects/{project_number or project_id}/endpoints/{endpoint}`
  100. string name = 7;
  101. }
  102. // Endpoint indicates where the messages will be delivered.
  103. enum TetherEndpoint {
  104. // Unspecified tether endpoint.
  105. TETHER_ENDPOINT_UNSPECIFIED = 0;
  106. // Apigee MART endpoint.
  107. APIGEE_MART = 1;
  108. // Apigee Runtime endpoint.
  109. APIGEE_RUNTIME = 2;
  110. // Apigee Mint Rating endpoint.
  111. APIGEE_MINT_RATING = 3;
  112. }
  113. // HTTP Scheme.
  114. enum Scheme {
  115. // Unspecified scheme.
  116. SCHEME_UNSPECIFIED = 0;
  117. // HTTPS protocol.
  118. HTTPS = 1;
  119. }
  120. // The proto definition of http request.
  121. message HttpRequest {
  122. // A unique identifier for the request.
  123. string id = 1;
  124. // The HTTP request method.
  125. // Valid methods: "GET", "HEAD", "POST", "PUT", "PATCH","DELETE".
  126. string method = 2;
  127. // The HTTP request URL.
  128. Url url = 3;
  129. // The HTTP request headers.
  130. repeated Header headers = 4;
  131. // HTTP request body.
  132. bytes body = 5;
  133. }
  134. // The proto definition of url.
  135. // A url represents a URL and the general form represented is:
  136. //
  137. // `[scheme://][google.cloud.apigeeconnect.v1.Url.host][path]`
  138. message Url {
  139. // Scheme.
  140. Scheme scheme = 1;
  141. // Host or Host:Port.
  142. string host = 2;
  143. // Path starts with `/`.
  144. string path = 3;
  145. }
  146. // The http headers.
  147. message Header {
  148. string key = 1;
  149. repeated string values = 2;
  150. }
  151. // The proto definition of http response.
  152. message HttpResponse {
  153. // A unique identifier that matches the request ID.
  154. string id = 1;
  155. // Status of http response, e.g. "200 OK".
  156. string status = 2;
  157. // Status code of http response, e.g. 200.
  158. int32 status_code = 3;
  159. // The HTTP 1.1 response body.
  160. bytes body = 4;
  161. // The HTTP response headers.
  162. repeated Header headers = 5;
  163. // Content length records the length of the associated content. The
  164. // value -1 indicates that the length is unknown. Unless http method
  165. // is "HEAD", values >= 0 indicate that the given number of bytes may
  166. // be read from Body.
  167. int64 content_length = 6;
  168. }