mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-18 13:08:24 +02:00
feat: deprecated the filter field and add resource_definition
docs: add more meaningful comments PiperOrigin-RevId: 458520697
This commit is contained in:
parent
b574c0bc83
commit
2bf9d8d49e
6 changed files with 25 additions and 6 deletions
|
|
@ -66,6 +66,7 @@ proto_library_with_info(
|
|||
deps = [
|
||||
":dialogflow_proto",
|
||||
"//google/cloud:common_resources_proto",
|
||||
"//google/cloud/location:location_proto",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
@ -100,11 +101,13 @@ java_gapic_library(
|
|||
service_yaml = "dialogflow_v2.yaml",
|
||||
test_deps = [
|
||||
":dialogflow_java_grpc",
|
||||
"//google/cloud/location:location_java_grpc",
|
||||
],
|
||||
transport = "grpc+rest",
|
||||
deps = [
|
||||
":dialogflow_java_proto",
|
||||
"//google/api:api_java_proto",
|
||||
"//google/cloud/location:location_java_proto",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
@ -196,6 +199,7 @@ go_gapic_library(
|
|||
transport = "grpc+rest",
|
||||
deps = [
|
||||
":dialogflow_go_proto",
|
||||
"//google/cloud/location:location_go_proto",
|
||||
"//google/longrunning:longrunning_go_proto",
|
||||
"@com_google_cloud_go//longrunning:go_default_library",
|
||||
"@com_google_cloud_go//longrunning/autogen:go_default_library",
|
||||
|
|
@ -353,6 +357,7 @@ ruby_cloud_gapic_library(
|
|||
grpc_service_config = "dialogflow_grpc_service_config.json",
|
||||
ruby_cloud_description = "Dialogflow is an end-to-end, build-once deploy-everywhere development suite for creating conversational interfaces for websites, mobile applications, popular messaging platforms, and IoT devices. You can use it to build interfaces (such as chatbots and conversational IVR) that enable natural and rich interactions between your users and your business. This client is for Dialogflow ES, providing the standard agent type suitable for small and simple agents.",
|
||||
ruby_cloud_title = "Dialogflow V2",
|
||||
service_yaml = "dialogflow_v2.yaml",
|
||||
deps = [
|
||||
":dialogflow_ruby_grpc",
|
||||
":dialogflow_ruby_proto",
|
||||
|
|
|
|||
|
|
@ -127,13 +127,16 @@ message ListAnswerRecordsRequest {
|
|||
}
|
||||
];
|
||||
|
||||
// Required. Filters to restrict results to specific answer records.
|
||||
// Filter on answer record type. Currently predicates on `type` is supported,
|
||||
// valid values are `ARTICLE_ANSWER`, `FAQ_ANSWER`.
|
||||
// Optional. Filters to restrict results to specific answer records.
|
||||
//
|
||||
// Marked deprecated as it hasn't been, and isn't currently, supported.
|
||||
//
|
||||
// For more information about filtering, see
|
||||
// [API Filtering](https://aip.dev/160).
|
||||
string filter = 2 [(google.api.field_behavior) = REQUIRED];
|
||||
string filter = 2 [
|
||||
deprecated = true,
|
||||
(google.api.field_behavior) = OPTIONAL
|
||||
];
|
||||
|
||||
// Optional. The maximum number of records to return in a single page.
|
||||
// The server may return fewer records than this. If unspecified, we use 10.
|
||||
|
|
|
|||
|
|
@ -31,6 +31,10 @@ option (google.api.resource_definition) = {
|
|||
type: "automl.googleapis.com/Model"
|
||||
pattern: "projects/{project}/locations/{location}/models/{model}"
|
||||
};
|
||||
option (google.api.resource_definition) = {
|
||||
type: "speech.googleapis.com/PhraseSet"
|
||||
pattern: "projects/{project}/locations/{location}/phraseSets/{phrase_set}"
|
||||
};
|
||||
|
||||
// Audio encoding of the audio content sent in the conversational query request.
|
||||
// Refer to the
|
||||
|
|
|
|||
|
|
@ -515,7 +515,8 @@ message HumanAgentAssistantConfig {
|
|||
|
||||
// Custom conversation models used in agent assist feature.
|
||||
//
|
||||
// Supported feature: ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY.
|
||||
// Supported feature: ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY,
|
||||
// CONVERSATION_SUMMARIZATION.
|
||||
message ConversationModelConfig {
|
||||
// Conversation model resource name. Format: `projects/<Project
|
||||
// ID>/conversationModels/<Model ID>`.
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ apis:
|
|||
- name: google.cloud.dialogflow.v2.SessionEntityTypes
|
||||
- name: google.cloud.dialogflow.v2.Sessions
|
||||
- name: google.cloud.dialogflow.v2.Versions
|
||||
- name: google.cloud.location.Locations
|
||||
- name: google.longrunning.Operations
|
||||
|
||||
types:
|
||||
- name: google.cloud.dialogflow.v2.BatchUpdateEntityTypesResponse
|
||||
|
|
|
|||
|
|
@ -324,7 +324,8 @@ message QueryResult {
|
|||
bool all_required_params_present = 5;
|
||||
|
||||
// Indicates whether the conversational query triggers a cancellation for slot
|
||||
// filling.
|
||||
// filling. For more information, see the [cancel slot filling
|
||||
// documentation](https://cloud.google.com/dialogflow/es/docs/intents-actions-parameters#cancel).
|
||||
bool cancels_slot_filling = 21;
|
||||
|
||||
// The text to be pronounced to the user or shown on the screen.
|
||||
|
|
@ -608,6 +609,9 @@ message StreamingRecognitionResult {
|
|||
string language_code = 10;
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
// Auxiliary proto messages.
|
||||
//
|
||||
// Represents the natural language text to be processed.
|
||||
message TextInput {
|
||||
// Required. The UTF-8 encoded natural language text to be processed.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue