# 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 # Adds or updates a suggestion feature in a conversation profile. # If the conversation profile contains the type of suggestion feature for # the participant role, it will update it. Otherwise it will insert the # suggestion feature. # # This method is a [long-running # operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations). # The returned `Operation` type has the following method-specific fields: # # - `metadata`: # [SetSuggestionFeatureConfigOperationMetadata][google.cloud.dialogflow.v2.SetSuggestionFeatureConfigOperationMetadata] # - `response`: # [ConversationProfile][google.cloud.dialogflow.v2.ConversationProfile] # # If a long running operation to add or update suggestion feature # config for the same conversation profile, participant role and suggestion # feature type exists, please cancel the existing long running operation # before sending such request, otherwise the request will be rejected. rpc :SetSuggestionFeatureConfig, ::Google::Cloud::Dialogflow::V2::SetSuggestionFeatureConfigRequest, ::Google::Longrunning::Operation # Clears a suggestion feature from a conversation profile for the given # participant role. # # This method is a [long-running # operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations). # The returned `Operation` type has the following method-specific fields: # # - `metadata`: # [ClearSuggestionFeatureConfigOperationMetadata][google.cloud.dialogflow.v2.ClearSuggestionFeatureConfigOperationMetadata] # - `response`: # [ConversationProfile][google.cloud.dialogflow.v2.ConversationProfile] rpc :ClearSuggestionFeatureConfig, ::Google::Cloud::Dialogflow::V2::ClearSuggestionFeatureConfigRequest, ::Google::Longrunning::Operation end Stub = Service.rpc_stub_class end end end end end