@Generated("by gapic-generator-java")
Package com.google.cloud.dialogflow.v2
The interfaces provided are listed below, along with usage samples.
======================= AgentsClient =======================
Service Description: Service for managing [Agents][google.cloud.dialogflow.v2.Agent].
Sample for AgentsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Agent response = agentsClient.getAgent(parent);
}
======================= AnswerRecordsClient =======================
Service Description: Service for managing [AnswerRecords][google.cloud.dialogflow.v2.AnswerRecord].
Sample for AnswerRecordsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AnswerRecordsClient answerRecordsClient = AnswerRecordsClient.create()) {
AnswerRecord answerRecord = AnswerRecord.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
AnswerRecord response = answerRecordsClient.updateAnswerRecord(answerRecord, updateMask);
}
======================= ContextsClient =======================
Service Description: Service for managing [Contexts][google.cloud.dialogflow.v2.Context].
Sample for ContextsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
ContextName name =
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]");
Context response = contextsClient.getContext(name);
}
======================= ConversationsClient =======================
Service Description: Service for managing [Conversations][google.cloud.dialogflow.v2.Conversation].
Sample for ConversationsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ConversationsClient conversationsClient = ConversationsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Conversation conversation = Conversation.newBuilder().build();
Conversation response = conversationsClient.createConversation(parent, conversation);
}
======================= ConversationDatasetsClient =======================
Service Description: Conversation datasets.
Conversation datasets contain raw conversation files and their customizable metadata that can be used for model training.
Sample for ConversationDatasetsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ConversationDatasetsClient conversationDatasetsClient =
ConversationDatasetsClient.create()) {
ConversationDatasetName name =
ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]");
ConversationDataset response = conversationDatasetsClient.getConversationDataset(name);
}
======================= ConversationModelsClient =======================
Service Description: Manages a collection of models for human agent assistant.
Sample for ConversationModelsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ConversationModelsClient conversationModelsClient = ConversationModelsClient.create()) {
String name = "name3373707";
ConversationModel response = conversationModelsClient.getConversationModel(name);
}
======================= ConversationProfilesClient =======================
Service Description: Service for managing [ConversationProfiles][google.cloud.dialogflow.v2.ConversationProfile].
Sample for ConversationProfilesClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ConversationProfilesClient conversationProfilesClient =
ConversationProfilesClient.create()) {
ConversationProfileName name =
ConversationProfileName.ofProjectConversationProfileName(
"[PROJECT]", "[CONVERSATION_PROFILE]");
ConversationProfile response = conversationProfilesClient.getConversationProfile(name);
}
======================= DocumentsClient =======================
Service Description: Service for managing knowledge [Documents][google.cloud.dialogflow.v2.Document].
Sample for DocumentsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (DocumentsClient documentsClient = DocumentsClient.create()) {
DocumentName name =
DocumentName.ofProjectKnowledgeBaseDocumentName(
"[PROJECT]", "[KNOWLEDGE_BASE]", "[DOCUMENT]");
Document response = documentsClient.getDocument(name);
}
======================= EntityTypesClient =======================
Service Description: Service for managing [EntityTypes][google.cloud.dialogflow.v2.EntityType].
Sample for EntityTypesClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (EntityTypesClient entityTypesClient = EntityTypesClient.create()) {
EntityTypeName name = EntityTypeName.ofProjectEntityTypeName("[PROJECT]", "[ENTITY_TYPE]");
EntityType response = entityTypesClient.getEntityType(name);
}
======================= EnvironmentsClient =======================
Service Description: Service for managing [Environments][google.cloud.dialogflow.v2.Environment].
Sample for EnvironmentsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (EnvironmentsClient environmentsClient = EnvironmentsClient.create()) {
GetEnvironmentRequest request =
GetEnvironmentRequest.newBuilder()
.setName(
EnvironmentName.ofProjectEnvironmentName("[PROJECT]", "[ENVIRONMENT]").toString())
.build();
Environment response = environmentsClient.getEnvironment(request);
}
======================= FulfillmentsClient =======================
Service Description: Service for managing [Fulfillments][google.cloud.dialogflow.v2.Fulfillment].
Sample for FulfillmentsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (FulfillmentsClient fulfillmentsClient = FulfillmentsClient.create()) {
FulfillmentName name = FulfillmentName.ofProjectName("[PROJECT]");
Fulfillment response = fulfillmentsClient.getFulfillment(name);
}
======================= IntentsClient =======================
Service Description: Service for managing [Intents][google.cloud.dialogflow.v2.Intent].
Sample for IntentsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (IntentsClient intentsClient = IntentsClient.create()) {
IntentName name = IntentName.ofProjectIntentName("[PROJECT]", "[INTENT]");
Intent response = intentsClient.getIntent(name);
}
======================= KnowledgeBasesClient =======================
Service Description: Service for managing [KnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBase].
Sample for KnowledgeBasesClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
KnowledgeBaseName name =
KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]");
KnowledgeBase response = knowledgeBasesClient.getKnowledgeBase(name);
}
======================= ParticipantsClient =======================
Service Description: Service for managing [Participants][google.cloud.dialogflow.v2.Participant].
Sample for ParticipantsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ParticipantsClient participantsClient = ParticipantsClient.create()) {
ConversationName parent =
ConversationName.ofProjectConversationName("[PROJECT]", "[CONVERSATION]");
Participant participant = Participant.newBuilder().build();
Participant response = participantsClient.createParticipant(parent, participant);
}
======================= SessionsClient =======================
Service Description: A service used for session interactions.
For more information, see the [API interactions guide](https://cloud.google.com/dialogflow/docs/api-overview).
Sample for SessionsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionsClient sessionsClient = SessionsClient.create()) {
SessionName session = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]");
QueryInput queryInput = QueryInput.newBuilder().build();
DetectIntentResponse response = sessionsClient.detectIntent(session, queryInput);
}
======================= SessionEntityTypesClient =======================
Service Description: Service for managing [SessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityType].
Sample for SessionEntityTypesClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
SessionEntityTypeName name =
SessionEntityTypeName.ofProjectSessionEntityTypeName(
"[PROJECT]", "[SESSION]", "[ENTITY_TYPE]");
SessionEntityType response = sessionEntityTypesClient.getSessionEntityType(name);
}
======================= VersionsClient =======================
Service Description: Service for managing [Versions][google.cloud.dialogflow.v2.Version].
Sample for VersionsClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (VersionsClient versionsClient = VersionsClient.create()) {
VersionName name = VersionName.ofProjectVersionName("[PROJECT]", "[VERSION]");
Version response = versionsClient.getVersion(name);
}
-
Class Summary Class Description Agent A Dialogflow agent is a virtual agent that handles conversations with your end-users.Agent.Builder A Dialogflow agent is a virtual agent that handles conversations with your end-users.AgentAssistantFeedback Detail feedback of Agent Assist result.AgentAssistantFeedback.Builder Detail feedback of Agent Assist result.AgentAssistantFeedback.KnowledgeSearchFeedback Feedback for knowledge search.AgentAssistantFeedback.KnowledgeSearchFeedback.Builder Feedback for knowledge search.AgentAssistantFeedback.SummarizationFeedback Feedback for conversation summarization.AgentAssistantFeedback.SummarizationFeedback.Builder Feedback for conversation summarization.AgentAssistantRecord Represents a record of a human agent assist answer.AgentAssistantRecord.Builder Represents a record of a human agent assist answer.AgentName AgentName.Builder Builder for projects/{project}/agent.AgentName.ProjectLocationBuilder Builder for projects/{project}/locations/{location}/agent.AgentProto AgentsClient Service Description: Service for managing [Agents][google.cloud.dialogflow.v2.Agent].AgentsClient.ListLocationsFixedSizeCollection AgentsClient.ListLocationsPage AgentsClient.ListLocationsPagedResponse AgentsClient.SearchAgentsFixedSizeCollection AgentsClient.SearchAgentsPage AgentsClient.SearchAgentsPagedResponse AgentsGrpc Service for managing [Agents][google.cloud.dialogflow.v2.Agent].AgentsGrpc.AgentsBlockingStub A stub to allow clients to do synchronous rpc calls to service Agents.AgentsGrpc.AgentsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Agents.AgentsGrpc.AgentsImplBase Base class for the server implementation of the service Agents.AgentsGrpc.AgentsStub A stub to allow clients to do asynchronous rpc calls to service Agents.AgentsSettings Settings class to configure an instance ofAgentsClient
.AgentsSettings.Builder Builder for AgentsSettings.AnalyzeContentRequest The request message for [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent].AnalyzeContentRequest.Builder The request message for [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent].AnalyzeContentResponse The response message for [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent].AnalyzeContentResponse.Builder The response message for [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent].AnnotatedMessagePart Represents a part of a message possibly annotated with an entity.AnnotatedMessagePart.Builder Represents a part of a message possibly annotated with an entity.AnswerFeedback Represents feedback the customer has about the quality & correctness of a certain answer in a conversation.AnswerFeedback.Builder Represents feedback the customer has about the quality & correctness of a certain answer in a conversation.AnswerRecord Answer records are records to manage answer history and feedbacks for Dialogflow.AnswerRecord.Builder Answer records are records to manage answer history and feedbacks for Dialogflow.AnswerRecordName AnswerRecordName.Builder Builder for projects/{project}/answerRecords/{answer_record}.AnswerRecordName.ProjectLocationAnswerRecordBuilder Builder for projects/{project}/locations/{location}/answerRecords/{answer_record}.AnswerRecordsClient Service Description: Service for managing [AnswerRecords][google.cloud.dialogflow.v2.AnswerRecord].AnswerRecordsClient.ListAnswerRecordsFixedSizeCollection AnswerRecordsClient.ListAnswerRecordsPage AnswerRecordsClient.ListAnswerRecordsPagedResponse AnswerRecordsClient.ListLocationsFixedSizeCollection AnswerRecordsClient.ListLocationsPage AnswerRecordsClient.ListLocationsPagedResponse AnswerRecordsGrpc Service for managing [AnswerRecords][google.cloud.dialogflow.v2.AnswerRecord].AnswerRecordsGrpc.AnswerRecordsBlockingStub A stub to allow clients to do synchronous rpc calls to service AnswerRecords.AnswerRecordsGrpc.AnswerRecordsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service AnswerRecords.AnswerRecordsGrpc.AnswerRecordsImplBase Base class for the server implementation of the service AnswerRecords.AnswerRecordsGrpc.AnswerRecordsStub A stub to allow clients to do asynchronous rpc calls to service AnswerRecords.AnswerRecordsProto AnswerRecordsSettings Settings class to configure an instance ofAnswerRecordsClient
.AnswerRecordsSettings.Builder Builder for AnswerRecordsSettings.ArticleAnswer Represents article answer.ArticleAnswer.Builder Represents article answer.ArticleSuggestionModelMetadata Metadata for article suggestion models.ArticleSuggestionModelMetadata.Builder Metadata for article suggestion models.AssistQueryParameters Represents the parameters of human assist query.AssistQueryParameters.Builder Represents the parameters of human assist query.AudioConfigProto AutomatedAgentConfig Defines the Automated Agent to connect to a conversation.AutomatedAgentConfig.Builder Defines the Automated Agent to connect to a conversation.AutomatedAgentReply Represents a response from an automated agent.AutomatedAgentReply.Builder Represents a response from an automated agent.BatchCreateEntitiesRequest The request message for [EntityTypes.BatchCreateEntities][google.cloud.dialogflow.v2.EntityTypes.BatchCreateEntities].BatchCreateEntitiesRequest.Builder The request message for [EntityTypes.BatchCreateEntities][google.cloud.dialogflow.v2.EntityTypes.BatchCreateEntities].BatchDeleteEntitiesRequest The request message for [EntityTypes.BatchDeleteEntities][google.cloud.dialogflow.v2.EntityTypes.BatchDeleteEntities].BatchDeleteEntitiesRequest.Builder The request message for [EntityTypes.BatchDeleteEntities][google.cloud.dialogflow.v2.EntityTypes.BatchDeleteEntities].BatchDeleteEntityTypesRequest The request message for [EntityTypes.BatchDeleteEntityTypes][google.cloud.dialogflow.v2.EntityTypes.BatchDeleteEntityTypes].BatchDeleteEntityTypesRequest.Builder The request message for [EntityTypes.BatchDeleteEntityTypes][google.cloud.dialogflow.v2.EntityTypes.BatchDeleteEntityTypes].BatchDeleteIntentsRequest The request message for [Intents.BatchDeleteIntents][google.cloud.dialogflow.v2.Intents.BatchDeleteIntents].BatchDeleteIntentsRequest.Builder The request message for [Intents.BatchDeleteIntents][google.cloud.dialogflow.v2.Intents.BatchDeleteIntents].BatchUpdateEntitiesRequest The request message for [EntityTypes.BatchUpdateEntities][google.cloud.dialogflow.v2.EntityTypes.BatchUpdateEntities].BatchUpdateEntitiesRequest.Builder The request message for [EntityTypes.BatchUpdateEntities][google.cloud.dialogflow.v2.EntityTypes.BatchUpdateEntities].BatchUpdateEntityTypesRequest The request message for [EntityTypes.BatchUpdateEntityTypes][google.cloud.dialogflow.v2.EntityTypes.BatchUpdateEntityTypes].BatchUpdateEntityTypesRequest.Builder The request message for [EntityTypes.BatchUpdateEntityTypes][google.cloud.dialogflow.v2.EntityTypes.BatchUpdateEntityTypes].BatchUpdateEntityTypesResponse The response message for [EntityTypes.BatchUpdateEntityTypes][google.cloud.dialogflow.v2.EntityTypes.BatchUpdateEntityTypes].BatchUpdateEntityTypesResponse.Builder The response message for [EntityTypes.BatchUpdateEntityTypes][google.cloud.dialogflow.v2.EntityTypes.BatchUpdateEntityTypes].BatchUpdateIntentsRequest Protobuf typegoogle.cloud.dialogflow.v2.BatchUpdateIntentsRequest
BatchUpdateIntentsRequest.Builder Protobuf typegoogle.cloud.dialogflow.v2.BatchUpdateIntentsRequest
BatchUpdateIntentsResponse The response message for [Intents.BatchUpdateIntents][google.cloud.dialogflow.v2.Intents.BatchUpdateIntents].BatchUpdateIntentsResponse.Builder The response message for [Intents.BatchUpdateIntents][google.cloud.dialogflow.v2.Intents.BatchUpdateIntents].ClearSuggestionFeatureConfigOperationMetadata Metadata for a [ConversationProfile.ClearSuggestionFeatureConfig][] operation.ClearSuggestionFeatureConfigOperationMetadata.Builder Metadata for a [ConversationProfile.ClearSuggestionFeatureConfig][] operation.ClearSuggestionFeatureConfigRequest The request message for [ConversationProfiles.ClearFeature][].ClearSuggestionFeatureConfigRequest.Builder The request message for [ConversationProfiles.ClearFeature][].CloudConversationDebuggingInfo Cloud conversation info for easier debugging.CloudConversationDebuggingInfo.Builder Cloud conversation info for easier debugging.CompleteConversationRequest The request message for [Conversations.CompleteConversation][google.cloud.dialogflow.v2.Conversations.CompleteConversation].CompleteConversationRequest.Builder The request message for [Conversations.CompleteConversation][google.cloud.dialogflow.v2.Conversations.CompleteConversation].Context Dialogflow contexts are similar to natural language context.Context.Builder Dialogflow contexts are similar to natural language context.ContextName ContextName.Builder Builder for projects/{project}/agent/sessions/{session}/contexts/{context}.ContextName.ProjectEnvironmentUserSessionContextBuilder Builder for projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session}/contexts/{context}.ContextName.ProjectLocationEnvironmentUserSessionContextBuilder Builder for projects/{project}/locations/{location}/agent/environments/{environment}/users/{user}/sessions/{session}/contexts/{context}.ContextName.ProjectLocationSessionContextBuilder Builder for projects/{project}/locations/{location}/agent/sessions/{session}/contexts/{context}.ContextProto ContextsClient Service Description: Service for managing [Contexts][google.cloud.dialogflow.v2.Context].ContextsClient.ListContextsFixedSizeCollection ContextsClient.ListContextsPage ContextsClient.ListContextsPagedResponse ContextsClient.ListLocationsFixedSizeCollection ContextsClient.ListLocationsPage ContextsClient.ListLocationsPagedResponse ContextsGrpc Service for managing [Contexts][google.cloud.dialogflow.v2.Context].ContextsGrpc.ContextsBlockingStub A stub to allow clients to do synchronous rpc calls to service Contexts.ContextsGrpc.ContextsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Contexts.ContextsGrpc.ContextsImplBase Base class for the server implementation of the service Contexts.ContextsGrpc.ContextsStub A stub to allow clients to do asynchronous rpc calls to service Contexts.ContextsSettings Settings class to configure an instance ofContextsClient
.ContextsSettings.Builder Builder for ContextsSettings.Conversation Represents a conversation.Conversation.Builder Represents a conversation.ConversationDataset Represents a conversation dataset that a user imports raw data into.ConversationDataset.Builder Represents a conversation dataset that a user imports raw data into.ConversationDatasetName ConversationDatasetName.Builder Builder for projects/{project}/locations/{location}/conversationDatasets/{conversation_dataset}.ConversationDatasetProto ConversationDatasetsClient Service Description: Conversation datasets.ConversationDatasetsClient.ListConversationDatasetsFixedSizeCollection ConversationDatasetsClient.ListConversationDatasetsPage ConversationDatasetsClient.ListConversationDatasetsPagedResponse ConversationDatasetsClient.ListLocationsFixedSizeCollection ConversationDatasetsClient.ListLocationsPage ConversationDatasetsClient.ListLocationsPagedResponse ConversationDatasetsGrpc Conversation datasets.ConversationDatasetsGrpc.ConversationDatasetsBlockingStub A stub to allow clients to do synchronous rpc calls to service ConversationDatasets.ConversationDatasetsGrpc.ConversationDatasetsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ConversationDatasets.ConversationDatasetsGrpc.ConversationDatasetsImplBase Base class for the server implementation of the service ConversationDatasets.ConversationDatasetsGrpc.ConversationDatasetsStub A stub to allow clients to do asynchronous rpc calls to service ConversationDatasets.ConversationDatasetsSettings Settings class to configure an instance ofConversationDatasetsClient
.ConversationDatasetsSettings.Builder Builder for ConversationDatasetsSettings.ConversationEvent Represents a notification sent to Pub/Sub subscribers for conversation lifecycle events.ConversationEvent.Builder Represents a notification sent to Pub/Sub subscribers for conversation lifecycle events.ConversationEventProto ConversationInfo Represents metadata of a conversation.ConversationInfo.Builder Represents metadata of a conversation.ConversationModel Represents a conversation model.ConversationModel.Builder Represents a conversation model.ConversationModelEvaluation Represents evaluation result of a conversation model.ConversationModelEvaluation.Builder Represents evaluation result of a conversation model.ConversationModelEvaluationName ConversationModelEvaluationName.Builder Builder for projects/{project}/conversationModels/{conversation_model}/evaluations/{evaluation}.ConversationModelEvaluationName.ProjectLocationConversationModelEvaluationBuilder Builder for projects/{project}/locations/{location}/conversationModels/{conversation_model}/evaluations/{evaluation}.ConversationModelName ConversationModelName.Builder Builder for projects/{project}/locations/{location}/conversationModels/{conversation_model}.ConversationModelName.ProjectConversationModelBuilder Builder for projects/{project}/conversationModels/{conversation_model}.ConversationModelProto ConversationModelsClient Service Description: Manages a collection of models for human agent assistant.ConversationModelsClient.ListConversationModelEvaluationsFixedSizeCollection ConversationModelsClient.ListConversationModelEvaluationsPage ConversationModelsClient.ListConversationModelEvaluationsPagedResponse ConversationModelsClient.ListConversationModelsFixedSizeCollection ConversationModelsClient.ListConversationModelsPage ConversationModelsClient.ListConversationModelsPagedResponse ConversationModelsClient.ListLocationsFixedSizeCollection ConversationModelsClient.ListLocationsPage ConversationModelsClient.ListLocationsPagedResponse ConversationModelsGrpc Manages a collection of models for human agent assistant.ConversationModelsGrpc.ConversationModelsBlockingStub A stub to allow clients to do synchronous rpc calls to service ConversationModels.ConversationModelsGrpc.ConversationModelsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ConversationModels.ConversationModelsGrpc.ConversationModelsImplBase Base class for the server implementation of the service ConversationModels.ConversationModelsGrpc.ConversationModelsStub A stub to allow clients to do asynchronous rpc calls to service ConversationModels.ConversationModelsSettings Settings class to configure an instance ofConversationModelsClient
.ConversationModelsSettings.Builder Builder for ConversationModelsSettings.ConversationName ConversationName.Builder Builder for projects/{project}/conversations/{conversation}.ConversationName.ProjectLocationConversationBuilder Builder for projects/{project}/locations/{location}/conversations/{conversation}.ConversationPhoneNumber Represents a phone number for telephony integration.ConversationPhoneNumber.Builder Represents a phone number for telephony integration.ConversationProfile Defines the services to connect to incoming Dialogflow conversations.ConversationProfile.Builder Defines the services to connect to incoming Dialogflow conversations.ConversationProfileName ConversationProfileName.Builder Builder for projects/{project}/conversationProfiles/{conversation_profile}.ConversationProfileName.ProjectLocationConversationProfileBuilder Builder for projects/{project}/locations/{location}/conversationProfiles/{conversation_profile}.ConversationProfileProto ConversationProfilesClient Service Description: Service for managing [ConversationProfiles][google.cloud.dialogflow.v2.ConversationProfile].ConversationProfilesClient.ListConversationProfilesFixedSizeCollection ConversationProfilesClient.ListConversationProfilesPage ConversationProfilesClient.ListConversationProfilesPagedResponse ConversationProfilesClient.ListLocationsFixedSizeCollection ConversationProfilesClient.ListLocationsPage ConversationProfilesClient.ListLocationsPagedResponse ConversationProfilesGrpc Service for managing [ConversationProfiles][google.cloud.dialogflow.v2.ConversationProfile].ConversationProfilesGrpc.ConversationProfilesBlockingStub A stub to allow clients to do synchronous rpc calls to service ConversationProfiles.ConversationProfilesGrpc.ConversationProfilesFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ConversationProfiles.ConversationProfilesGrpc.ConversationProfilesImplBase Base class for the server implementation of the service ConversationProfiles.ConversationProfilesGrpc.ConversationProfilesStub A stub to allow clients to do asynchronous rpc calls to service ConversationProfiles.ConversationProfilesSettings Settings class to configure an instance ofConversationProfilesClient
.ConversationProfilesSettings.Builder Builder for ConversationProfilesSettings.ConversationProto ConversationsClient Service Description: Service for managing [Conversations][google.cloud.dialogflow.v2.Conversation].ConversationsClient.ListConversationsFixedSizeCollection ConversationsClient.ListConversationsPage ConversationsClient.ListConversationsPagedResponse ConversationsClient.ListLocationsFixedSizeCollection ConversationsClient.ListLocationsPage ConversationsClient.ListLocationsPagedResponse ConversationsClient.ListMessagesFixedSizeCollection ConversationsClient.ListMessagesPage ConversationsClient.ListMessagesPagedResponse ConversationsGrpc Service for managing [Conversations][google.cloud.dialogflow.v2.Conversation].ConversationsGrpc.ConversationsBlockingStub A stub to allow clients to do synchronous rpc calls to service Conversations.ConversationsGrpc.ConversationsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Conversations.ConversationsGrpc.ConversationsImplBase Base class for the server implementation of the service Conversations.ConversationsGrpc.ConversationsStub A stub to allow clients to do asynchronous rpc calls to service Conversations.ConversationsSettings Settings class to configure an instance ofConversationsClient
.ConversationsSettings.Builder Builder for ConversationsSettings.CreateContextRequest The request message for [Contexts.CreateContext][google.cloud.dialogflow.v2.Contexts.CreateContext].CreateContextRequest.Builder The request message for [Contexts.CreateContext][google.cloud.dialogflow.v2.Contexts.CreateContext].CreateConversationDatasetOperationMetadata Metadata for [ConversationDatasets][CreateConversationDataset].CreateConversationDatasetOperationMetadata.Builder Metadata for [ConversationDatasets][CreateConversationDataset].CreateConversationDatasetRequest The request message for [ConversationDatasets.CreateConversationDataset][google.cloud.dialogflow.v2.ConversationDatasets.CreateConversationDataset].CreateConversationDatasetRequest.Builder The request message for [ConversationDatasets.CreateConversationDataset][google.cloud.dialogflow.v2.ConversationDatasets.CreateConversationDataset].CreateConversationModelEvaluationOperationMetadata Metadata for a [ConversationModels.CreateConversationModelEvaluation][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModelEvaluation] operation.CreateConversationModelEvaluationOperationMetadata.Builder Metadata for a [ConversationModels.CreateConversationModelEvaluation][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModelEvaluation] operation.CreateConversationModelEvaluationRequest The request message for [ConversationModels.CreateConversationModelEvaluation][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModelEvaluation]CreateConversationModelEvaluationRequest.Builder The request message for [ConversationModels.CreateConversationModelEvaluation][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModelEvaluation]CreateConversationModelOperationMetadata Metadata for a [ConversationModels.CreateConversationModel][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModel] operation.CreateConversationModelOperationMetadata.Builder Metadata for a [ConversationModels.CreateConversationModel][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModel] operation.CreateConversationModelRequest The request message for [ConversationModels.CreateConversationModel][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModel]CreateConversationModelRequest.Builder The request message for [ConversationModels.CreateConversationModel][google.cloud.dialogflow.v2.ConversationModels.CreateConversationModel]CreateConversationProfileRequest The request message for [ConversationProfiles.CreateConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.CreateConversationProfile].CreateConversationProfileRequest.Builder The request message for [ConversationProfiles.CreateConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.CreateConversationProfile].CreateConversationRequest The request message for [Conversations.CreateConversation][google.cloud.dialogflow.v2.Conversations.CreateConversation].CreateConversationRequest.Builder The request message for [Conversations.CreateConversation][google.cloud.dialogflow.v2.Conversations.CreateConversation].CreateDocumentRequest Request message for [Documents.CreateDocument][google.cloud.dialogflow.v2.Documents.CreateDocument].CreateDocumentRequest.Builder Request message for [Documents.CreateDocument][google.cloud.dialogflow.v2.Documents.CreateDocument].CreateEntityTypeRequest The request message for [EntityTypes.CreateEntityType][google.cloud.dialogflow.v2.EntityTypes.CreateEntityType].CreateEntityTypeRequest.Builder The request message for [EntityTypes.CreateEntityType][google.cloud.dialogflow.v2.EntityTypes.CreateEntityType].CreateEnvironmentRequest The request message for [Environments.CreateEnvironment][google.cloud.dialogflow.v2.Environments.CreateEnvironment].CreateEnvironmentRequest.Builder The request message for [Environments.CreateEnvironment][google.cloud.dialogflow.v2.Environments.CreateEnvironment].CreateIntentRequest The request message for [Intents.CreateIntent][google.cloud.dialogflow.v2.Intents.CreateIntent].CreateIntentRequest.Builder The request message for [Intents.CreateIntent][google.cloud.dialogflow.v2.Intents.CreateIntent].CreateKnowledgeBaseRequest Request message for [KnowledgeBases.CreateKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.CreateKnowledgeBase].CreateKnowledgeBaseRequest.Builder Request message for [KnowledgeBases.CreateKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.CreateKnowledgeBase].CreateParticipantRequest The request message for [Participants.CreateParticipant][google.cloud.dialogflow.v2.Participants.CreateParticipant].CreateParticipantRequest.Builder The request message for [Participants.CreateParticipant][google.cloud.dialogflow.v2.Participants.CreateParticipant].CreateSessionEntityTypeRequest The request message for [SessionEntityTypes.CreateSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.CreateSessionEntityType].CreateSessionEntityTypeRequest.Builder The request message for [SessionEntityTypes.CreateSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.CreateSessionEntityType].CreateVersionRequest The request message for [Versions.CreateVersion][google.cloud.dialogflow.v2.Versions.CreateVersion].CreateVersionRequest.Builder The request message for [Versions.CreateVersion][google.cloud.dialogflow.v2.Versions.CreateVersion].DeleteAgentRequest The request message for [Agents.DeleteAgent][google.cloud.dialogflow.v2.Agents.DeleteAgent].DeleteAgentRequest.Builder The request message for [Agents.DeleteAgent][google.cloud.dialogflow.v2.Agents.DeleteAgent].DeleteAllContextsRequest The request message for [Contexts.DeleteAllContexts][google.cloud.dialogflow.v2.Contexts.DeleteAllContexts].DeleteAllContextsRequest.Builder The request message for [Contexts.DeleteAllContexts][google.cloud.dialogflow.v2.Contexts.DeleteAllContexts].DeleteContextRequest The request message for [Contexts.DeleteContext][google.cloud.dialogflow.v2.Contexts.DeleteContext].DeleteContextRequest.Builder The request message for [Contexts.DeleteContext][google.cloud.dialogflow.v2.Contexts.DeleteContext].DeleteConversationDatasetOperationMetadata Metadata for [ConversationDatasets][DeleteConversationDataset].DeleteConversationDatasetOperationMetadata.Builder Metadata for [ConversationDatasets][DeleteConversationDataset].DeleteConversationDatasetRequest The request message for [ConversationDatasets.DeleteConversationDataset][google.cloud.dialogflow.v2.ConversationDatasets.DeleteConversationDataset].DeleteConversationDatasetRequest.Builder The request message for [ConversationDatasets.DeleteConversationDataset][google.cloud.dialogflow.v2.ConversationDatasets.DeleteConversationDataset].DeleteConversationModelOperationMetadata Metadata for a [ConversationModels.DeleteConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeleteConversationModel] operation.DeleteConversationModelOperationMetadata.Builder Metadata for a [ConversationModels.DeleteConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeleteConversationModel] operation.DeleteConversationModelRequest The request message for [ConversationModels.DeleteConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeleteConversationModel]DeleteConversationModelRequest.Builder The request message for [ConversationModels.DeleteConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeleteConversationModel]DeleteConversationProfileRequest The request message for [ConversationProfiles.DeleteConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.DeleteConversationProfile].DeleteConversationProfileRequest.Builder The request message for [ConversationProfiles.DeleteConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.DeleteConversationProfile].DeleteDocumentRequest Request message for [Documents.DeleteDocument][google.cloud.dialogflow.v2.Documents.DeleteDocument].DeleteDocumentRequest.Builder Request message for [Documents.DeleteDocument][google.cloud.dialogflow.v2.Documents.DeleteDocument].DeleteEntityTypeRequest The request message for [EntityTypes.DeleteEntityType][google.cloud.dialogflow.v2.EntityTypes.DeleteEntityType].DeleteEntityTypeRequest.Builder The request message for [EntityTypes.DeleteEntityType][google.cloud.dialogflow.v2.EntityTypes.DeleteEntityType].DeleteEnvironmentRequest The request message for [Environments.DeleteEnvironment][google.cloud.dialogflow.v2.Environments.DeleteEnvironment].DeleteEnvironmentRequest.Builder The request message for [Environments.DeleteEnvironment][google.cloud.dialogflow.v2.Environments.DeleteEnvironment].DeleteIntentRequest The request message for [Intents.DeleteIntent][google.cloud.dialogflow.v2.Intents.DeleteIntent].DeleteIntentRequest.Builder The request message for [Intents.DeleteIntent][google.cloud.dialogflow.v2.Intents.DeleteIntent].DeleteKnowledgeBaseRequest Request message for [KnowledgeBases.DeleteKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.DeleteKnowledgeBase].DeleteKnowledgeBaseRequest.Builder Request message for [KnowledgeBases.DeleteKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.DeleteKnowledgeBase].DeleteSessionEntityTypeRequest The request message for [SessionEntityTypes.DeleteSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.DeleteSessionEntityType].DeleteSessionEntityTypeRequest.Builder The request message for [SessionEntityTypes.DeleteSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.DeleteSessionEntityType].DeleteVersionRequest The request message for [Versions.DeleteVersion][google.cloud.dialogflow.v2.Versions.DeleteVersion].DeleteVersionRequest.Builder The request message for [Versions.DeleteVersion][google.cloud.dialogflow.v2.Versions.DeleteVersion].DeployConversationModelOperationMetadata Metadata for a [ConversationModels.DeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeployConversationModel] operation.DeployConversationModelOperationMetadata.Builder Metadata for a [ConversationModels.DeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeployConversationModel] operation.DeployConversationModelRequest The request message for [ConversationModels.DeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeployConversationModel]DeployConversationModelRequest.Builder The request message for [ConversationModels.DeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.DeployConversationModel]DetectIntentRequest The request to detect user's intent.DetectIntentRequest.Builder The request to detect user's intent.DetectIntentResponse The message returned from the DetectIntent method.DetectIntentResponse.Builder The message returned from the DetectIntent method.DialogflowAssistAnswer Represents a Dialogflow assist answer.DialogflowAssistAnswer.Builder Represents a Dialogflow assist answer.Document A knowledge document to be used by a [KnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBase].Document.Builder A knowledge document to be used by a [KnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBase].Document.ReloadStatus The status of a reload attempt.Document.ReloadStatus.Builder The status of a reload attempt.DocumentName DocumentName.Builder Builder for projects/{project}/knowledgeBases/{knowledge_base}/documents/{document}.DocumentName.ProjectLocationKnowledgeBaseDocumentBuilder Builder for projects/{project}/locations/{location}/knowledgeBases/{knowledge_base}/documents/{document}.DocumentProto DocumentsClient Service Description: Service for managing knowledge [Documents][google.cloud.dialogflow.v2.Document].DocumentsClient.ListDocumentsFixedSizeCollection DocumentsClient.ListDocumentsPage DocumentsClient.ListDocumentsPagedResponse DocumentsClient.ListLocationsFixedSizeCollection DocumentsClient.ListLocationsPage DocumentsClient.ListLocationsPagedResponse DocumentsGrpc Service for managing knowledge [Documents][google.cloud.dialogflow.v2.Document].DocumentsGrpc.DocumentsBlockingStub A stub to allow clients to do synchronous rpc calls to service Documents.DocumentsGrpc.DocumentsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Documents.DocumentsGrpc.DocumentsImplBase Base class for the server implementation of the service Documents.DocumentsGrpc.DocumentsStub A stub to allow clients to do asynchronous rpc calls to service Documents.DocumentsSettings Settings class to configure an instance ofDocumentsClient
.DocumentsSettings.Builder Builder for DocumentsSettings.DtmfParameters The message in the response that indicates the parameters of DTMF.DtmfParameters.Builder The message in the response that indicates the parameters of DTMF.EntityType Each intent parameter has a type, called the entity type, which dictates exactly how data from an end-user expression is extracted.EntityType.Builder Each intent parameter has a type, called the entity type, which dictates exactly how data from an end-user expression is extracted.EntityType.Entity An **entity entry** for an associated entity type.EntityType.Entity.Builder An **entity entry** for an associated entity type.EntityTypeBatch This message is a wrapper around a collection of entity types.EntityTypeBatch.Builder This message is a wrapper around a collection of entity types.EntityTypeName EntityTypeName.Builder Builder for projects/{project}/agent/entityTypes/{entity_type}.EntityTypeName.ProjectLocationEntityTypeBuilder Builder for projects/{project}/locations/{location}/agent/entityTypes/{entity_type}.EntityTypeProto EntityTypesClient Service Description: Service for managing [EntityTypes][google.cloud.dialogflow.v2.EntityType].EntityTypesClient.ListEntityTypesFixedSizeCollection EntityTypesClient.ListEntityTypesPage EntityTypesClient.ListEntityTypesPagedResponse EntityTypesClient.ListLocationsFixedSizeCollection EntityTypesClient.ListLocationsPage EntityTypesClient.ListLocationsPagedResponse EntityTypesGrpc Service for managing [EntityTypes][google.cloud.dialogflow.v2.EntityType].EntityTypesGrpc.EntityTypesBlockingStub A stub to allow clients to do synchronous rpc calls to service EntityTypes.EntityTypesGrpc.EntityTypesFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service EntityTypes.EntityTypesGrpc.EntityTypesImplBase Base class for the server implementation of the service EntityTypes.EntityTypesGrpc.EntityTypesStub A stub to allow clients to do asynchronous rpc calls to service EntityTypes.EntityTypesSettings Settings class to configure an instance ofEntityTypesClient
.EntityTypesSettings.Builder Builder for EntityTypesSettings.Environment You can create multiple versions of your agent and publish them to separate environments.Environment.Builder You can create multiple versions of your agent and publish them to separate environments.EnvironmentHistory The response message for [Environments.GetEnvironmentHistory][google.cloud.dialogflow.v2.Environments.GetEnvironmentHistory].EnvironmentHistory.Builder The response message for [Environments.GetEnvironmentHistory][google.cloud.dialogflow.v2.Environments.GetEnvironmentHistory].EnvironmentHistory.Entry Represents an environment history entry.EnvironmentHistory.Entry.Builder Represents an environment history entry.EnvironmentName EnvironmentName.Builder Builder for projects/{project}/agent/environments/{environment}.EnvironmentName.ProjectLocationEnvironmentBuilder Builder for projects/{project}/locations/{location}/agent/environments/{environment}.EnvironmentProto EnvironmentsClient Service Description: Service for managing [Environments][google.cloud.dialogflow.v2.Environment].EnvironmentsClient.GetEnvironmentHistoryFixedSizeCollection EnvironmentsClient.GetEnvironmentHistoryPage EnvironmentsClient.GetEnvironmentHistoryPagedResponse EnvironmentsClient.ListEnvironmentsFixedSizeCollection EnvironmentsClient.ListEnvironmentsPage EnvironmentsClient.ListEnvironmentsPagedResponse EnvironmentsClient.ListLocationsFixedSizeCollection EnvironmentsClient.ListLocationsPage EnvironmentsClient.ListLocationsPagedResponse EnvironmentsGrpc Service for managing [Environments][google.cloud.dialogflow.v2.Environment].EnvironmentsGrpc.EnvironmentsBlockingStub A stub to allow clients to do synchronous rpc calls to service Environments.EnvironmentsGrpc.EnvironmentsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Environments.EnvironmentsGrpc.EnvironmentsImplBase Base class for the server implementation of the service Environments.EnvironmentsGrpc.EnvironmentsStub A stub to allow clients to do asynchronous rpc calls to service Environments.EnvironmentsSettings Settings class to configure an instance ofEnvironmentsClient
.EnvironmentsSettings.Builder Builder for EnvironmentsSettings.EvaluationConfig The configuration for model evaluation.EvaluationConfig.Builder The configuration for model evaluation.EvaluationConfig.SmartComposeConfig Smart compose specific configuration for evaluation job.EvaluationConfig.SmartComposeConfig.Builder Smart compose specific configuration for evaluation job.EvaluationConfig.SmartReplyConfig Smart reply specific configuration for evaluation job.EvaluationConfig.SmartReplyConfig.Builder Smart reply specific configuration for evaluation job.EventInput Events allow for matching intents by event name instead of the natural language input.EventInput.Builder Events allow for matching intents by event name instead of the natural language input.ExportAgentRequest The request message for [Agents.ExportAgent][google.cloud.dialogflow.v2.Agents.ExportAgent].ExportAgentRequest.Builder The request message for [Agents.ExportAgent][google.cloud.dialogflow.v2.Agents.ExportAgent].ExportAgentResponse The response message for [Agents.ExportAgent][google.cloud.dialogflow.v2.Agents.ExportAgent].ExportAgentResponse.Builder The response message for [Agents.ExportAgent][google.cloud.dialogflow.v2.Agents.ExportAgent].ExportDocumentRequest Request message for [Documents.ExportDocument][google.cloud.dialogflow.v2.Documents.ExportDocument].ExportDocumentRequest.Builder Request message for [Documents.ExportDocument][google.cloud.dialogflow.v2.Documents.ExportDocument].ExportOperationMetadata Metadata related to the Export Data Operations (e.g.ExportOperationMetadata.Builder Metadata related to the Export Data Operations (e.g.FaqAnswer Represents answer from "frequently asked questions".FaqAnswer.Builder Represents answer from "frequently asked questions".Fulfillment By default, your agent responds to a matched intent with a static response.Fulfillment.Builder By default, your agent responds to a matched intent with a static response.Fulfillment.Feature Whether fulfillment is enabled for the specific feature.Fulfillment.Feature.Builder Whether fulfillment is enabled for the specific feature.Fulfillment.GenericWebService Represents configuration for a generic web service.Fulfillment.GenericWebService.Builder Represents configuration for a generic web service.FulfillmentName FulfillmentName.Builder Builder for projects/{project}/agent/fulfillment.FulfillmentName.ProjectLocationBuilder Builder for projects/{project}/locations/{location}/agent/fulfillment.FulfillmentProto FulfillmentsClient Service Description: Service for managing [Fulfillments][google.cloud.dialogflow.v2.Fulfillment].FulfillmentsClient.ListLocationsFixedSizeCollection FulfillmentsClient.ListLocationsPage FulfillmentsClient.ListLocationsPagedResponse FulfillmentsGrpc Service for managing [Fulfillments][google.cloud.dialogflow.v2.Fulfillment].FulfillmentsGrpc.FulfillmentsBlockingStub A stub to allow clients to do synchronous rpc calls to service Fulfillments.FulfillmentsGrpc.FulfillmentsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Fulfillments.FulfillmentsGrpc.FulfillmentsImplBase Base class for the server implementation of the service Fulfillments.FulfillmentsGrpc.FulfillmentsStub A stub to allow clients to do asynchronous rpc calls to service Fulfillments.FulfillmentsSettings Settings class to configure an instance ofFulfillmentsClient
.FulfillmentsSettings.Builder Builder for FulfillmentsSettings.GcsDestination Google Cloud Storage location for the output.GcsDestination.Builder Google Cloud Storage location for the output.GcsProto GcsSources Google Cloud Storage location for the inputs.GcsSources.Builder Google Cloud Storage location for the inputs.GenerateStatelessSummaryRequest The request message for [Conversations.GenerateStatelessSummary][google.cloud.dialogflow.v2.Conversations.GenerateStatelessSummary].GenerateStatelessSummaryRequest.Builder The request message for [Conversations.GenerateStatelessSummary][google.cloud.dialogflow.v2.Conversations.GenerateStatelessSummary].GenerateStatelessSummaryRequest.MinimalConversation The minimum amount of information required to generate a Summary without having a Conversation resource created.GenerateStatelessSummaryRequest.MinimalConversation.Builder The minimum amount of information required to generate a Summary without having a Conversation resource created.GenerateStatelessSummaryResponse The response message for [Conversations.GenerateStatelessSummary][google.cloud.dialogflow.v2.Conversations.GenerateStatelessSummary].GenerateStatelessSummaryResponse.Builder The response message for [Conversations.GenerateStatelessSummary][google.cloud.dialogflow.v2.Conversations.GenerateStatelessSummary].GenerateStatelessSummaryResponse.Summary Generated summary for a conversation.GenerateStatelessSummaryResponse.Summary.Builder Generated summary for a conversation.GetAgentRequest The request message for [Agents.GetAgent][google.cloud.dialogflow.v2.Agents.GetAgent].GetAgentRequest.Builder The request message for [Agents.GetAgent][google.cloud.dialogflow.v2.Agents.GetAgent].GetContextRequest The request message for [Contexts.GetContext][google.cloud.dialogflow.v2.Contexts.GetContext].GetContextRequest.Builder The request message for [Contexts.GetContext][google.cloud.dialogflow.v2.Contexts.GetContext].GetConversationDatasetRequest The request message for [ConversationDatasets.GetConversationDataset][google.cloud.dialogflow.v2.ConversationDatasets.GetConversationDataset].GetConversationDatasetRequest.Builder The request message for [ConversationDatasets.GetConversationDataset][google.cloud.dialogflow.v2.ConversationDatasets.GetConversationDataset].GetConversationModelEvaluationRequest The request message for [ConversationModels.GetConversationModelEvaluation][google.cloud.dialogflow.v2.ConversationModels.GetConversationModelEvaluation]GetConversationModelEvaluationRequest.Builder The request message for [ConversationModels.GetConversationModelEvaluation][google.cloud.dialogflow.v2.ConversationModels.GetConversationModelEvaluation]GetConversationModelRequest The request message for [ConversationModels.GetConversationModel][google.cloud.dialogflow.v2.ConversationModels.GetConversationModel]GetConversationModelRequest.Builder The request message for [ConversationModels.GetConversationModel][google.cloud.dialogflow.v2.ConversationModels.GetConversationModel]GetConversationProfileRequest The request message for [ConversationProfiles.GetConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.GetConversationProfile].GetConversationProfileRequest.Builder The request message for [ConversationProfiles.GetConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.GetConversationProfile].GetConversationRequest The request message for [Conversations.GetConversation][google.cloud.dialogflow.v2.Conversations.GetConversation].GetConversationRequest.Builder The request message for [Conversations.GetConversation][google.cloud.dialogflow.v2.Conversations.GetConversation].GetDocumentRequest Request message for [Documents.GetDocument][google.cloud.dialogflow.v2.Documents.GetDocument].GetDocumentRequest.Builder Request message for [Documents.GetDocument][google.cloud.dialogflow.v2.Documents.GetDocument].GetEntityTypeRequest The request message for [EntityTypes.GetEntityType][google.cloud.dialogflow.v2.EntityTypes.GetEntityType].GetEntityTypeRequest.Builder The request message for [EntityTypes.GetEntityType][google.cloud.dialogflow.v2.EntityTypes.GetEntityType].GetEnvironmentHistoryRequest The request message for [Environments.GetEnvironmentHistory][google.cloud.dialogflow.v2.Environments.GetEnvironmentHistory].GetEnvironmentHistoryRequest.Builder The request message for [Environments.GetEnvironmentHistory][google.cloud.dialogflow.v2.Environments.GetEnvironmentHistory].GetEnvironmentRequest The request message for [Environments.GetEnvironment][google.cloud.dialogflow.v2.Environments.GetEnvironment].GetEnvironmentRequest.Builder The request message for [Environments.GetEnvironment][google.cloud.dialogflow.v2.Environments.GetEnvironment].GetFulfillmentRequest The request message for [Fulfillments.GetFulfillment][google.cloud.dialogflow.v2.Fulfillments.GetFulfillment].GetFulfillmentRequest.Builder The request message for [Fulfillments.GetFulfillment][google.cloud.dialogflow.v2.Fulfillments.GetFulfillment].GetIntentRequest The request message for [Intents.GetIntent][google.cloud.dialogflow.v2.Intents.GetIntent].GetIntentRequest.Builder The request message for [Intents.GetIntent][google.cloud.dialogflow.v2.Intents.GetIntent].GetKnowledgeBaseRequest Request message for [KnowledgeBases.GetKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.GetKnowledgeBase].GetKnowledgeBaseRequest.Builder Request message for [KnowledgeBases.GetKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.GetKnowledgeBase].GetParticipantRequest The request message for [Participants.GetParticipant][google.cloud.dialogflow.v2.Participants.GetParticipant].GetParticipantRequest.Builder The request message for [Participants.GetParticipant][google.cloud.dialogflow.v2.Participants.GetParticipant].GetSessionEntityTypeRequest The request message for [SessionEntityTypes.GetSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.GetSessionEntityType].GetSessionEntityTypeRequest.Builder The request message for [SessionEntityTypes.GetSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.GetSessionEntityType].GetValidationResultRequest The request message for [Agents.GetValidationResult][google.cloud.dialogflow.v2.Agents.GetValidationResult].GetValidationResultRequest.Builder The request message for [Agents.GetValidationResult][google.cloud.dialogflow.v2.Agents.GetValidationResult].GetVersionRequest The request message for [Versions.GetVersion][google.cloud.dialogflow.v2.Versions.GetVersion].GetVersionRequest.Builder The request message for [Versions.GetVersion][google.cloud.dialogflow.v2.Versions.GetVersion].HumanAgentAssistantConfig Defines the Human Agent Assist to connect to a conversation.HumanAgentAssistantConfig.Builder Defines the Human Agent Assist to connect to a conversation.HumanAgentAssistantConfig.ConversationModelConfig Custom conversation models used in agent assist feature.HumanAgentAssistantConfig.ConversationModelConfig.Builder Custom conversation models used in agent assist feature.HumanAgentAssistantConfig.ConversationProcessConfig Config to process conversation.HumanAgentAssistantConfig.ConversationProcessConfig.Builder Config to process conversation.HumanAgentAssistantConfig.MessageAnalysisConfig Configuration for analyses to run on each conversation message.HumanAgentAssistantConfig.MessageAnalysisConfig.Builder Configuration for analyses to run on each conversation message.HumanAgentAssistantConfig.SuggestionConfig Detail human agent assistant config.HumanAgentAssistantConfig.SuggestionConfig.Builder Detail human agent assistant config.HumanAgentAssistantConfig.SuggestionFeatureConfig Config for suggestion features.HumanAgentAssistantConfig.SuggestionFeatureConfig.Builder Config for suggestion features.HumanAgentAssistantConfig.SuggestionQueryConfig Config for suggestion query.HumanAgentAssistantConfig.SuggestionQueryConfig.Builder Config for suggestion query.HumanAgentAssistantConfig.SuggestionQueryConfig.ContextFilterSettings Settings that determine how to filter recent conversation context when generating suggestions.HumanAgentAssistantConfig.SuggestionQueryConfig.ContextFilterSettings.Builder Settings that determine how to filter recent conversation context when generating suggestions.HumanAgentAssistantConfig.SuggestionQueryConfig.DialogflowQuerySource Dialogflow source setting.HumanAgentAssistantConfig.SuggestionQueryConfig.DialogflowQuerySource.Builder Dialogflow source setting.HumanAgentAssistantConfig.SuggestionQueryConfig.DialogflowQuerySource.HumanAgentSideConfig The configuration used for human agent side Dialogflow assist suggestion.HumanAgentAssistantConfig.SuggestionQueryConfig.DialogflowQuerySource.HumanAgentSideConfig.Builder The configuration used for human agent side Dialogflow assist suggestion.HumanAgentAssistantConfig.SuggestionQueryConfig.DocumentQuerySource Document source settings.HumanAgentAssistantConfig.SuggestionQueryConfig.DocumentQuerySource.Builder Document source settings.HumanAgentAssistantConfig.SuggestionQueryConfig.KnowledgeBaseQuerySource Knowledge base source settings.HumanAgentAssistantConfig.SuggestionQueryConfig.KnowledgeBaseQuerySource.Builder Knowledge base source settings.HumanAgentAssistantConfig.SuggestionTriggerSettings Settings of suggestion trigger.HumanAgentAssistantConfig.SuggestionTriggerSettings.Builder Settings of suggestion trigger.HumanAgentAssistantEvent Represents a notification sent to Cloud Pub/Sub subscribers for human agent assistant events in a specific conversation.HumanAgentAssistantEvent.Builder Represents a notification sent to Cloud Pub/Sub subscribers for human agent assistant events in a specific conversation.HumanAgentAssistantEventProto HumanAgentHandoffConfig Defines the hand off to a live agent, typically on which external agent service provider to connect to a conversation.HumanAgentHandoffConfig.Builder Defines the hand off to a live agent, typically on which external agent service provider to connect to a conversation.HumanAgentHandoffConfig.LivePersonConfig Configuration specific to LivePerson (https://www.liveperson.com).HumanAgentHandoffConfig.LivePersonConfig.Builder Configuration specific to LivePerson (https://www.liveperson.com).HumanAgentHandoffConfig.SalesforceLiveAgentConfig Configuration specific to Salesforce Live Agent.HumanAgentHandoffConfig.SalesforceLiveAgentConfig.Builder Configuration specific to Salesforce Live Agent.ImportAgentRequest The request message for [Agents.ImportAgent][google.cloud.dialogflow.v2.Agents.ImportAgent].ImportAgentRequest.Builder The request message for [Agents.ImportAgent][google.cloud.dialogflow.v2.Agents.ImportAgent].ImportConversationDataOperationMetadata Metadata for a [ConversationDatasets.ImportConversationData][google.cloud.dialogflow.v2.ConversationDatasets.ImportConversationData] operation.ImportConversationDataOperationMetadata.Builder Metadata for a [ConversationDatasets.ImportConversationData][google.cloud.dialogflow.v2.ConversationDatasets.ImportConversationData] operation.ImportConversationDataOperationResponse Response used for [ConversationDatasets.ImportConversationData][google.cloud.dialogflow.v2.ConversationDatasets.ImportConversationData] long running operation.ImportConversationDataOperationResponse.Builder Response used for [ConversationDatasets.ImportConversationData][google.cloud.dialogflow.v2.ConversationDatasets.ImportConversationData] long running operation.ImportConversationDataRequest The request message for [ConversationDatasets.ImportConversationData][google.cloud.dialogflow.v2.ConversationDatasets.ImportConversationData].ImportConversationDataRequest.Builder The request message for [ConversationDatasets.ImportConversationData][google.cloud.dialogflow.v2.ConversationDatasets.ImportConversationData].ImportDocumentsRequest Request message for [Documents.ImportDocuments][google.cloud.dialogflow.v2.Documents.ImportDocuments].ImportDocumentsRequest.Builder Request message for [Documents.ImportDocuments][google.cloud.dialogflow.v2.Documents.ImportDocuments].ImportDocumentsResponse Response message for [Documents.ImportDocuments][google.cloud.dialogflow.v2.Documents.ImportDocuments].ImportDocumentsResponse.Builder Response message for [Documents.ImportDocuments][google.cloud.dialogflow.v2.Documents.ImportDocuments].ImportDocumentTemplate The template used for importing documents.ImportDocumentTemplate.Builder The template used for importing documents.InputAudioConfig Instructs the speech recognizer how to process the audio content.InputAudioConfig.Builder Instructs the speech recognizer how to process the audio content.InputConfig Represents the configuration of importing a set of conversation files in Google Cloud Storage.InputConfig.Builder Represents the configuration of importing a set of conversation files in Google Cloud Storage.InputDataset InputDataset used to create model or do evaluation.InputDataset.Builder InputDataset used to create model or do evaluation.InputTextConfig Defines the language used in the input text.InputTextConfig.Builder Defines the language used in the input text.Intent An intent categorizes an end-user's intention for one conversation turn.Intent.Builder An intent categorizes an end-user's intention for one conversation turn.Intent.FollowupIntentInfo Represents a single followup intent in the chain.Intent.FollowupIntentInfo.Builder Represents a single followup intent in the chain.Intent.Message A rich response message.Intent.Message.BasicCard The basic card message.Intent.Message.BasicCard.Builder The basic card message.Intent.Message.BasicCard.Button The button object that appears at the bottom of a card.Intent.Message.BasicCard.Button.Builder The button object that appears at the bottom of a card.Intent.Message.BasicCard.Button.OpenUriAction Opens the given URI.Intent.Message.BasicCard.Button.OpenUriAction.Builder Opens the given URI.Intent.Message.BrowseCarouselCard Browse Carousel Card for Actions on Google.Intent.Message.BrowseCarouselCard.BrowseCarouselCardItem Browsing carousel tileIntent.Message.BrowseCarouselCard.BrowseCarouselCardItem.Builder Browsing carousel tileIntent.Message.BrowseCarouselCard.BrowseCarouselCardItem.OpenUrlAction Actions on Google action to open a given url.Intent.Message.BrowseCarouselCard.BrowseCarouselCardItem.OpenUrlAction.Builder Actions on Google action to open a given url.Intent.Message.BrowseCarouselCard.Builder Browse Carousel Card for Actions on Google.Intent.Message.Builder A rich response message.Intent.Message.Card The card response message.Intent.Message.Card.Builder The card response message.Intent.Message.Card.Button Contains information about a button.Intent.Message.Card.Button.Builder Contains information about a button.Intent.Message.CarouselSelect The card for presenting a carousel of options to select from.Intent.Message.CarouselSelect.Builder The card for presenting a carousel of options to select from.Intent.Message.CarouselSelect.Item An item in the carousel.Intent.Message.CarouselSelect.Item.Builder An item in the carousel.Intent.Message.ColumnProperties Column properties for [TableCard][google.cloud.dialogflow.v2.Intent.Message.TableCard].Intent.Message.ColumnProperties.Builder Column properties for [TableCard][google.cloud.dialogflow.v2.Intent.Message.TableCard].Intent.Message.Image The image response message.Intent.Message.Image.Builder The image response message.Intent.Message.LinkOutSuggestion The suggestion chip message that allows the user to jump out to the app or website associated with this agent.Intent.Message.LinkOutSuggestion.Builder The suggestion chip message that allows the user to jump out to the app or website associated with this agent.Intent.Message.ListSelect The card for presenting a list of options to select from.Intent.Message.ListSelect.Builder The card for presenting a list of options to select from.Intent.Message.ListSelect.Item An item in the list.Intent.Message.ListSelect.Item.Builder An item in the list.Intent.Message.MediaContent The media content card for Actions on Google.Intent.Message.MediaContent.Builder The media content card for Actions on Google.Intent.Message.MediaContent.ResponseMediaObject Response media object for media content card.Intent.Message.MediaContent.ResponseMediaObject.Builder Response media object for media content card.Intent.Message.QuickReplies The quick replies response message.Intent.Message.QuickReplies.Builder The quick replies response message.Intent.Message.SelectItemInfo Additional info about the select item for when it is triggered in a dialog.Intent.Message.SelectItemInfo.Builder Additional info about the select item for when it is triggered in a dialog.Intent.Message.SimpleResponse The simple response message containing speech or text.Intent.Message.SimpleResponse.Builder The simple response message containing speech or text.Intent.Message.SimpleResponses The collection of simple response candidates.Intent.Message.SimpleResponses.Builder The collection of simple response candidates.Intent.Message.Suggestion The suggestion chip message that the user can tap to quickly post a reply to the conversation.Intent.Message.Suggestion.Builder The suggestion chip message that the user can tap to quickly post a reply to the conversation.Intent.Message.Suggestions The collection of suggestions.Intent.Message.Suggestions.Builder The collection of suggestions.Intent.Message.TableCard Table card for Actions on Google.Intent.Message.TableCard.Builder Table card for Actions on Google.Intent.Message.TableCardCell Cell of [TableCardRow][google.cloud.dialogflow.v2.Intent.Message.TableCardRow].Intent.Message.TableCardCell.Builder Cell of [TableCardRow][google.cloud.dialogflow.v2.Intent.Message.TableCardRow].Intent.Message.TableCardRow Row of [TableCard][google.cloud.dialogflow.v2.Intent.Message.TableCard].Intent.Message.TableCardRow.Builder Row of [TableCard][google.cloud.dialogflow.v2.Intent.Message.TableCard].Intent.Message.Text The text response message.Intent.Message.Text.Builder The text response message.Intent.Parameter Represents intent parameters.Intent.Parameter.Builder Represents intent parameters.Intent.TrainingPhrase Represents an example that the agent is trained on.Intent.TrainingPhrase.Builder Represents an example that the agent is trained on.Intent.TrainingPhrase.Part Represents a part of a training phrase.Intent.TrainingPhrase.Part.Builder Represents a part of a training phrase.IntentBatch This message is a wrapper around a collection of intents.IntentBatch.Builder This message is a wrapper around a collection of intents.IntentName IntentName.Builder Builder for projects/{project}/agent/intents/{intent}.IntentName.ProjectLocationIntentBuilder Builder for projects/{project}/locations/{location}/agent/intents/{intent}.IntentProto IntentsClient Service Description: Service for managing [Intents][google.cloud.dialogflow.v2.Intent].IntentsClient.ListIntentsFixedSizeCollection IntentsClient.ListIntentsPage IntentsClient.ListIntentsPagedResponse IntentsClient.ListLocationsFixedSizeCollection IntentsClient.ListLocationsPage IntentsClient.ListLocationsPagedResponse IntentsGrpc Service for managing [Intents][google.cloud.dialogflow.v2.Intent].IntentsGrpc.IntentsBlockingStub A stub to allow clients to do synchronous rpc calls to service Intents.IntentsGrpc.IntentsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Intents.IntentsGrpc.IntentsImplBase Base class for the server implementation of the service Intents.IntentsGrpc.IntentsStub A stub to allow clients to do asynchronous rpc calls to service Intents.IntentsSettings Settings class to configure an instance ofIntentsClient
.IntentsSettings.Builder Builder for IntentsSettings.IntentSuggestion Represents an intent suggestion.IntentSuggestion.Builder Represents an intent suggestion.KnowledgeBase A knowledge base represents a collection of knowledge documents that you provide to Dialogflow.KnowledgeBase.Builder A knowledge base represents a collection of knowledge documents that you provide to Dialogflow.KnowledgeBaseName KnowledgeBaseName.Builder Builder for projects/{project}/knowledgeBases/{knowledge_base}.KnowledgeBaseName.ProjectLocationKnowledgeBaseBuilder Builder for projects/{project}/locations/{location}/knowledgeBases/{knowledge_base}.KnowledgeBaseProto KnowledgeBasesClient Service Description: Service for managing [KnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBase].KnowledgeBasesClient.ListKnowledgeBasesFixedSizeCollection KnowledgeBasesClient.ListKnowledgeBasesPage KnowledgeBasesClient.ListKnowledgeBasesPagedResponse KnowledgeBasesClient.ListLocationsFixedSizeCollection KnowledgeBasesClient.ListLocationsPage KnowledgeBasesClient.ListLocationsPagedResponse KnowledgeBasesGrpc Service for managing [KnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBase].KnowledgeBasesGrpc.KnowledgeBasesBlockingStub A stub to allow clients to do synchronous rpc calls to service KnowledgeBases.KnowledgeBasesGrpc.KnowledgeBasesFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service KnowledgeBases.KnowledgeBasesGrpc.KnowledgeBasesImplBase Base class for the server implementation of the service KnowledgeBases.KnowledgeBasesGrpc.KnowledgeBasesStub A stub to allow clients to do asynchronous rpc calls to service KnowledgeBases.KnowledgeBasesSettings Settings class to configure an instance ofKnowledgeBasesClient
.KnowledgeBasesSettings.Builder Builder for KnowledgeBasesSettings.KnowledgeOperationMetadata Metadata in google::longrunning::Operation for Knowledge operations.KnowledgeOperationMetadata.Builder Metadata in google::longrunning::Operation for Knowledge operations.ListAnswerRecordsRequest Request message for [AnswerRecords.ListAnswerRecords][google.cloud.dialogflow.v2.AnswerRecords.ListAnswerRecords].ListAnswerRecordsRequest.Builder Request message for [AnswerRecords.ListAnswerRecords][google.cloud.dialogflow.v2.AnswerRecords.ListAnswerRecords].ListAnswerRecordsResponse Response message for [AnswerRecords.ListAnswerRecords][google.cloud.dialogflow.v2.AnswerRecords.ListAnswerRecords].ListAnswerRecordsResponse.Builder Response message for [AnswerRecords.ListAnswerRecords][google.cloud.dialogflow.v2.AnswerRecords.ListAnswerRecords].ListContextsRequest The request message for [Contexts.ListContexts][google.cloud.dialogflow.v2.Contexts.ListContexts].ListContextsRequest.Builder The request message for [Contexts.ListContexts][google.cloud.dialogflow.v2.Contexts.ListContexts].ListContextsResponse The response message for [Contexts.ListContexts][google.cloud.dialogflow.v2.Contexts.ListContexts].ListContextsResponse.Builder The response message for [Contexts.ListContexts][google.cloud.dialogflow.v2.Contexts.ListContexts].ListConversationDatasetsRequest The request message for [ConversationDatasets.ListConversationDatasets][google.cloud.dialogflow.v2.ConversationDatasets.ListConversationDatasets].ListConversationDatasetsRequest.Builder The request message for [ConversationDatasets.ListConversationDatasets][google.cloud.dialogflow.v2.ConversationDatasets.ListConversationDatasets].ListConversationDatasetsResponse The response message for [ConversationDatasets.ListConversationDatasets][google.cloud.dialogflow.v2.ConversationDatasets.ListConversationDatasets].ListConversationDatasetsResponse.Builder The response message for [ConversationDatasets.ListConversationDatasets][google.cloud.dialogflow.v2.ConversationDatasets.ListConversationDatasets].ListConversationModelEvaluationsRequest The request message for [ConversationModels.ListConversationModelEvaluations][google.cloud.dialogflow.v2.ConversationModels.ListConversationModelEvaluations]ListConversationModelEvaluationsRequest.Builder The request message for [ConversationModels.ListConversationModelEvaluations][google.cloud.dialogflow.v2.ConversationModels.ListConversationModelEvaluations]ListConversationModelEvaluationsResponse The response message for [ConversationModels.ListConversationModelEvaluations][google.cloud.dialogflow.v2.ConversationModels.ListConversationModelEvaluations]ListConversationModelEvaluationsResponse.Builder The response message for [ConversationModels.ListConversationModelEvaluations][google.cloud.dialogflow.v2.ConversationModels.ListConversationModelEvaluations]ListConversationModelsRequest The request message for [ConversationModels.ListConversationModels][google.cloud.dialogflow.v2.ConversationModels.ListConversationModels]ListConversationModelsRequest.Builder The request message for [ConversationModels.ListConversationModels][google.cloud.dialogflow.v2.ConversationModels.ListConversationModels]ListConversationModelsResponse The response message for [ConversationModels.ListConversationModels][google.cloud.dialogflow.v2.ConversationModels.ListConversationModels]ListConversationModelsResponse.Builder The response message for [ConversationModels.ListConversationModels][google.cloud.dialogflow.v2.ConversationModels.ListConversationModels]ListConversationProfilesRequest The request message for [ConversationProfiles.ListConversationProfiles][google.cloud.dialogflow.v2.ConversationProfiles.ListConversationProfiles].ListConversationProfilesRequest.Builder The request message for [ConversationProfiles.ListConversationProfiles][google.cloud.dialogflow.v2.ConversationProfiles.ListConversationProfiles].ListConversationProfilesResponse The response message for [ConversationProfiles.ListConversationProfiles][google.cloud.dialogflow.v2.ConversationProfiles.ListConversationProfiles].ListConversationProfilesResponse.Builder The response message for [ConversationProfiles.ListConversationProfiles][google.cloud.dialogflow.v2.ConversationProfiles.ListConversationProfiles].ListConversationsRequest The request message for [Conversations.ListConversations][google.cloud.dialogflow.v2.Conversations.ListConversations].ListConversationsRequest.Builder The request message for [Conversations.ListConversations][google.cloud.dialogflow.v2.Conversations.ListConversations].ListConversationsResponse The response message for [Conversations.ListConversations][google.cloud.dialogflow.v2.Conversations.ListConversations].ListConversationsResponse.Builder The response message for [Conversations.ListConversations][google.cloud.dialogflow.v2.Conversations.ListConversations].ListDocumentsRequest Request message for [Documents.ListDocuments][google.cloud.dialogflow.v2.Documents.ListDocuments].ListDocumentsRequest.Builder Request message for [Documents.ListDocuments][google.cloud.dialogflow.v2.Documents.ListDocuments].ListDocumentsResponse Response message for [Documents.ListDocuments][google.cloud.dialogflow.v2.Documents.ListDocuments].ListDocumentsResponse.Builder Response message for [Documents.ListDocuments][google.cloud.dialogflow.v2.Documents.ListDocuments].ListEntityTypesRequest The request message for [EntityTypes.ListEntityTypes][google.cloud.dialogflow.v2.EntityTypes.ListEntityTypes].ListEntityTypesRequest.Builder The request message for [EntityTypes.ListEntityTypes][google.cloud.dialogflow.v2.EntityTypes.ListEntityTypes].ListEntityTypesResponse The response message for [EntityTypes.ListEntityTypes][google.cloud.dialogflow.v2.EntityTypes.ListEntityTypes].ListEntityTypesResponse.Builder The response message for [EntityTypes.ListEntityTypes][google.cloud.dialogflow.v2.EntityTypes.ListEntityTypes].ListEnvironmentsRequest The request message for [Environments.ListEnvironments][google.cloud.dialogflow.v2.Environments.ListEnvironments].ListEnvironmentsRequest.Builder The request message for [Environments.ListEnvironments][google.cloud.dialogflow.v2.Environments.ListEnvironments].ListEnvironmentsResponse The response message for [Environments.ListEnvironments][google.cloud.dialogflow.v2.Environments.ListEnvironments].ListEnvironmentsResponse.Builder The response message for [Environments.ListEnvironments][google.cloud.dialogflow.v2.Environments.ListEnvironments].ListIntentsRequest The request message for [Intents.ListIntents][google.cloud.dialogflow.v2.Intents.ListIntents].ListIntentsRequest.Builder The request message for [Intents.ListIntents][google.cloud.dialogflow.v2.Intents.ListIntents].ListIntentsResponse The response message for [Intents.ListIntents][google.cloud.dialogflow.v2.Intents.ListIntents].ListIntentsResponse.Builder The response message for [Intents.ListIntents][google.cloud.dialogflow.v2.Intents.ListIntents].ListKnowledgeBasesRequest Request message for [KnowledgeBases.ListKnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBases.ListKnowledgeBases].ListKnowledgeBasesRequest.Builder Request message for [KnowledgeBases.ListKnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBases.ListKnowledgeBases].ListKnowledgeBasesResponse Response message for [KnowledgeBases.ListKnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBases.ListKnowledgeBases].ListKnowledgeBasesResponse.Builder Response message for [KnowledgeBases.ListKnowledgeBases][google.cloud.dialogflow.v2.KnowledgeBases.ListKnowledgeBases].ListMessagesRequest The request message for [Conversations.ListMessages][google.cloud.dialogflow.v2.Conversations.ListMessages].ListMessagesRequest.Builder The request message for [Conversations.ListMessages][google.cloud.dialogflow.v2.Conversations.ListMessages].ListMessagesResponse The response message for [Conversations.ListMessages][google.cloud.dialogflow.v2.Conversations.ListMessages].ListMessagesResponse.Builder The response message for [Conversations.ListMessages][google.cloud.dialogflow.v2.Conversations.ListMessages].ListParticipantsRequest The request message for [Participants.ListParticipants][google.cloud.dialogflow.v2.Participants.ListParticipants].ListParticipantsRequest.Builder The request message for [Participants.ListParticipants][google.cloud.dialogflow.v2.Participants.ListParticipants].ListParticipantsResponse The response message for [Participants.ListParticipants][google.cloud.dialogflow.v2.Participants.ListParticipants].ListParticipantsResponse.Builder The response message for [Participants.ListParticipants][google.cloud.dialogflow.v2.Participants.ListParticipants].ListSessionEntityTypesRequest The request message for [SessionEntityTypes.ListSessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityTypes.ListSessionEntityTypes].ListSessionEntityTypesRequest.Builder The request message for [SessionEntityTypes.ListSessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityTypes.ListSessionEntityTypes].ListSessionEntityTypesResponse The response message for [SessionEntityTypes.ListSessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityTypes.ListSessionEntityTypes].ListSessionEntityTypesResponse.Builder The response message for [SessionEntityTypes.ListSessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityTypes.ListSessionEntityTypes].ListVersionsRequest The request message for [Versions.ListVersions][google.cloud.dialogflow.v2.Versions.ListVersions].ListVersionsRequest.Builder The request message for [Versions.ListVersions][google.cloud.dialogflow.v2.Versions.ListVersions].ListVersionsResponse The response message for [Versions.ListVersions][google.cloud.dialogflow.v2.Versions.ListVersions].ListVersionsResponse.Builder The response message for [Versions.ListVersions][google.cloud.dialogflow.v2.Versions.ListVersions].LocationName LocationName.Builder Builder for projects/{project}/locations/{location}.LoggingConfig Defines logging behavior for conversation lifecycle events.LoggingConfig.Builder Defines logging behavior for conversation lifecycle events.Message Represents a message posted into a conversation.Message.Builder Represents a message posted into a conversation.MessageAnnotation Represents the result of annotation for the message.MessageAnnotation.Builder Represents the result of annotation for the message.MessageName MessageName.Builder Builder for projects/{project}/conversations/{conversation}/messages/{message}.MessageName.ProjectLocationConversationMessageBuilder Builder for projects/{project}/locations/{location}/conversations/{conversation}/messages/{message}.NotificationConfig Defines notification behavior.NotificationConfig.Builder Defines notification behavior.OriginalDetectIntentRequest Represents the contents of the original request that was passed to the `[Streaming]DetectIntent` call.OriginalDetectIntentRequest.Builder Represents the contents of the original request that was passed to the `[Streaming]DetectIntent` call.OutputAudio Represents the natural language speech audio to be played to the end user.OutputAudio.Builder Represents the natural language speech audio to be played to the end user.OutputAudioConfig Instructs the speech synthesizer on how to generate the output audio content.OutputAudioConfig.Builder Instructs the speech synthesizer on how to generate the output audio content.Participant Represents a conversation participant (human agent, virtual agent, end-user).Participant.Builder Represents a conversation participant (human agent, virtual agent, end-user).ParticipantName ParticipantName.Builder Builder for projects/{project}/conversations/{conversation}/participants/{participant}.ParticipantName.ProjectLocationConversationParticipantBuilder Builder for projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}.ParticipantProto ParticipantsClient Service Description: Service for managing [Participants][google.cloud.dialogflow.v2.Participant].ParticipantsClient.ListLocationsFixedSizeCollection ParticipantsClient.ListLocationsPage ParticipantsClient.ListLocationsPagedResponse ParticipantsClient.ListParticipantsFixedSizeCollection ParticipantsClient.ListParticipantsPage ParticipantsClient.ListParticipantsPagedResponse ParticipantsGrpc Service for managing [Participants][google.cloud.dialogflow.v2.Participant].ParticipantsGrpc.ParticipantsBlockingStub A stub to allow clients to do synchronous rpc calls to service Participants.ParticipantsGrpc.ParticipantsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Participants.ParticipantsGrpc.ParticipantsImplBase Base class for the server implementation of the service Participants.ParticipantsGrpc.ParticipantsStub A stub to allow clients to do asynchronous rpc calls to service Participants.ParticipantsSettings Settings class to configure an instance ofParticipantsClient
.ParticipantsSettings.Builder Builder for ParticipantsSettings.ProjectAgentName AUTO-GENERATED DOCUMENTATION AND CLASSProjectAgentName.Builder Builder for ProjectAgentName.ProjectName ProjectName.Builder Builder for projects/{project}.QueryInput Represents the query input.QueryInput.Builder Represents the query input.QueryParameters Represents the parameters of the conversational query.QueryParameters.Builder Represents the parameters of the conversational query.QueryResult Represents the result of conversational query or event processing.QueryResult.Builder Represents the result of conversational query or event processing.ReloadDocumentRequest Request message for [Documents.ReloadDocument][google.cloud.dialogflow.v2.Documents.ReloadDocument].ReloadDocumentRequest.Builder Request message for [Documents.ReloadDocument][google.cloud.dialogflow.v2.Documents.ReloadDocument].RestoreAgentRequest The request message for [Agents.RestoreAgent][google.cloud.dialogflow.v2.Agents.RestoreAgent].RestoreAgentRequest.Builder The request message for [Agents.RestoreAgent][google.cloud.dialogflow.v2.Agents.RestoreAgent].SearchAgentsRequest The request message for [Agents.SearchAgents][google.cloud.dialogflow.v2.Agents.SearchAgents].SearchAgentsRequest.Builder The request message for [Agents.SearchAgents][google.cloud.dialogflow.v2.Agents.SearchAgents].SearchAgentsResponse The response message for [Agents.SearchAgents][google.cloud.dialogflow.v2.Agents.SearchAgents].SearchAgentsResponse.Builder The response message for [Agents.SearchAgents][google.cloud.dialogflow.v2.Agents.SearchAgents].SearchKnowledgeAnswer Represents a SearchKnowledge answer.SearchKnowledgeAnswer.AnswerSource The sources of the answers.SearchKnowledgeAnswer.AnswerSource.Builder The sources of the answers.SearchKnowledgeAnswer.Builder Represents a SearchKnowledge answer.SearchKnowledgeRequest The request message for [Conversations.SearchKnowledge][google.cloud.dialogflow.v2.Conversations.SearchKnowledge].SearchKnowledgeRequest.Builder The request message for [Conversations.SearchKnowledge][google.cloud.dialogflow.v2.Conversations.SearchKnowledge].SearchKnowledgeResponse The response message for [Conversations.SearchKnowledge][google.cloud.dialogflow.v2.Conversations.SearchKnowledge].SearchKnowledgeResponse.Builder The response message for [Conversations.SearchKnowledge][google.cloud.dialogflow.v2.Conversations.SearchKnowledge].Sentiment The sentiment, such as positive/negative feeling or association, for a unit of analysis, such as the query text.Sentiment.Builder The sentiment, such as positive/negative feeling or association, for a unit of analysis, such as the query text.SentimentAnalysisRequestConfig Configures the types of sentiment analysis to perform.SentimentAnalysisRequestConfig.Builder Configures the types of sentiment analysis to perform.SentimentAnalysisResult The result of sentiment analysis.SentimentAnalysisResult.Builder The result of sentiment analysis.SessionEntityType A session represents a conversation between a Dialogflow agent and an end-user.SessionEntityType.Builder A session represents a conversation between a Dialogflow agent and an end-user.SessionEntityTypeName SessionEntityTypeName.Builder Builder for projects/{project}/agent/sessions/{session}/entityTypes/{entity_type}.SessionEntityTypeName.ProjectEnvironmentUserSessionEntityTypeBuilder Builder for projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session}/entityTypes/{entity_type}.SessionEntityTypeName.ProjectLocationEnvironmentUserSessionEntityTypeBuilder Builder for projects/{project}/locations/{location}/agent/environments/{environment}/users/{user}/sessions/{session}/entityTypes/{entity_type}.SessionEntityTypeName.ProjectLocationSessionEntityTypeBuilder Builder for projects/{project}/locations/{location}/agent/sessions/{session}/entityTypes/{entity_type}.SessionEntityTypeProto SessionEntityTypesClient Service Description: Service for managing [SessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityType].SessionEntityTypesClient.ListLocationsFixedSizeCollection SessionEntityTypesClient.ListLocationsPage SessionEntityTypesClient.ListLocationsPagedResponse SessionEntityTypesClient.ListSessionEntityTypesFixedSizeCollection SessionEntityTypesClient.ListSessionEntityTypesPage SessionEntityTypesClient.ListSessionEntityTypesPagedResponse SessionEntityTypesGrpc Service for managing [SessionEntityTypes][google.cloud.dialogflow.v2.SessionEntityType].SessionEntityTypesGrpc.SessionEntityTypesBlockingStub A stub to allow clients to do synchronous rpc calls to service SessionEntityTypes.SessionEntityTypesGrpc.SessionEntityTypesFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service SessionEntityTypes.SessionEntityTypesGrpc.SessionEntityTypesImplBase Base class for the server implementation of the service SessionEntityTypes.SessionEntityTypesGrpc.SessionEntityTypesStub A stub to allow clients to do asynchronous rpc calls to service SessionEntityTypes.SessionEntityTypesSettings Settings class to configure an instance ofSessionEntityTypesClient
.SessionEntityTypesSettings.Builder Builder for SessionEntityTypesSettings.SessionName SessionName.Builder Builder for projects/{project}/agent/sessions/{session}.SessionName.ProjectEnvironmentUserSessionBuilder Builder for projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session}.SessionName.ProjectLocationEnvironmentUserSessionBuilder Builder for projects/{project}/locations/{location}/agent/environments/{environment}/users/{user}/sessions/{session}.SessionName.ProjectLocationSessionBuilder Builder for projects/{project}/locations/{location}/agent/sessions/{session}.SessionProto SessionsClient Service Description: A service used for session interactions.SessionsClient.ListLocationsFixedSizeCollection SessionsClient.ListLocationsPage SessionsClient.ListLocationsPagedResponse SessionsGrpc A service used for session interactions.SessionsGrpc.SessionsBlockingStub A stub to allow clients to do synchronous rpc calls to service Sessions.SessionsGrpc.SessionsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Sessions.SessionsGrpc.SessionsImplBase Base class for the server implementation of the service Sessions.SessionsGrpc.SessionsStub A stub to allow clients to do asynchronous rpc calls to service Sessions.SessionsSettings Settings class to configure an instance ofSessionsClient
.SessionsSettings.Builder Builder for SessionsSettings.SetAgentRequest The request message for [Agents.SetAgent][google.cloud.dialogflow.v2.Agents.SetAgent].SetAgentRequest.Builder The request message for [Agents.SetAgent][google.cloud.dialogflow.v2.Agents.SetAgent].SetSuggestionFeatureConfigOperationMetadata Metadata for a [ConversationProfile.SetSuggestionFeatureConfig][] operation.SetSuggestionFeatureConfigOperationMetadata.Builder Metadata for a [ConversationProfile.SetSuggestionFeatureConfig][] operation.SetSuggestionFeatureConfigRequest The request message for [ConversationProfiles.SetSuggestionFeature][].SetSuggestionFeatureConfigRequest.Builder The request message for [ConversationProfiles.SetSuggestionFeature][].SmartReplyAnswer Represents a smart reply answer.SmartReplyAnswer.Builder Represents a smart reply answer.SmartReplyMetrics The evaluation metrics for smart reply model.SmartReplyMetrics.Builder The evaluation metrics for smart reply model.SmartReplyMetrics.TopNMetrics Evaluation metrics when retrieving `n` smart replies with the model.SmartReplyMetrics.TopNMetrics.Builder Evaluation metrics when retrieving `n` smart replies with the model.SmartReplyModelMetadata Metadata for smart reply models.SmartReplyModelMetadata.Builder Metadata for smart reply models.SpeechContext Hints for the speech recognizer to help with recognition in a specific conversation state.SpeechContext.Builder Hints for the speech recognizer to help with recognition in a specific conversation state.SpeechToTextConfig Configures speech transcription for [ConversationProfile][google.cloud.dialogflow.v2.ConversationProfile].SpeechToTextConfig.Builder Configures speech transcription for [ConversationProfile][google.cloud.dialogflow.v2.ConversationProfile].SpeechWordInfo Information for a word recognized by the speech recognizer.SpeechWordInfo.Builder Information for a word recognized by the speech recognizer.StreamingAnalyzeContentRequest The top-level message sent by the client to the [Participants.StreamingAnalyzeContent][google.cloud.dialogflow.v2.Participants.StreamingAnalyzeContent] method.StreamingAnalyzeContentRequest.Builder The top-level message sent by the client to the [Participants.StreamingAnalyzeContent][google.cloud.dialogflow.v2.Participants.StreamingAnalyzeContent] method.StreamingAnalyzeContentResponse The top-level message returned from the `StreamingAnalyzeContent` method.StreamingAnalyzeContentResponse.Builder The top-level message returned from the `StreamingAnalyzeContent` method.StreamingDetectIntentRequest The top-level message sent by the client to the [Sessions.StreamingDetectIntent][google.cloud.dialogflow.v2.Sessions.StreamingDetectIntent] method.StreamingDetectIntentRequest.Builder The top-level message sent by the client to the [Sessions.StreamingDetectIntent][google.cloud.dialogflow.v2.Sessions.StreamingDetectIntent] method.StreamingDetectIntentResponse The top-level message returned from the `StreamingDetectIntent` method.StreamingDetectIntentResponse.Builder The top-level message returned from the `StreamingDetectIntent` method.StreamingRecognitionResult Contains a speech recognition result corresponding to a portion of the audio that is currently being processed or an indication that this is the end of the single requested utterance.StreamingRecognitionResult.Builder Contains a speech recognition result corresponding to a portion of the audio that is currently being processed or an indication that this is the end of the single requested utterance.SuggestArticlesRequest The request message for [Participants.SuggestArticles][google.cloud.dialogflow.v2.Participants.SuggestArticles].SuggestArticlesRequest.Builder The request message for [Participants.SuggestArticles][google.cloud.dialogflow.v2.Participants.SuggestArticles].SuggestArticlesResponse The response message for [Participants.SuggestArticles][google.cloud.dialogflow.v2.Participants.SuggestArticles].SuggestArticlesResponse.Builder The response message for [Participants.SuggestArticles][google.cloud.dialogflow.v2.Participants.SuggestArticles].SuggestConversationSummaryRequest The request message for [Conversations.SuggestConversationSummary][google.cloud.dialogflow.v2.Conversations.SuggestConversationSummary].SuggestConversationSummaryRequest.Builder The request message for [Conversations.SuggestConversationSummary][google.cloud.dialogflow.v2.Conversations.SuggestConversationSummary].SuggestConversationSummaryResponse The response message for [Conversations.SuggestConversationSummary][google.cloud.dialogflow.v2.Conversations.SuggestConversationSummary].SuggestConversationSummaryResponse.Builder The response message for [Conversations.SuggestConversationSummary][google.cloud.dialogflow.v2.Conversations.SuggestConversationSummary].SuggestConversationSummaryResponse.Summary Generated summary for a conversation.SuggestConversationSummaryResponse.Summary.Builder Generated summary for a conversation.SuggestFaqAnswersRequest The request message for [Participants.SuggestFaqAnswers][google.cloud.dialogflow.v2.Participants.SuggestFaqAnswers].SuggestFaqAnswersRequest.Builder The request message for [Participants.SuggestFaqAnswers][google.cloud.dialogflow.v2.Participants.SuggestFaqAnswers].SuggestFaqAnswersResponse The request message for [Participants.SuggestFaqAnswers][google.cloud.dialogflow.v2.Participants.SuggestFaqAnswers].SuggestFaqAnswersResponse.Builder The request message for [Participants.SuggestFaqAnswers][google.cloud.dialogflow.v2.Participants.SuggestFaqAnswers].SuggestionFeature The type of Human Agent Assistant API suggestion to perform, and the maximum number of results to return for that type.SuggestionFeature.Builder The type of Human Agent Assistant API suggestion to perform, and the maximum number of results to return for that type.SuggestionInput Represents the selection of a suggestion.SuggestionInput.Builder Represents the selection of a suggestion.SuggestionResult One response of different type of suggestion response which is used in the response of [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent] and [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent], as well as [HumanAgentAssistantEvent][google.cloud.dialogflow.v2.HumanAgentAssistantEvent].SuggestionResult.Builder One response of different type of suggestion response which is used in the response of [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent] and [Participants.AnalyzeContent][google.cloud.dialogflow.v2.Participants.AnalyzeContent], as well as [HumanAgentAssistantEvent][google.cloud.dialogflow.v2.HumanAgentAssistantEvent].SuggestSmartRepliesRequest The request message for [Participants.SuggestSmartReplies][google.cloud.dialogflow.v2.Participants.SuggestSmartReplies].SuggestSmartRepliesRequest.Builder The request message for [Participants.SuggestSmartReplies][google.cloud.dialogflow.v2.Participants.SuggestSmartReplies].SuggestSmartRepliesResponse The response message for [Participants.SuggestSmartReplies][google.cloud.dialogflow.v2.Participants.SuggestSmartReplies].SuggestSmartRepliesResponse.Builder The response message for [Participants.SuggestSmartReplies][google.cloud.dialogflow.v2.Participants.SuggestSmartReplies].SynthesizeSpeechConfig Configuration of how speech should be synthesized.SynthesizeSpeechConfig.Builder Configuration of how speech should be synthesized.TelephonyDtmfEvents A wrapper of repeated TelephonyDtmf digits.TelephonyDtmfEvents.Builder A wrapper of repeated TelephonyDtmf digits.TextInput Auxiliary proto messages.TextInput.Builder Auxiliary proto messages.TextToSpeechSettings Instructs the speech synthesizer on how to generate the output audio content.TextToSpeechSettings.Builder Instructs the speech synthesizer on how to generate the output audio content.TrainAgentRequest The request message for [Agents.TrainAgent][google.cloud.dialogflow.v2.Agents.TrainAgent].TrainAgentRequest.Builder The request message for [Agents.TrainAgent][google.cloud.dialogflow.v2.Agents.TrainAgent].UndeployConversationModelOperationMetadata Metadata for a [ConversationModels.UndeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.UndeployConversationModel] operation.UndeployConversationModelOperationMetadata.Builder Metadata for a [ConversationModels.UndeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.UndeployConversationModel] operation.UndeployConversationModelRequest The request message for [ConversationModels.UndeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.UndeployConversationModel]UndeployConversationModelRequest.Builder The request message for [ConversationModels.UndeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.UndeployConversationModel]UpdateAnswerRecordRequest Request message for [AnswerRecords.UpdateAnswerRecord][google.cloud.dialogflow.v2.AnswerRecords.UpdateAnswerRecord].UpdateAnswerRecordRequest.Builder Request message for [AnswerRecords.UpdateAnswerRecord][google.cloud.dialogflow.v2.AnswerRecords.UpdateAnswerRecord].UpdateContextRequest The request message for [Contexts.UpdateContext][google.cloud.dialogflow.v2.Contexts.UpdateContext].UpdateContextRequest.Builder The request message for [Contexts.UpdateContext][google.cloud.dialogflow.v2.Contexts.UpdateContext].UpdateConversationProfileRequest The request message for [ConversationProfiles.UpdateConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.UpdateConversationProfile].UpdateConversationProfileRequest.Builder The request message for [ConversationProfiles.UpdateConversationProfile][google.cloud.dialogflow.v2.ConversationProfiles.UpdateConversationProfile].UpdateDocumentRequest Request message for [Documents.UpdateDocument][google.cloud.dialogflow.v2.Documents.UpdateDocument].UpdateDocumentRequest.Builder Request message for [Documents.UpdateDocument][google.cloud.dialogflow.v2.Documents.UpdateDocument].UpdateEntityTypeRequest The request message for [EntityTypes.UpdateEntityType][google.cloud.dialogflow.v2.EntityTypes.UpdateEntityType].UpdateEntityTypeRequest.Builder The request message for [EntityTypes.UpdateEntityType][google.cloud.dialogflow.v2.EntityTypes.UpdateEntityType].UpdateEnvironmentRequest The request message for [Environments.UpdateEnvironment][google.cloud.dialogflow.v2.Environments.UpdateEnvironment].UpdateEnvironmentRequest.Builder The request message for [Environments.UpdateEnvironment][google.cloud.dialogflow.v2.Environments.UpdateEnvironment].UpdateFulfillmentRequest The request message for [Fulfillments.UpdateFulfillment][google.cloud.dialogflow.v2.Fulfillments.UpdateFulfillment].UpdateFulfillmentRequest.Builder The request message for [Fulfillments.UpdateFulfillment][google.cloud.dialogflow.v2.Fulfillments.UpdateFulfillment].UpdateIntentRequest The request message for [Intents.UpdateIntent][google.cloud.dialogflow.v2.Intents.UpdateIntent].UpdateIntentRequest.Builder The request message for [Intents.UpdateIntent][google.cloud.dialogflow.v2.Intents.UpdateIntent].UpdateKnowledgeBaseRequest Request message for [KnowledgeBases.UpdateKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.UpdateKnowledgeBase].UpdateKnowledgeBaseRequest.Builder Request message for [KnowledgeBases.UpdateKnowledgeBase][google.cloud.dialogflow.v2.KnowledgeBases.UpdateKnowledgeBase].UpdateParticipantRequest The request message for [Participants.UpdateParticipant][google.cloud.dialogflow.v2.Participants.UpdateParticipant].UpdateParticipantRequest.Builder The request message for [Participants.UpdateParticipant][google.cloud.dialogflow.v2.Participants.UpdateParticipant].UpdateSessionEntityTypeRequest The request message for [SessionEntityTypes.UpdateSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.UpdateSessionEntityType].UpdateSessionEntityTypeRequest.Builder The request message for [SessionEntityTypes.UpdateSessionEntityType][google.cloud.dialogflow.v2.SessionEntityTypes.UpdateSessionEntityType].UpdateVersionRequest The request message for [Versions.UpdateVersion][google.cloud.dialogflow.v2.Versions.UpdateVersion].UpdateVersionRequest.Builder The request message for [Versions.UpdateVersion][google.cloud.dialogflow.v2.Versions.UpdateVersion].ValidationError Represents a single validation error.ValidationError.Builder Represents a single validation error.ValidationResult Represents the output of agent validation.ValidationResult.Builder Represents the output of agent validation.ValidationResultProto Version You can create multiple versions of your agent and publish them to separate environments.Version.Builder You can create multiple versions of your agent and publish them to separate environments.VersionName VersionName.Builder Builder for projects/{project}/agent/versions/{version}.VersionName.ProjectLocationVersionBuilder Builder for projects/{project}/locations/{location}/agent/versions/{version}.VersionProto VersionsClient Service Description: Service for managing [Versions][google.cloud.dialogflow.v2.Version].VersionsClient.ListLocationsFixedSizeCollection VersionsClient.ListLocationsPage VersionsClient.ListLocationsPagedResponse VersionsClient.ListVersionsFixedSizeCollection VersionsClient.ListVersionsPage VersionsClient.ListVersionsPagedResponse VersionsGrpc Service for managing [Versions][google.cloud.dialogflow.v2.Version].VersionsGrpc.VersionsBlockingStub A stub to allow clients to do synchronous rpc calls to service Versions.VersionsGrpc.VersionsFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service Versions.VersionsGrpc.VersionsImplBase Base class for the server implementation of the service Versions.VersionsGrpc.VersionsStub A stub to allow clients to do asynchronous rpc calls to service Versions.VersionsSettings Settings class to configure an instance ofVersionsClient
.VersionsSettings.Builder Builder for VersionsSettings.VoiceSelectionParams Description of which voice to use for speech synthesis.VoiceSelectionParams.Builder Description of which voice to use for speech synthesis.WebhookProto WebhookRequest The request message for a webhook call.WebhookRequest.Builder The request message for a webhook call.WebhookResponse The response message for a webhook call.WebhookResponse.Builder The response message for a webhook call.