Skip to content

Commit 83795dd

Browse files
Google APIscopybara-github
authored andcommitted
feat: added ConversationModel resource and its APIs
feat: added ConversationDataset resource and its APIs feat: added SetSuggestionFeatureConfig and ClearSuggestionFeatureConfig APIs for ConversationProfile feat: added new knowledge type of Document content feat: added states of Document feat: added metadata for the Knowledge operation docs: updated copyright PiperOrigin-RevId: 430829291
1 parent 6bd2087 commit 83795dd

26 files changed

Lines changed: 1198 additions & 48 deletions

google/cloud/dialogflow/v2/BUILD.bazel

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ proto_library(
2626
"audio_config.proto",
2727
"context.proto",
2828
"conversation.proto",
29+
"conversation_dataset.proto",
2930
"conversation_event.proto",
31+
"conversation_model.proto",
3032
"conversation_profile.proto",
3133
"document.proto",
3234
"entity_type.proto",
@@ -51,7 +53,6 @@ proto_library(
5153
"//google/longrunning:operations_proto",
5254
"//google/rpc:status_proto",
5355
"//google/type:latlng_proto",
54-
"@com_google_protobuf//:any_proto",
5556
"@com_google_protobuf//:duration_proto",
5657
"@com_google_protobuf//:empty_proto",
5758
"@com_google_protobuf//:field_mask_proto",
@@ -112,6 +113,8 @@ java_gapic_test(
112113
"com.google.cloud.dialogflow.v2.AgentsClientTest",
113114
"com.google.cloud.dialogflow.v2.AnswerRecordsClientTest",
114115
"com.google.cloud.dialogflow.v2.ContextsClientTest",
116+
"com.google.cloud.dialogflow.v2.ConversationDatasetsClientTest",
117+
"com.google.cloud.dialogflow.v2.ConversationModelsClientTest",
115118
"com.google.cloud.dialogflow.v2.ConversationProfilesClientTest",
116119
"com.google.cloud.dialogflow.v2.ConversationsClientTest",
117120
"com.google.cloud.dialogflow.v2.DocumentsClientTest",
@@ -175,7 +178,6 @@ go_gapic_library(
175178
"//google/longrunning:longrunning_go_proto",
176179
"@com_google_cloud_go//longrunning:go_default_library",
177180
"@com_google_cloud_go//longrunning/autogen:go_default_library",
178-
"@io_bazel_rules_go//proto/wkt:any_go_proto",
179181
"@io_bazel_rules_go//proto/wkt:duration_go_proto",
180182
"@io_bazel_rules_go//proto/wkt:struct_go_proto",
181183
],

google/cloud/dialogflow/v2/agent.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

google/cloud/dialogflow/v2/answer_record.proto

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -21,7 +21,6 @@ import "google/api/client.proto";
2121
import "google/api/field_behavior.proto";
2222
import "google/api/resource.proto";
2323
import "google/cloud/dialogflow/v2/participant.proto";
24-
import "google/protobuf/empty.proto";
2524
import "google/protobuf/field_mask.proto";
2625
import "google/protobuf/timestamp.proto";
2726

google/cloud/dialogflow/v2/audio_config.proto

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -16,11 +16,9 @@ syntax = "proto3";
1616

1717
package google.cloud.dialogflow.v2;
1818

19-
import "google/api/annotations.proto";
2019
import "google/api/field_behavior.proto";
2120
import "google/api/resource.proto";
2221
import "google/protobuf/duration.proto";
23-
import "google/protobuf/timestamp.proto";
2422

2523
option cc_enable_arenas = true;
2624
option csharp_namespace = "Google.Cloud.Dialogflow.V2";

google/cloud/dialogflow/v2/context.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

google/cloud/dialogflow/v2/conversation.proto

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -20,10 +20,7 @@ import "google/api/annotations.proto";
2020
import "google/api/client.proto";
2121
import "google/api/field_behavior.proto";
2222
import "google/api/resource.proto";
23-
import "google/cloud/dialogflow/v2/audio_config.proto";
24-
import "google/cloud/dialogflow/v2/conversation_profile.proto";
2523
import "google/cloud/dialogflow/v2/participant.proto";
26-
import "google/protobuf/empty.proto";
2724
import "google/protobuf/timestamp.proto";
2825

2926
option cc_enable_arenas = true;

0 commit comments

Comments
 (0)