Struct google_api_proto::google::cloud::dialogflow::cx::v3::agents_client::AgentsClient
source · pub struct AgentsClient<T> { /* private fields */ }
Expand description
Service for managing [Agents][google.cloud.dialogflow.cx.v3.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 list_agents(
&mut self,
request: impl IntoRequest<ListAgentsRequest>,
) -> Result<Response<ListAgentsResponse>, Status>
pub async fn list_agents( &mut self, request: impl IntoRequest<ListAgentsRequest>, ) -> Result<Response<ListAgentsResponse>, Status>
Returns the list of all agents in the specified location.
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 create_agent(
&mut self,
request: impl IntoRequest<CreateAgentRequest>,
) -> Result<Response<Agent>, Status>
pub async fn create_agent( &mut self, request: impl IntoRequest<CreateAgentRequest>, ) -> Result<Response<Agent>, Status>
Creates an agent in the specified location.
Note: You should always train flows prior to sending them queries. See the training documentation.
sourcepub async fn update_agent(
&mut self,
request: impl IntoRequest<UpdateAgentRequest>,
) -> Result<Response<Agent>, Status>
pub async fn update_agent( &mut self, request: impl IntoRequest<UpdateAgentRequest>, ) -> Result<Response<Agent>, Status>
Updates the specified agent.
Note: You should always train flows prior to sending them 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 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 binary 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.cx.v3.ExportAgentResponse]
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 binary file.
Replaces the current agent with a new one. Note that all existing resources in agent (e.g. intents, entity types, flows) will be removed.
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 flows prior to sending them queries. See the training documentation.
sourcepub async fn validate_agent(
&mut self,
request: impl IntoRequest<ValidateAgentRequest>,
) -> Result<Response<AgentValidationResult>, Status>
pub async fn validate_agent( &mut self, request: impl IntoRequest<ValidateAgentRequest>, ) -> Result<Response<AgentValidationResult>, Status>
Validates the specified agent and creates or updates validation results. The agent in draft version is validated. Please call this API after the training is completed to get the complete validation results.
sourcepub async fn get_agent_validation_result(
&mut self,
request: impl IntoRequest<GetAgentValidationResultRequest>,
) -> Result<Response<AgentValidationResult>, Status>
pub async fn get_agent_validation_result( &mut self, request: impl IntoRequest<GetAgentValidationResultRequest>, ) -> Result<Response<AgentValidationResult>, Status>
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
sourcepub async fn get_generative_settings(
&mut self,
request: impl IntoRequest<GetGenerativeSettingsRequest>,
) -> Result<Response<GenerativeSettings>, Status>
pub async fn get_generative_settings( &mut self, request: impl IntoRequest<GetGenerativeSettingsRequest>, ) -> Result<Response<GenerativeSettings>, Status>
Gets the generative settings for the agent.
sourcepub async fn update_generative_settings(
&mut self,
request: impl IntoRequest<UpdateGenerativeSettingsRequest>,
) -> Result<Response<GenerativeSettings>, Status>
pub async fn update_generative_settings( &mut self, request: impl IntoRequest<UpdateGenerativeSettingsRequest>, ) -> Result<Response<GenerativeSettings>, Status>
Updates the generative settings for the agent.
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