reachability.proto 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. // Copyright 2022 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.networkmanagement.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/cloud/networkmanagement/v1/connectivity_test.proto";
  20. import "google/longrunning/operations.proto";
  21. import "google/protobuf/field_mask.proto";
  22. import "google/protobuf/timestamp.proto";
  23. option csharp_namespace = "Google.Cloud.NetworkManagement.V1";
  24. option go_package = "google.golang.org/genproto/googleapis/cloud/networkmanagement/v1;networkmanagement";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "ReachabilityServiceProto";
  27. option java_package = "com.google.cloud.networkmanagement.v1";
  28. option php_namespace = "Google\\Cloud\\NetworkManagement\\V1";
  29. option ruby_package = "Google::Cloud::NetworkManagement::V1";
  30. // The Reachability service in Google Cloud Network Management API
  31. // The Reachability service in the Google Cloud Network Management API provides
  32. // services that analyze the reachability within a single Google Virtual Private
  33. // Cloud (VPC) network, between peered VPC networks, between VPC and on-premises
  34. // networks, or between VPC networks and internet hosts. A reachability analysis
  35. // is based on Google Cloud network configurations.
  36. //
  37. // You can use the analysis results to verify these configurations and
  38. // to troubleshoot connectivity issues.
  39. service ReachabilityService {
  40. option (google.api.default_host) = "networkmanagement.googleapis.com";
  41. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  42. // Lists all Connectivity Tests owned by a project.
  43. rpc ListConnectivityTests(ListConnectivityTestsRequest) returns (ListConnectivityTestsResponse) {
  44. option (google.api.http) = {
  45. get: "/v1/{parent=projects/*/locations/global}/connectivityTests"
  46. };
  47. option (google.api.method_signature) = "parent";
  48. }
  49. // Gets the details of a specific Connectivity Test.
  50. rpc GetConnectivityTest(GetConnectivityTestRequest) returns (ConnectivityTest) {
  51. option (google.api.http) = {
  52. get: "/v1/{name=projects/*/locations/global/connectivityTests/*}"
  53. };
  54. option (google.api.method_signature) = "name";
  55. }
  56. // Creates a new Connectivity Test.
  57. // After you create a test, the reachability analysis is performed as part
  58. // of the long running operation, which completes when the analysis completes.
  59. //
  60. // If the endpoint specifications in `ConnectivityTest` are invalid
  61. // (for example, containing non-existent resources in the network, or you
  62. // don't have read permissions to the network configurations of listed
  63. // projects), then the reachability result returns a value of `UNKNOWN`.
  64. //
  65. // If the endpoint specifications in `ConnectivityTest` are
  66. // incomplete, the reachability result returns a value of
  67. // <code>AMBIGUOUS</code>. For more information,
  68. // see the Connectivity Test documentation.
  69. rpc CreateConnectivityTest(CreateConnectivityTestRequest) returns (google.longrunning.Operation) {
  70. option (google.api.http) = {
  71. post: "/v1/{parent=projects/*/locations/global}/connectivityTests"
  72. body: "resource"
  73. };
  74. option (google.api.method_signature) = "parent,test_id,resource";
  75. option (google.longrunning.operation_info) = {
  76. response_type: "google.cloud.networkmanagement.v1.ConnectivityTest"
  77. metadata_type: "OperationMetadata"
  78. };
  79. }
  80. // Updates the configuration of an existing `ConnectivityTest`.
  81. // After you update a test, the reachability analysis is performed as part
  82. // of the long running operation, which completes when the analysis completes.
  83. // The Reachability state in the test resource is updated with the new result.
  84. //
  85. // If the endpoint specifications in `ConnectivityTest` are invalid
  86. // (for example, they contain non-existent resources in the network, or the
  87. // user does not have read permissions to the network configurations of
  88. // listed projects), then the reachability result returns a value of
  89. // <code>UNKNOWN</code>.
  90. //
  91. // If the endpoint specifications in `ConnectivityTest` are incomplete, the
  92. // reachability result returns a value of `AMBIGUOUS`. See the documentation
  93. // in `ConnectivityTest` for for more details.
  94. rpc UpdateConnectivityTest(UpdateConnectivityTestRequest) returns (google.longrunning.Operation) {
  95. option (google.api.http) = {
  96. patch: "/v1/{resource.name=projects/*/locations/global/connectivityTests/*}"
  97. body: "resource"
  98. };
  99. option (google.api.method_signature) = "update_mask,resource";
  100. option (google.longrunning.operation_info) = {
  101. response_type: "google.cloud.networkmanagement.v1.ConnectivityTest"
  102. metadata_type: "OperationMetadata"
  103. };
  104. }
  105. // Rerun an existing `ConnectivityTest`.
  106. // After the user triggers the rerun, the reachability analysis is performed
  107. // as part of the long running operation, which completes when the analysis
  108. // completes.
  109. //
  110. // Even though the test configuration remains the same, the reachability
  111. // result may change due to underlying network configuration changes.
  112. //
  113. // If the endpoint specifications in `ConnectivityTest` become invalid (for
  114. // example, specified resources are deleted in the network, or you lost
  115. // read permissions to the network configurations of listed projects), then
  116. // the reachability result returns a value of `UNKNOWN`.
  117. rpc RerunConnectivityTest(RerunConnectivityTestRequest) returns (google.longrunning.Operation) {
  118. option (google.api.http) = {
  119. post: "/v1/{name=projects/*/locations/global/connectivityTests/*}:rerun"
  120. body: "*"
  121. };
  122. option (google.longrunning.operation_info) = {
  123. response_type: "google.cloud.networkmanagement.v1.ConnectivityTest"
  124. metadata_type: "OperationMetadata"
  125. };
  126. }
  127. // Deletes a specific `ConnectivityTest`.
  128. rpc DeleteConnectivityTest(DeleteConnectivityTestRequest) returns (google.longrunning.Operation) {
  129. option (google.api.http) = {
  130. delete: "/v1/{name=projects/*/locations/global/connectivityTests/*}"
  131. };
  132. option (google.api.method_signature) = "name";
  133. option (google.longrunning.operation_info) = {
  134. response_type: "google.protobuf.Empty"
  135. metadata_type: "OperationMetadata"
  136. };
  137. }
  138. }
  139. // Request for the `ListConnectivityTests` method.
  140. message ListConnectivityTestsRequest {
  141. // Required. The parent resource of the Connectivity Tests:
  142. // `projects/{project_id}/locations/global`
  143. string parent = 1 [(google.api.field_behavior) = REQUIRED];
  144. // Number of `ConnectivityTests` to return.
  145. int32 page_size = 2;
  146. // Page token from an earlier query, as returned in `next_page_token`.
  147. string page_token = 3;
  148. // Lists the `ConnectivityTests` that match the filter expression. A filter
  149. // expression filters the resources listed in the response. The expression
  150. // must be of the form `<field> <operator> <value>` where operators: `<`, `>`,
  151. // `<=`,
  152. // `>=`,
  153. // `!=`, `=`, `:` are supported (colon `:` represents a HAS operator which is
  154. // roughly synonymous with equality). <field> can refer to a proto or JSON
  155. // field, or a synthetic field. Field names can be camelCase or snake_case.
  156. //
  157. // Examples:
  158. // - Filter by name:
  159. // name = "projects/proj-1/locations/global/connectivityTests/test-1
  160. //
  161. // - Filter by labels:
  162. // - Resources that have a key called `foo`
  163. // labels.foo:*
  164. // - Resources that have a key called `foo` whose value is `bar`
  165. // labels.foo = bar
  166. string filter = 4;
  167. // Field to use to sort the list.
  168. string order_by = 5;
  169. }
  170. // Response for the `ListConnectivityTests` method.
  171. message ListConnectivityTestsResponse {
  172. // List of Connectivity Tests.
  173. repeated ConnectivityTest resources = 1;
  174. // Page token to fetch the next set of Connectivity Tests.
  175. string next_page_token = 2;
  176. // Locations that could not be reached (when querying all locations with `-`).
  177. repeated string unreachable = 3;
  178. }
  179. // Request for the `GetConnectivityTest` method.
  180. message GetConnectivityTestRequest {
  181. // Required. `ConnectivityTest` resource name using the form:
  182. // `projects/{project_id}/locations/global/connectivityTests/{test_id}`
  183. string name = 1 [(google.api.field_behavior) = REQUIRED];
  184. }
  185. // Request for the `CreateConnectivityTest` method.
  186. message CreateConnectivityTestRequest {
  187. // Required. The parent resource of the Connectivity Test to create:
  188. // `projects/{project_id}/locations/global`
  189. string parent = 1 [(google.api.field_behavior) = REQUIRED];
  190. // Required. The logical name of the Connectivity Test in your project
  191. // with the following restrictions:
  192. //
  193. // * Must contain only lowercase letters, numbers, and hyphens.
  194. // * Must start with a letter.
  195. // * Must be between 1-40 characters.
  196. // * Must end with a number or a letter.
  197. // * Must be unique within the customer project
  198. string test_id = 2 [(google.api.field_behavior) = REQUIRED];
  199. // Required. A `ConnectivityTest` resource
  200. ConnectivityTest resource = 3 [(google.api.field_behavior) = REQUIRED];
  201. }
  202. // Request for the `UpdateConnectivityTest` method.
  203. message UpdateConnectivityTestRequest {
  204. // Required. Mask of fields to update. At least one path must be supplied in
  205. // this field.
  206. google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = REQUIRED];
  207. // Required. Only fields specified in update_mask are updated.
  208. ConnectivityTest resource = 2 [(google.api.field_behavior) = REQUIRED];
  209. }
  210. // Request for the `DeleteConnectivityTest` method.
  211. message DeleteConnectivityTestRequest {
  212. // Required. Connectivity Test resource name using the form:
  213. // `projects/{project_id}/locations/global/connectivityTests/{test_id}`
  214. string name = 1 [(google.api.field_behavior) = REQUIRED];
  215. }
  216. // Request for the `RerunConnectivityTest` method.
  217. message RerunConnectivityTestRequest {
  218. // Required. Connectivity Test resource name using the form:
  219. // `projects/{project_id}/locations/global/connectivityTests/{test_id}`
  220. string name = 1 [(google.api.field_behavior) = REQUIRED];
  221. }
  222. // Metadata describing an [Operation][google.longrunning.Operation]
  223. message OperationMetadata {
  224. // The time the operation was created.
  225. google.protobuf.Timestamp create_time = 1;
  226. // The time the operation finished running.
  227. google.protobuf.Timestamp end_time = 2;
  228. // Target of the operation - for example
  229. // projects/project-1/locations/global/connectivityTests/test-1
  230. string target = 3;
  231. // Name of the verb executed by the operation.
  232. string verb = 4;
  233. // Human-readable status of the operation, if any.
  234. string status_detail = 5;
  235. // Specifies if cancellation was requested for the operation.
  236. bool cancel_requested = 6;
  237. // API version.
  238. string api_version = 7;
  239. }