hub.proto 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. // Copyright 2020 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.networkconnectivity.v1alpha1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.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.NetworkConnectivity.V1Alpha1";
  24. option go_package = "google.golang.org/genproto/googleapis/cloud/networkconnectivity/v1alpha1;networkconnectivity";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "HubProto";
  27. option java_package = "com.google.cloud.networkconnectivity.v1alpha1";
  28. option php_namespace = "Google\\Cloud\\NetworkConnectivity\\V1alpha1";
  29. option ruby_package = "Google::Cloud::NetworkConnectivity::V1alpha1";
  30. option (google.api.resource_definition) = {
  31. type: "compute.googleapis.com/VpnTunnel"
  32. pattern: "projects/{project}/regions/{region}/vpnTunnels/{resource_id}"
  33. };
  34. option (google.api.resource_definition) = {
  35. type: "compute.googleapis.com/InterconnectAttachment"
  36. pattern: "projects/{project}/regions/{region}/interconnectAttachments/{resource_id}"
  37. };
  38. option (google.api.resource_definition) = {
  39. type: "compute.googleapis.com/Instance"
  40. pattern: "projects/{project}/zones/{zone}/instances/{instance}"
  41. };
  42. // Network Connectivity Center is a hub-and-spoke abstraction for
  43. // network connectivity management in Google Cloud. It reduces
  44. // operational complexity through a simple, centralized connectivity management
  45. // model.
  46. service HubService {
  47. option (google.api.default_host) = "networkconnectivity.googleapis.com";
  48. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  49. // Lists Hubs in a given project and location.
  50. rpc ListHubs(ListHubsRequest) returns (ListHubsResponse) {
  51. option (google.api.http) = {
  52. get: "/v1alpha1/{parent=projects/*/locations/global}/hubs"
  53. };
  54. option (google.api.method_signature) = "parent";
  55. }
  56. // Gets details of a single Hub.
  57. rpc GetHub(GetHubRequest) returns (Hub) {
  58. option (google.api.http) = {
  59. get: "/v1alpha1/{name=projects/*/locations/global/hubs/*}"
  60. };
  61. option (google.api.method_signature) = "name";
  62. }
  63. // Creates a new Hub in a given project and location.
  64. rpc CreateHub(CreateHubRequest) returns (google.longrunning.Operation) {
  65. option (google.api.http) = {
  66. post: "/v1alpha1/{parent=projects/*/locations/global}/hubs"
  67. body: "hub"
  68. };
  69. option (google.api.method_signature) = "parent,hub,hub_id";
  70. option (google.longrunning.operation_info) = {
  71. response_type: "Hub"
  72. metadata_type: "OperationMetadata"
  73. };
  74. }
  75. // Updates the parameters of a single Hub.
  76. rpc UpdateHub(UpdateHubRequest) returns (google.longrunning.Operation) {
  77. option (google.api.http) = {
  78. patch: "/v1alpha1/{hub.name=projects/*/locations/global/hubs/*}"
  79. body: "hub"
  80. };
  81. option (google.api.method_signature) = "hub,update_mask";
  82. option (google.longrunning.operation_info) = {
  83. response_type: "Hub"
  84. metadata_type: "OperationMetadata"
  85. };
  86. }
  87. // Deletes a single Hub.
  88. rpc DeleteHub(DeleteHubRequest) returns (google.longrunning.Operation) {
  89. option (google.api.http) = {
  90. delete: "/v1alpha1/{name=projects/*/locations/global/hubs/*}"
  91. };
  92. option (google.api.method_signature) = "name";
  93. option (google.longrunning.operation_info) = {
  94. response_type: "google.protobuf.Empty"
  95. metadata_type: "OperationMetadata"
  96. };
  97. }
  98. // Lists Spokes in a given project and location.
  99. rpc ListSpokes(ListSpokesRequest) returns (ListSpokesResponse) {
  100. option (google.api.http) = {
  101. get: "/v1alpha1/{parent=projects/*/locations/*}/spokes"
  102. };
  103. option (google.api.method_signature) = "parent";
  104. }
  105. // Gets details of a single Spoke.
  106. rpc GetSpoke(GetSpokeRequest) returns (Spoke) {
  107. option (google.api.http) = {
  108. get: "/v1alpha1/{name=projects/*/locations/*/spokes/*}"
  109. };
  110. option (google.api.method_signature) = "name";
  111. }
  112. // Creates a new Spoke in a given project and location.
  113. rpc CreateSpoke(CreateSpokeRequest) returns (google.longrunning.Operation) {
  114. option (google.api.http) = {
  115. post: "/v1alpha1/{parent=projects/*/locations/*}/spokes"
  116. body: "spoke"
  117. };
  118. option (google.api.method_signature) = "parent,spoke,spoke_id";
  119. option (google.longrunning.operation_info) = {
  120. response_type: "Spoke"
  121. metadata_type: "OperationMetadata"
  122. };
  123. }
  124. // Updates the parameters of a single Spoke.
  125. rpc UpdateSpoke(UpdateSpokeRequest) returns (google.longrunning.Operation) {
  126. option (google.api.http) = {
  127. patch: "/v1alpha1/{spoke.name=projects/*/locations/*/spokes/*}"
  128. body: "spoke"
  129. };
  130. option (google.api.method_signature) = "spoke,update_mask";
  131. option (google.longrunning.operation_info) = {
  132. response_type: "Spoke"
  133. metadata_type: "OperationMetadata"
  134. };
  135. }
  136. // Deletes a single Spoke.
  137. rpc DeleteSpoke(DeleteSpokeRequest) returns (google.longrunning.Operation) {
  138. option (google.api.http) = {
  139. delete: "/v1alpha1/{name=projects/*/locations/*/spokes/*}"
  140. };
  141. option (google.api.method_signature) = "name";
  142. option (google.longrunning.operation_info) = {
  143. response_type: "google.protobuf.Empty"
  144. metadata_type: "OperationMetadata"
  145. };
  146. }
  147. }
  148. // Network Connectivity Center is a hub-and-spoke abstraction for
  149. // network connectivity management in Google Cloud. It reduces
  150. // operational complexity through a simple, centralized connectivity management
  151. // model. Following is the resource message of a hub.
  152. message Hub {
  153. option (google.api.resource) = {
  154. type: "networkconnectivity.googleapis.com/Hub"
  155. pattern: "projects/{project}/locations/global/hubs/{hub}"
  156. };
  157. // Immutable. The name of a Hub resource.
  158. string name = 1 [(google.api.field_behavior) = IMMUTABLE];
  159. // Time when the Hub was created.
  160. google.protobuf.Timestamp create_time = 2;
  161. // Time when the Hub was updated.
  162. google.protobuf.Timestamp update_time = 3;
  163. // User-defined labels.
  164. map<string, string> labels = 4;
  165. // Short description of the hub resource.
  166. string description = 5;
  167. // Output only. A list of the URIs of all attached spokes
  168. repeated string spokes = 6 [
  169. (google.api.field_behavior) = OUTPUT_ONLY,
  170. (google.api.resource_reference) = {
  171. type: "networkconnectivity.googleapis.com/Spoke"
  172. }
  173. ];
  174. // Output only. Google-generated UUID for this resource. This is unique across all Hub
  175. // resources. If a Hub resource is deleted and another with the same name is
  176. // created, it gets a different unique_id.
  177. string unique_id = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  178. // Output only. The current lifecycle state of this Hub.
  179. State state = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  180. }
  181. // A Spoke is an abstraction of a network attachment being attached
  182. // to a Hub. A Spoke can be underlying a VPN tunnel, a
  183. // VLAN (interconnect) attachment, a Router appliance, etc.
  184. message Spoke {
  185. option (google.api.resource) = {
  186. type: "networkconnectivity.googleapis.com/Spoke"
  187. pattern: "projects/{project}/locations/{location}/spokes/{spoke}"
  188. };
  189. // Immutable. The name of a Spoke resource.
  190. string name = 1 [(google.api.field_behavior) = IMMUTABLE];
  191. // The time when the Spoke was created.
  192. google.protobuf.Timestamp create_time = 2;
  193. // The time when the Spoke was updated.
  194. google.protobuf.Timestamp update_time = 3;
  195. // User-defined labels.
  196. map<string, string> labels = 4;
  197. // Short description of the spoke resource
  198. string description = 5;
  199. // The resource URL of the hub resource that the spoke is attached to
  200. string hub = 6 [(google.api.resource_reference) = {
  201. type: "networkconnectivity.googleapis.com/Hub"
  202. }];
  203. // The URIs of linked VPN tunnel resources
  204. repeated string linked_vpn_tunnels = 12 [(google.api.resource_reference) = {
  205. type: "compute.googleapis.com/VpnTunnel"
  206. }];
  207. // The URIs of linked interconnect attachment resources
  208. repeated string linked_interconnect_attachments = 13 [(google.api.resource_reference) = {
  209. type: "compute.googleapis.com/InterconnectAttachment"
  210. }];
  211. // The URIs of linked Router appliance resources
  212. repeated RouterApplianceInstance linked_router_appliance_instances = 14;
  213. // Output only. Google-generated UUID for this resource. This is unique across all Spoke
  214. // resources. If a Spoke resource is deleted and another with the same name is
  215. // created, it gets a different unique_id.
  216. string unique_id = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  217. // Output only. The current lifecycle state of this Hub.
  218. State state = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
  219. }
  220. // Request for [HubService.ListHubs][google.cloud.networkconnectivity.v1alpha1.HubService.ListHubs] method.
  221. message ListHubsRequest {
  222. // Required. The parent resource's name.
  223. string parent = 1 [
  224. (google.api.field_behavior) = REQUIRED,
  225. (google.api.resource_reference) = {
  226. type: "locations.googleapis.com/Location"
  227. }
  228. ];
  229. // The maximum number of results per page that should be returned.
  230. int32 page_size = 2;
  231. // The page token.
  232. string page_token = 3;
  233. // A filter expression that filters the results listed in the response.
  234. string filter = 4;
  235. // Sort the results by a certain order.
  236. string order_by = 5;
  237. }
  238. // Response for [HubService.ListHubs][google.cloud.networkconnectivity.v1alpha1.HubService.ListHubs] method.
  239. message ListHubsResponse {
  240. // Hubs to be returned.
  241. repeated Hub hubs = 1;
  242. // The next pagination token in the List response. It should be used as
  243. // page_token for the following request. An empty value means no more result.
  244. string next_page_token = 2;
  245. // Locations that could not be reached.
  246. repeated string unreachable = 3;
  247. }
  248. // Request for [HubService.GetHub][google.cloud.networkconnectivity.v1alpha1.HubService.GetHub] method.
  249. message GetHubRequest {
  250. // Required. Name of the Hub resource to get.
  251. string name = 1 [
  252. (google.api.field_behavior) = REQUIRED,
  253. (google.api.resource_reference) = {
  254. type: "networkconnectivity.googleapis.com/Hub"
  255. }
  256. ];
  257. }
  258. // Request for [HubService.CreateHub][google.cloud.networkconnectivity.v1alpha1.HubService.CreateHub] method.
  259. message CreateHubRequest {
  260. // Required. The parent resource's name of the Hub.
  261. string parent = 1 [
  262. (google.api.field_behavior) = REQUIRED,
  263. (google.api.resource_reference) = {
  264. type: "locations.googleapis.com/Location"
  265. }
  266. ];
  267. // Optional. Unique id for the Hub to create.
  268. string hub_id = 2 [(google.api.field_behavior) = OPTIONAL];
  269. // Required. Initial values for a new Hub.
  270. Hub hub = 3 [(google.api.field_behavior) = REQUIRED];
  271. // Optional. An optional request ID to identify requests. Specify a unique request ID
  272. // so that if you must retry your request, the server will know to ignore
  273. // the request if it has already been completed. The server will guarantee
  274. // that for at least 60 minutes since the first request.
  275. //
  276. // For example, consider a situation where you make an initial request and t
  277. // he request times out. If you make the request again with the same request
  278. // ID, the server can check if original operation with the same request ID
  279. // was received, and if so, will ignore the second request. This prevents
  280. // clients from accidentally creating duplicate commitments.
  281. //
  282. // The request ID must be a valid UUID with the exception that zero UUID is
  283. // not supported (00000000-0000-0000-0000-000000000000).
  284. string request_id = 4 [(google.api.field_behavior) = OPTIONAL];
  285. }
  286. // Request for [HubService.UpdateHub][google.cloud.networkconnectivity.v1alpha1.HubService.UpdateHub] method.
  287. message UpdateHubRequest {
  288. // Optional. Field mask is used to specify the fields to be overwritten in the
  289. // Hub resource by the update.
  290. // The fields specified in the update_mask are relative to the resource, not
  291. // the full request. A field will be overwritten if it is in the mask. If the
  292. // user does not provide a mask then all fields will be overwritten.
  293. google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = OPTIONAL];
  294. // Required. The state that the Hub should be in after the update.
  295. Hub hub = 2 [(google.api.field_behavior) = REQUIRED];
  296. // Optional. An optional request ID to identify requests. Specify a unique request ID
  297. // so that if you must retry your request, the server will know to ignore
  298. // the request if it has already been completed. The server will guarantee
  299. // that for at least 60 minutes since the first request.
  300. //
  301. // For example, consider a situation where you make an initial request and t
  302. // he request times out. If you make the request again with the same request
  303. // ID, the server can check if original operation with the same request ID
  304. // was received, and if so, will ignore the second request. This prevents
  305. // clients from accidentally creating duplicate commitments.
  306. //
  307. // The request ID must be a valid UUID with the exception that zero UUID is
  308. // not supported (00000000-0000-0000-0000-000000000000).
  309. string request_id = 3 [(google.api.field_behavior) = OPTIONAL];
  310. }
  311. // The request for [HubService.DeleteHub][google.cloud.networkconnectivity.v1alpha1.HubService.DeleteHub].
  312. message DeleteHubRequest {
  313. // Required. The name of the Hub to delete.
  314. string name = 1 [
  315. (google.api.field_behavior) = REQUIRED,
  316. (google.api.resource_reference) = {
  317. type: "networkconnectivity.googleapis.com/Hub"
  318. }
  319. ];
  320. // Optional. An optional request ID to identify requests. Specify a unique request ID
  321. // so that if you must retry your request, the server will know to ignore
  322. // the request if it has already been completed. The server will guarantee
  323. // that for at least 60 minutes after the first request.
  324. //
  325. // For example, consider a situation where you make an initial request and t
  326. // he request times out. If you make the request again with the same request
  327. // ID, the server can check if original operation with the same request ID
  328. // was received, and if so, will ignore the second request. This prevents
  329. // clients from accidentally creating duplicate commitments.
  330. //
  331. // The request ID must be a valid UUID with the exception that zero UUID is
  332. // not supported (00000000-0000-0000-0000-000000000000).
  333. string request_id = 2 [(google.api.field_behavior) = OPTIONAL];
  334. }
  335. // The request for [HubService.ListSpokes][google.cloud.networkconnectivity.v1alpha1.HubService.ListSpokes].
  336. message ListSpokesRequest {
  337. // Required. The parent's resource name.
  338. string parent = 1 [
  339. (google.api.field_behavior) = REQUIRED,
  340. (google.api.resource_reference) = {
  341. type: "locations.googleapis.com/Location"
  342. }
  343. ];
  344. // The maximum number of results per page that should be returned.
  345. int32 page_size = 2;
  346. // The page token.
  347. string page_token = 3;
  348. // A filter expression that filters the results listed in the response.
  349. string filter = 4;
  350. // Sort the results by a certain order.
  351. string order_by = 5;
  352. }
  353. // The response for [HubService.ListSpokes][google.cloud.networkconnectivity.v1alpha1.HubService.ListSpokes].
  354. message ListSpokesResponse {
  355. // Spokes to be returned.
  356. repeated Spoke spokes = 1;
  357. // The next pagination token in the List response. It should be used as
  358. // page_token for the following request. An empty value means no more result.
  359. string next_page_token = 2;
  360. // Locations that could not be reached.
  361. repeated string unreachable = 3;
  362. }
  363. // The request for [HubService.GetSpoke][google.cloud.networkconnectivity.v1alpha1.HubService.GetSpoke].
  364. message GetSpokeRequest {
  365. // Required. The name of Spoke resource.
  366. string name = 1 [
  367. (google.api.field_behavior) = REQUIRED,
  368. (google.api.resource_reference) = {
  369. type: "networkconnectivity.googleapis.com/Spoke"
  370. }
  371. ];
  372. }
  373. // The request for [HubService.CreateSpoke][google.cloud.networkconnectivity.v1alpha1.HubService.CreateSpoke].
  374. message CreateSpokeRequest {
  375. // Required. The parent's resource name of the Spoke.
  376. string parent = 1 [
  377. (google.api.field_behavior) = REQUIRED,
  378. (google.api.resource_reference) = {
  379. type: "locations.googleapis.com/Location"
  380. }
  381. ];
  382. // Optional. Unique id for the Spoke to create.
  383. string spoke_id = 2 [(google.api.field_behavior) = OPTIONAL];
  384. // Required. Initial values for a new Hub.
  385. Spoke spoke = 3 [(google.api.field_behavior) = REQUIRED];
  386. // Optional. An optional request ID to identify requests. Specify a unique request ID
  387. // so that if you must retry your request, the server will know to ignore
  388. // the request if it has already been completed. The server will guarantee
  389. // that for at least 60 minutes since the first request.
  390. //
  391. // For example, consider a situation where you make an initial request and t
  392. // he request times out. If you make the request again with the same request
  393. // ID, the server can check if original operation with the same request ID
  394. // was received, and if so, will ignore the second request. This prevents
  395. // clients from accidentally creating duplicate commitments.
  396. //
  397. // The request ID must be a valid UUID with the exception that zero UUID is
  398. // not supported (00000000-0000-0000-0000-000000000000).
  399. string request_id = 4 [(google.api.field_behavior) = OPTIONAL];
  400. }
  401. // Request for [HubService.UpdateSpoke][google.cloud.networkconnectivity.v1alpha1.HubService.UpdateSpoke] method.
  402. message UpdateSpokeRequest {
  403. // Optional. Field mask is used to specify the fields to be overwritten in the
  404. // Spoke resource by the update.
  405. // The fields specified in the update_mask are relative to the resource, not
  406. // the full request. A field will be overwritten if it is in the mask. If the
  407. // user does not provide a mask then all fields will be overwritten.
  408. google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = OPTIONAL];
  409. // Required. The state that the Spoke should be in after the update.
  410. Spoke spoke = 2 [(google.api.field_behavior) = REQUIRED];
  411. // Optional. An optional request ID to identify requests. Specify a unique request ID
  412. // so that if you must retry your request, the server will know to ignore
  413. // the request if it has already been completed. The server will guarantee
  414. // that for at least 60 minutes since the first request.
  415. //
  416. // For example, consider a situation where you make an initial request and t
  417. // he request times out. If you make the request again with the same request
  418. // ID, the server can check if original operation with the same request ID
  419. // was received, and if so, will ignore the second request. This prevents
  420. // clients from accidentally creating duplicate commitments.
  421. //
  422. // The request ID must be a valid UUID with the exception that zero UUID is
  423. // not supported (00000000-0000-0000-0000-000000000000).
  424. string request_id = 3 [(google.api.field_behavior) = OPTIONAL];
  425. }
  426. // The request for [HubService.DeleteSpoke][google.cloud.networkconnectivity.v1alpha1.HubService.DeleteSpoke].
  427. message DeleteSpokeRequest {
  428. // Required. The name of the Spoke to delete.
  429. string name = 1 [
  430. (google.api.field_behavior) = REQUIRED,
  431. (google.api.resource_reference) = {
  432. type: "networkconnectivity.googleapis.com/Spoke"
  433. }
  434. ];
  435. // Optional. An optional request ID to identify requests. Specify a unique request ID
  436. // so that if you must retry your request, the server will know to ignore
  437. // the request if it has already been completed. The server will guarantee
  438. // that for at least 60 minutes after the first request.
  439. //
  440. // For example, consider a situation where you make an initial request and t
  441. // he request times out. If you make the request again with the same request
  442. // ID, the server can check if original operation with the same request ID
  443. // was received, and if so, will ignore the second request. This prevents
  444. // clients from accidentally creating duplicate commitments.
  445. //
  446. // The request ID must be a valid UUID with the exception that zero UUID is
  447. // not supported (00000000-0000-0000-0000-000000000000).
  448. string request_id = 2 [(google.api.field_behavior) = OPTIONAL];
  449. }
  450. // RouterAppliance represents a Router appliance which is specified by a VM URI
  451. // and a NIC address.
  452. message RouterApplianceInstance {
  453. // The URI of the virtual machine resource
  454. string virtual_machine = 1 [(google.api.resource_reference) = {
  455. type: "compute.googleapis.com/Instance"
  456. }];
  457. // The IP address of the network interface to use for peering.
  458. string ip_address = 3;
  459. string network_interface = 2 [deprecated = true];
  460. }
  461. // The State enum represents the lifecycle of a Network Connectivity Center
  462. // resource.
  463. enum State {
  464. // No state information available
  465. STATE_UNSPECIFIED = 0;
  466. // The resource's create operation is in progress
  467. CREATING = 1;
  468. // The resource is active
  469. ACTIVE = 2;
  470. // The resource's Delete operation is in progress
  471. DELETING = 3;
  472. }