Struct google_api_proto::google::cloud::dialogflow::cx::v3beta1::flows_client::FlowsClient
source · pub struct FlowsClient<T> { /* private fields */ }
Expand description
Service for managing [Flows][google.cloud.dialogflow.cx.v3beta1.Flow].
Implementations§
source§impl<T> FlowsClient<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> FlowsClient<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,
) -> FlowsClient<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 create_flow(
&mut self,
request: impl IntoRequest<CreateFlowRequest>,
) -> Result<Response<Flow>, Status>
pub async fn create_flow( &mut self, request: impl IntoRequest<CreateFlowRequest>, ) -> Result<Response<Flow>, Status>
Creates a flow in the specified agent.
Note: You should always train a flow prior to sending it queries. See the training documentation.
sourcepub async fn delete_flow(
&mut self,
request: impl IntoRequest<DeleteFlowRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_flow( &mut self, request: impl IntoRequest<DeleteFlowRequest>, ) -> Result<Response<()>, Status>
Deletes a specified flow.
sourcepub async fn list_flows(
&mut self,
request: impl IntoRequest<ListFlowsRequest>,
) -> Result<Response<ListFlowsResponse>, Status>
pub async fn list_flows( &mut self, request: impl IntoRequest<ListFlowsRequest>, ) -> Result<Response<ListFlowsResponse>, Status>
Returns the list of all flows in the specified agent.
sourcepub async fn get_flow(
&mut self,
request: impl IntoRequest<GetFlowRequest>,
) -> Result<Response<Flow>, Status>
pub async fn get_flow( &mut self, request: impl IntoRequest<GetFlowRequest>, ) -> Result<Response<Flow>, Status>
Retrieves the specified flow.
sourcepub async fn update_flow(
&mut self,
request: impl IntoRequest<UpdateFlowRequest>,
) -> Result<Response<Flow>, Status>
pub async fn update_flow( &mut self, request: impl IntoRequest<UpdateFlowRequest>, ) -> Result<Response<Flow>, Status>
Updates the specified flow.
Note: You should always train a flow prior to sending it queries. See the training documentation.
sourcepub async fn train_flow(
&mut self,
request: impl IntoRequest<TrainFlowRequest>,
) -> Result<Response<Operation>, Status>
pub async fn train_flow( &mut self, request: impl IntoRequest<TrainFlowRequest>, ) -> Result<Response<Operation>, Status>
Trains the specified flow. Note that only the flow in ‘draft’ environment is trained.
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 a flow prior to sending it queries. See the training documentation.
sourcepub async fn validate_flow(
&mut self,
request: impl IntoRequest<ValidateFlowRequest>,
) -> Result<Response<FlowValidationResult>, Status>
pub async fn validate_flow( &mut self, request: impl IntoRequest<ValidateFlowRequest>, ) -> Result<Response<FlowValidationResult>, Status>
Validates the specified flow and creates or updates validation results. Please call this API after the training is completed to get the complete validation results.
sourcepub async fn get_flow_validation_result(
&mut self,
request: impl IntoRequest<GetFlowValidationResultRequest>,
) -> Result<Response<FlowValidationResult>, Status>
pub async fn get_flow_validation_result( &mut self, request: impl IntoRequest<GetFlowValidationResultRequest>, ) -> Result<Response<FlowValidationResult>, Status>
Gets the latest flow validation result. Flow validation is performed when ValidateFlow is called.
sourcepub async fn import_flow(
&mut self,
request: impl IntoRequest<ImportFlowRequest>,
) -> Result<Response<Operation>, Status>
pub async fn import_flow( &mut self, request: impl IntoRequest<ImportFlowRequest>, ) -> Result<Response<Operation>, Status>
Imports the specified flow to the specified agent from 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
: [ImportFlowResponse][google.cloud.dialogflow.cx.v3beta1.ImportFlowResponse]
Note: You should always train a flow prior to sending it queries. See the training documentation.
sourcepub async fn export_flow(
&mut self,
request: impl IntoRequest<ExportFlowRequest>,
) -> Result<Response<Operation>, Status>
pub async fn export_flow( &mut self, request: impl IntoRequest<ExportFlowRequest>, ) -> Result<Response<Operation>, Status>
Exports the specified flow 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
: [ExportFlowResponse][google.cloud.dialogflow.cx.v3beta1.ExportFlowResponse]
Note that resources (e.g. intents, entities, webhooks) that the flow references will also be exported.
Trait Implementations§
source§impl<T: Clone> Clone for FlowsClient<T>
impl<T: Clone> Clone for FlowsClient<T>
source§fn clone(&self) -> FlowsClient<T>
fn clone(&self) -> FlowsClient<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 FlowsClient<T>
impl<T> RefUnwindSafe for FlowsClient<T>where
T: RefUnwindSafe,
impl<T> Send for FlowsClient<T>where
T: Send,
impl<T> Sync for FlowsClient<T>where
T: Sync,
impl<T> Unpin for FlowsClient<T>where
T: Unpin,
impl<T> UnwindSafe for FlowsClient<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