Struct gapi_grpc::google::cloud::contactcenterinsights::v1::contact_center_insights_client::ContactCenterInsightsClient[][src]

pub struct ContactCenterInsightsClient<T> { /* fields omitted */ }

An API that lets users analyze and explore their business conversation data.

Implementations

impl ContactCenterInsightsClient<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> ContactCenterInsightsClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn create_conversation(
    &mut self,
    request: impl IntoRequest<CreateConversationRequest>
) -> Result<Response<Conversation>, Status>
[src]

Creates a conversation.

pub async fn update_conversation(
    &mut self,
    request: impl IntoRequest<UpdateConversationRequest>
) -> Result<Response<Conversation>, Status>
[src]

Updates a conversation.

pub async fn get_conversation(
    &mut self,
    request: impl IntoRequest<GetConversationRequest>
) -> Result<Response<Conversation>, Status>
[src]

Gets a conversation.

pub async fn list_conversations(
    &mut self,
    request: impl IntoRequest<ListConversationsRequest>
) -> Result<Response<ListConversationsResponse>, Status>
[src]

Lists conversations.

pub async fn delete_conversation(
    &mut self,
    request: impl IntoRequest<DeleteConversationRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a conversation.

pub async fn create_analysis(
    &mut self,
    request: impl IntoRequest<CreateAnalysisRequest>
) -> Result<Response<Operation>, Status>
[src]

Creates an analysis. The long running operation is done when the analysis has completed.

pub async fn get_analysis(
    &mut self,
    request: impl IntoRequest<GetAnalysisRequest>
) -> Result<Response<Analysis>, Status>
[src]

Gets an analysis.

pub async fn list_analyses(
    &mut self,
    request: impl IntoRequest<ListAnalysesRequest>
) -> Result<Response<ListAnalysesResponse>, Status>
[src]

Lists analyses.

pub async fn delete_analysis(
    &mut self,
    request: impl IntoRequest<DeleteAnalysisRequest>
) -> Result<Response<()>, Status>
[src]

Deletes an analysis.

pub async fn export_insights_data(
    &mut self,
    request: impl IntoRequest<ExportInsightsDataRequest>
) -> Result<Response<Operation>, Status>
[src]

Export insights data to a destination defined in the request body.

pub async fn get_issue_model(
    &mut self,
    request: impl IntoRequest<GetIssueModelRequest>
) -> Result<Response<IssueModel>, Status>
[src]

Gets an issue model.

pub async fn list_issue_models(
    &mut self,
    request: impl IntoRequest<ListIssueModelsRequest>
) -> Result<Response<ListIssueModelsResponse>, Status>
[src]

Lists issue models.

pub async fn get_issue(
    &mut self,
    request: impl IntoRequest<GetIssueRequest>
) -> Result<Response<Issue>, Status>
[src]

Gets an issue.

pub async fn list_issues(
    &mut self,
    request: impl IntoRequest<ListIssuesRequest>
) -> Result<Response<ListIssuesResponse>, Status>
[src]

Lists issues.

pub async fn calculate_issue_model_stats(
    &mut self,
    request: impl IntoRequest<CalculateIssueModelStatsRequest>
) -> Result<Response<CalculateIssueModelStatsResponse>, Status>
[src]

Gets an issue model’s statistics.

pub async fn create_phrase_matcher(
    &mut self,
    request: impl IntoRequest<CreatePhraseMatcherRequest>
) -> Result<Response<PhraseMatcher>, Status>
[src]

Creates a phrase matcher.

pub async fn get_phrase_matcher(
    &mut self,
    request: impl IntoRequest<GetPhraseMatcherRequest>
) -> Result<Response<PhraseMatcher>, Status>
[src]

Gets a phrase matcher.

pub async fn list_phrase_matchers(
    &mut self,
    request: impl IntoRequest<ListPhraseMatchersRequest>
) -> Result<Response<ListPhraseMatchersResponse>, Status>
[src]

Lists phrase matchers.

pub async fn delete_phrase_matcher(
    &mut self,
    request: impl IntoRequest<DeletePhraseMatcherRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a phrase matcher.

pub async fn calculate_stats(
    &mut self,
    request: impl IntoRequest<CalculateStatsRequest>
) -> Result<Response<CalculateStatsResponse>, Status>
[src]

Gets conversation statistics.

pub async fn get_settings(
    &mut self,
    request: impl IntoRequest<GetSettingsRequest>
) -> Result<Response<Settings>, Status>
[src]

Gets project-level settings.

pub async fn update_settings(
    &mut self,
    request: impl IntoRequest<UpdateSettingsRequest>
) -> Result<Response<Settings>, Status>
[src]

Updates project-level settings.

Trait Implementations

impl<T: Clone> Clone for ContactCenterInsightsClient<T>[src]

impl<T> Debug for ContactCenterInsightsClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ContactCenterInsightsClient<T>

impl<T> Send for ContactCenterInsightsClient<T> where
    T: Send

impl<T> Sync for ContactCenterInsightsClient<T> where
    T: Sync

impl<T> Unpin for ContactCenterInsightsClient<T> where
    T: Unpin

impl<T> !UnwindSafe for ContactCenterInsightsClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]