# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: google/cloud/networkconnectivity/v1/hub.proto for package 'Google.Cloud.NetworkConnectivity.V1' # Original file comments: # Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'grpc' require 'google/cloud/networkconnectivity/v1/hub_pb' module Google module Cloud module NetworkConnectivity module V1 module HubService # Network Connectivity Center is a hub-and-spoke abstraction for network # connectivity management in Google Cloud. It reduces operational complexity # through a simple, centralized connectivity management model. class Service include GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'google.cloud.networkconnectivity.v1.HubService' # Lists hubs in a given project. rpc :ListHubs, ::Google::Cloud::NetworkConnectivity::V1::ListHubsRequest, ::Google::Cloud::NetworkConnectivity::V1::ListHubsResponse # Gets details about the specified hub. rpc :GetHub, ::Google::Cloud::NetworkConnectivity::V1::GetHubRequest, ::Google::Cloud::NetworkConnectivity::V1::Hub # Creates a new hub in the specified project. rpc :CreateHub, ::Google::Cloud::NetworkConnectivity::V1::CreateHubRequest, ::Google::Longrunning::Operation # Updates the description and/or labels of the specified hub. rpc :UpdateHub, ::Google::Cloud::NetworkConnectivity::V1::UpdateHubRequest, ::Google::Longrunning::Operation # Deletes the specified hub. rpc :DeleteHub, ::Google::Cloud::NetworkConnectivity::V1::DeleteHubRequest, ::Google::Longrunning::Operation # Lists the spokes in the specified project and location. rpc :ListSpokes, ::Google::Cloud::NetworkConnectivity::V1::ListSpokesRequest, ::Google::Cloud::NetworkConnectivity::V1::ListSpokesResponse # Gets details about the specified spoke. rpc :GetSpoke, ::Google::Cloud::NetworkConnectivity::V1::GetSpokeRequest, ::Google::Cloud::NetworkConnectivity::V1::Spoke # Creates a spoke in the specified project and location. rpc :CreateSpoke, ::Google::Cloud::NetworkConnectivity::V1::CreateSpokeRequest, ::Google::Longrunning::Operation # Updates the parameters of the specified spoke. rpc :UpdateSpoke, ::Google::Cloud::NetworkConnectivity::V1::UpdateSpokeRequest, ::Google::Longrunning::Operation # Deactivates the specified spoke. Deactivating keeps the spoke information # for future re-activation, but disconnects the Google Cloud network from # non-Google-Cloud network. rpc :DeactivateSpoke, ::Google::Cloud::NetworkConnectivity::V1::DeactivateSpokeRequest, ::Google::Longrunning::Operation # Activates the specified spoke. Activating reconnects the Google Cloud # network with the non-Google-Cloud network. rpc :ActivateSpoke, ::Google::Cloud::NetworkConnectivity::V1::ActivateSpokeRequest, ::Google::Longrunning::Operation # Deletes the specified spoke. rpc :DeleteSpoke, ::Google::Cloud::NetworkConnectivity::V1::DeleteSpokeRequest, ::Google::Longrunning::Operation end Stub = Service.rpc_stub_class end end end end end