Struct google_api_proto::google::cloud::dialogflow::v2beta1::agents_client::AgentsClient
source · pub struct AgentsClient<T> { /* private fields */ }
Expand description
Service for managing [Agents][google.cloud.dialogflow.v2beta1.Agent].
Implementations§
source§impl<T> AgentsClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> AgentsClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> AgentsClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
sourcepub async fn get_agent(
&mut self,
request: impl IntoRequest<GetAgentRequest>,
) -> Result<Response<Agent>, Status>
pub async fn get_agent( &mut self, request: impl IntoRequest<GetAgentRequest>, ) -> Result<Response<Agent>, Status>
Retrieves the specified agent.
sourcepub async fn set_agent(
&mut self,
request: impl IntoRequest<SetAgentRequest>,
) -> Result<Response<Agent>, Status>
pub async fn set_agent( &mut self, request: impl IntoRequest<SetAgentRequest>, ) -> Result<Response<Agent>, Status>
Creates/updates the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
sourcepub async fn delete_agent(
&mut self,
request: impl IntoRequest<DeleteAgentRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_agent( &mut self, request: impl IntoRequest<DeleteAgentRequest>, ) -> Result<Response<()>, Status>
Deletes the specified agent.
sourcepub async fn search_agents(
&mut self,
request: impl IntoRequest<SearchAgentsRequest>,
) -> Result<Response<SearchAgentsResponse>, Status>
pub async fn search_agents( &mut self, request: impl IntoRequest<SearchAgentsRequest>, ) -> Result<Response<SearchAgentsResponse>, Status>
Returns the list of agents. Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id “-”. Refer to List Sub-Collections.
sourcepub async fn train_agent(
&mut self,
request: impl IntoRequest<TrainAgentRequest>,
) -> Result<Response<Operation>, Status>
pub async fn train_agent( &mut self, request: impl IntoRequest<TrainAgentRequest>, ) -> Result<Response<Operation>, Status>
Trains the specified agent.
This method is a long-running
operation.
The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: An Empty message
Note: You should always train an agent prior to sending it queries. See the training documentation.
sourcepub async fn export_agent(
&mut self,
request: impl IntoRequest<ExportAgentRequest>,
) -> Result<Response<Operation>, Status>
pub async fn export_agent( &mut self, request: impl IntoRequest<ExportAgentRequest>, ) -> Result<Response<Operation>, Status>
Exports the specified agent to a ZIP file.
This method is a long-running
operation.
The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: [ExportAgentResponse][google.cloud.dialogflow.v2beta1.ExportAgentResponse]
sourcepub async fn import_agent(
&mut self,
request: impl IntoRequest<ImportAgentRequest>,
) -> Result<Response<Operation>, Status>
pub async fn import_agent( &mut self, request: impl IntoRequest<ImportAgentRequest>, ) -> Result<Response<Operation>, Status>
Imports the specified agent from a ZIP file.
Uploads new intents and entity types without deleting the existing ones. Intents and entity types with the same name are replaced with the new versions from [ImportAgentRequest][google.cloud.dialogflow.v2beta1.ImportAgentRequest]. After the import, the imported draft agent will be trained automatically (unless disabled in agent settings). However, once the import is done, training may not be completed yet. Please call [TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent] and wait for the operation it returns in order to train explicitly.
This method is a long-running
operation.
The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: An Empty message
The operation only tracks when importing is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
sourcepub async fn restore_agent(
&mut self,
request: impl IntoRequest<RestoreAgentRequest>,
) -> Result<Response<Operation>, Status>
pub async fn restore_agent( &mut self, request: impl IntoRequest<RestoreAgentRequest>, ) -> Result<Response<Operation>, Status>
Restores the specified agent from a ZIP file.
Replaces the current agent version with a new one. All the intents and entity types in the older version are deleted. After the restore, the restored draft agent will be trained automatically (unless disabled in agent settings). However, once the restore is done, training may not be completed yet. Please call [TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent] and wait for the operation it returns in order to train explicitly.
This method is a long-running
operation.
The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: An Empty message
The operation only tracks when restoring is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
sourcepub async fn get_validation_result(
&mut self,
request: impl IntoRequest<GetValidationResultRequest>,
) -> Result<Response<ValidationResult>, Status>
pub async fn get_validation_result( &mut self, request: impl IntoRequest<GetValidationResultRequest>, ) -> Result<Response<ValidationResult>, Status>
Gets agent validation result. Agent validation is performed during training time and is updated automatically when training is completed.
Trait Implementations§
source§impl<T: Clone> Clone for AgentsClient<T>
impl<T: Clone> Clone for AgentsClient<T>
source§fn clone(&self) -> AgentsClient<T>
fn clone(&self) -> AgentsClient<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for AgentsClient<T>
impl<T> RefUnwindSafe for AgentsClient<T>where
T: RefUnwindSafe,
impl<T> Send for AgentsClient<T>where
T: Send,
impl<T> Sync for AgentsClient<T>where
T: Sync,
impl<T> Unpin for AgentsClient<T>where
T: Unpin,
impl<T> UnwindSafe for AgentsClient<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request