# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: google/cloud/recommendationengine/v1beta1/catalog_service.proto for package 'Google.Cloud.RecommendationEngine.V1beta1' # Original file comments: # Copyright 2020 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/recommendationengine/v1beta1/catalog_service_pb' module Google module Cloud module RecommendationEngine module V1beta1 module CatalogService # Service for ingesting catalog information of the customer's website. class Service include ::GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'google.cloud.recommendationengine.v1beta1.CatalogService' # Creates a catalog item. rpc :CreateCatalogItem, ::Google::Cloud::RecommendationEngine::V1beta1::CreateCatalogItemRequest, ::Google::Cloud::RecommendationEngine::V1beta1::CatalogItem # Gets a specific catalog item. rpc :GetCatalogItem, ::Google::Cloud::RecommendationEngine::V1beta1::GetCatalogItemRequest, ::Google::Cloud::RecommendationEngine::V1beta1::CatalogItem # Gets a list of catalog items. rpc :ListCatalogItems, ::Google::Cloud::RecommendationEngine::V1beta1::ListCatalogItemsRequest, ::Google::Cloud::RecommendationEngine::V1beta1::ListCatalogItemsResponse # Updates a catalog item. Partial updating is supported. Non-existing # items will be created. rpc :UpdateCatalogItem, ::Google::Cloud::RecommendationEngine::V1beta1::UpdateCatalogItemRequest, ::Google::Cloud::RecommendationEngine::V1beta1::CatalogItem # Deletes a catalog item. rpc :DeleteCatalogItem, ::Google::Cloud::RecommendationEngine::V1beta1::DeleteCatalogItemRequest, ::Google::Protobuf::Empty # Bulk import of multiple catalog items. Request processing may be # synchronous. No partial updating supported. Non-existing items will be # created. # # Operation.response is of type ImportResponse. Note that it is # possible for a subset of the items to be successfully updated. rpc :ImportCatalogItems, ::Google::Cloud::RecommendationEngine::V1beta1::ImportCatalogItemsRequest, ::Google::Longrunning::Operation end Stub = Service.rpc_stub_class end end end end end