# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: google/cloud/dialogflow/v2/conversation_profile.proto for package 'google.cloud.dialogflow.v2' # 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/dialogflow/v2/conversation_profile_pb' module Google module Cloud module Dialogflow module V2 module ConversationProfiles # Service for managing [ConversationProfiles][google.cloud.dialogflow.v2.ConversationProfile]. class Service include ::GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'google.cloud.dialogflow.v2.ConversationProfiles' # Returns the list of all conversation profiles in the specified project. rpc :ListConversationProfiles, ::Google::Cloud::Dialogflow::V2::ListConversationProfilesRequest, ::Google::Cloud::Dialogflow::V2::ListConversationProfilesResponse # Retrieves the specified conversation profile. rpc :GetConversationProfile, ::Google::Cloud::Dialogflow::V2::GetConversationProfileRequest, ::Google::Cloud::Dialogflow::V2::ConversationProfile # Creates a conversation profile in the specified project. # # [ConversationProfile.CreateTime][] and [ConversationProfile.UpdateTime][] # aren't populated in the response. You can retrieve them via # [GetConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.GetConversationProfile] API. rpc :CreateConversationProfile, ::Google::Cloud::Dialogflow::V2::CreateConversationProfileRequest, ::Google::Cloud::Dialogflow::V2::ConversationProfile # Updates the specified conversation profile. # # [ConversationProfile.CreateTime][] and [ConversationProfile.UpdateTime][] # aren't populated in the response. You can retrieve them via # [GetConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.GetConversationProfile] API. rpc :UpdateConversationProfile, ::Google::Cloud::Dialogflow::V2::UpdateConversationProfileRequest, ::Google::Cloud::Dialogflow::V2::ConversationProfile # Deletes the specified conversation profile. rpc :DeleteConversationProfile, ::Google::Cloud::Dialogflow::V2::DeleteConversationProfileRequest, ::Google::Protobuf::Empty end Stub = Service.rpc_stub_class end end end end end