google-cloud-discovery_engine-v1 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +4 -4
- data/README.md +4 -4
- data/lib/google/cloud/discovery_engine/v1/assistant_service/client.rb +509 -0
- data/lib/google/cloud/discovery_engine/v1/assistant_service/credentials.rb +47 -0
- data/lib/google/cloud/discovery_engine/v1/assistant_service/paths.rb +169 -0
- data/lib/google/cloud/discovery_engine/v1/assistant_service/rest/client.rb +478 -0
- data/lib/google/cloud/discovery_engine/v1/assistant_service/rest/service_stub.rb +137 -0
- data/lib/google/cloud/discovery_engine/v1/assistant_service/rest.rb +52 -0
- data/lib/google/cloud/discovery_engine/v1/assistant_service.rb +55 -0
- data/lib/google/cloud/discovery_engine/v1/conversational_search_service/client.rb +16 -4
- data/lib/google/cloud/discovery_engine/v1/conversational_search_service/rest/client.rb +16 -4
- data/lib/google/cloud/discovery_engine/v1/rest.rb +4 -2
- data/lib/google/cloud/discovery_engine/v1/search_service/client.rb +16 -28
- data/lib/google/cloud/discovery_engine/v1/search_service/rest/client.rb +16 -28
- data/lib/google/cloud/discovery_engine/v1/session_service/client.rb +920 -0
- data/lib/google/cloud/discovery_engine/v1/session_service/credentials.rb +47 -0
- data/lib/google/cloud/discovery_engine/v1/session_service/paths.rb +330 -0
- data/lib/google/cloud/discovery_engine/v1/session_service/rest/client.rb +859 -0
- data/lib/google/cloud/discovery_engine/v1/session_service/rest/service_stub.rb +462 -0
- data/lib/google/cloud/discovery_engine/v1/session_service/rest.rb +52 -0
- data/lib/google/cloud/discovery_engine/v1/session_service.rb +55 -0
- data/lib/google/cloud/discovery_engine/v1/version.rb +1 -1
- data/lib/google/cloud/discovery_engine/v1.rb +5 -3
- data/lib/google/cloud/discoveryengine/v1/assist_answer_pb.rb +59 -0
- data/lib/google/cloud/discoveryengine/v1/assistant_pb.rb +45 -0
- data/lib/google/cloud/discoveryengine/v1/assistant_service_pb.rb +62 -0
- data/lib/google/cloud/discoveryengine/v1/assistant_service_services_pb.rb +45 -0
- data/lib/google/cloud/discoveryengine/v1/session_pb.rb +1 -1
- data/lib/google/cloud/discoveryengine/v1/session_service_pb.rb +49 -0
- data/lib/google/cloud/discoveryengine/v1/session_service_services_pb.rb +64 -0
- data/proto_docs/google/cloud/discoveryengine/v1/assist_answer.rb +278 -0
- data/proto_docs/google/cloud/discoveryengine/v1/assistant.rb +39 -0
- data/proto_docs/google/cloud/discoveryengine/v1/assistant_service.rb +207 -0
- data/proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb +15 -3
- data/proto_docs/google/cloud/discoveryengine/v1/search_service.rb +8 -14
- data/proto_docs/google/cloud/discoveryengine/v1/session.rb +20 -4
- metadata +24 -1
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module DiscoveryEngine
|
23
|
+
module V1
|
24
|
+
# Discovery Engine Assistant resource.
|
25
|
+
# @!attribute [rw] name
|
26
|
+
# @return [::String]
|
27
|
+
# Immutable. Resource name of the assistant.
|
28
|
+
# Format:
|
29
|
+
# `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/assistants/{assistant}`
|
30
|
+
#
|
31
|
+
# It must be a UTF-8 encoded string with a length limit of 1024 characters.
|
32
|
+
class Assistant
|
33
|
+
include ::Google::Protobuf::MessageExts
|
34
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,207 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module DiscoveryEngine
|
23
|
+
module V1
|
24
|
+
# User metadata of the request.
|
25
|
+
# @!attribute [rw] time_zone
|
26
|
+
# @return [::String]
|
27
|
+
# Optional. IANA time zone, e.g. Europe/Budapest.
|
28
|
+
# @!attribute [rw] preferred_language_code
|
29
|
+
# @return [::String]
|
30
|
+
# Optional. Preferred language to be used for answering if language detection
|
31
|
+
# fails. Also used as the language of error messages created by actions,
|
32
|
+
# regardless of language detection results.
|
33
|
+
class AssistUserMetadata
|
34
|
+
include ::Google::Protobuf::MessageExts
|
35
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
36
|
+
end
|
37
|
+
|
38
|
+
# Request for the
|
39
|
+
# {::Google::Cloud::DiscoveryEngine::V1::AssistantService::Client#stream_assist AssistantService.StreamAssist}
|
40
|
+
# method.
|
41
|
+
# @!attribute [rw] name
|
42
|
+
# @return [::String]
|
43
|
+
# Required. The resource name of the
|
44
|
+
# {::Google::Cloud::DiscoveryEngine::V1::Assistant Assistant}. Format:
|
45
|
+
# `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/assistants/{assistant}`
|
46
|
+
# @!attribute [rw] query
|
47
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::Query]
|
48
|
+
# Optional. Current user query.
|
49
|
+
#
|
50
|
+
# Empty query is only supported if `file_ids` are provided. In this case, the
|
51
|
+
# answer will be generated based on those context files.
|
52
|
+
# @!attribute [rw] session
|
53
|
+
# @return [::String]
|
54
|
+
# Optional. The session to use for the request. If specified, the assistant
|
55
|
+
# has access to the session history, and the query and the answer are stored
|
56
|
+
# there.
|
57
|
+
#
|
58
|
+
# If `-` is specified as the session ID, or it is left empty, then a new
|
59
|
+
# session is created with an automatically generated ID.
|
60
|
+
#
|
61
|
+
# Format:
|
62
|
+
# `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}`
|
63
|
+
# @!attribute [rw] user_metadata
|
64
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::AssistUserMetadata]
|
65
|
+
# Optional. Information about the user initiating the query.
|
66
|
+
# @!attribute [rw] tools_spec
|
67
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistRequest::ToolsSpec]
|
68
|
+
# Optional. Specification of tools that are used to serve the request.
|
69
|
+
# @!attribute [rw] generation_spec
|
70
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistRequest::GenerationSpec]
|
71
|
+
# Optional. Specification of the generation configuration for the request.
|
72
|
+
class StreamAssistRequest
|
73
|
+
include ::Google::Protobuf::MessageExts
|
74
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
75
|
+
|
76
|
+
# Specification of tools that are used to serve the request.
|
77
|
+
# @!attribute [rw] vertex_ai_search_spec
|
78
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistRequest::ToolsSpec::VertexAiSearchSpec]
|
79
|
+
# Optional. Specification of the Vertex AI Search tool.
|
80
|
+
# @!attribute [rw] web_grounding_spec
|
81
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistRequest::ToolsSpec::WebGroundingSpec]
|
82
|
+
# Optional. Specification of the web grounding tool.
|
83
|
+
# If field is present, enables grounding with web search. Works only if
|
84
|
+
# [Assistant.web_grounding_type][google.cloud.discoveryengine.v1.Assistant.web_grounding_type]
|
85
|
+
# is [WEB_GROUNDING_TYPE_GOOGLE_SEARCH][] or
|
86
|
+
# [WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH][].
|
87
|
+
# @!attribute [rw] image_generation_spec
|
88
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistRequest::ToolsSpec::ImageGenerationSpec]
|
89
|
+
# Optional. Specification of the image generation tool.
|
90
|
+
# @!attribute [rw] video_generation_spec
|
91
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistRequest::ToolsSpec::VideoGenerationSpec]
|
92
|
+
# Optional. Specification of the video generation tool.
|
93
|
+
class ToolsSpec
|
94
|
+
include ::Google::Protobuf::MessageExts
|
95
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
96
|
+
|
97
|
+
# Specification of the Vertex AI Search tool.
|
98
|
+
# @!attribute [rw] data_store_specs
|
99
|
+
# @return [::Array<::Google::Cloud::DiscoveryEngine::V1::SearchRequest::DataStoreSpec>]
|
100
|
+
# Optional. Specs defining
|
101
|
+
# {::Google::Cloud::DiscoveryEngine::V1::DataStore DataStore}s to filter on in
|
102
|
+
# a search call and configurations for those data stores. This is only
|
103
|
+
# considered for {::Google::Cloud::DiscoveryEngine::V1::Engine Engine}s with
|
104
|
+
# multiple data stores.
|
105
|
+
# @!attribute [rw] filter
|
106
|
+
# @return [::String]
|
107
|
+
# Optional. The filter syntax consists of an expression language for
|
108
|
+
# constructing a predicate from one or more fields of the documents being
|
109
|
+
# filtered. Filter expression is case-sensitive.
|
110
|
+
#
|
111
|
+
# If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
|
112
|
+
#
|
113
|
+
# Filtering in Vertex AI Search is done by mapping the LHS filter key to
|
114
|
+
# a key property defined in the Vertex AI Search backend -- this mapping
|
115
|
+
# is defined by the customer in their schema. For example a media
|
116
|
+
# customer might have a field 'name' in their schema. In this case the
|
117
|
+
# filter would look like this: filter --> name:'ANY("king kong")'
|
118
|
+
#
|
119
|
+
# For more information about filtering including syntax and filter
|
120
|
+
# operators, see
|
121
|
+
# [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
|
122
|
+
class VertexAiSearchSpec
|
123
|
+
include ::Google::Protobuf::MessageExts
|
124
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
125
|
+
end
|
126
|
+
|
127
|
+
# Specification of the web grounding tool.
|
128
|
+
class WebGroundingSpec
|
129
|
+
include ::Google::Protobuf::MessageExts
|
130
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
131
|
+
end
|
132
|
+
|
133
|
+
# Specification of the image generation tool.
|
134
|
+
class ImageGenerationSpec
|
135
|
+
include ::Google::Protobuf::MessageExts
|
136
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
137
|
+
end
|
138
|
+
|
139
|
+
# Specification of the video generation tool.
|
140
|
+
class VideoGenerationSpec
|
141
|
+
include ::Google::Protobuf::MessageExts
|
142
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
# Assistant generation specification for the request.
|
147
|
+
# This allows to override the default generation configuration at the engine
|
148
|
+
# level.
|
149
|
+
# @!attribute [rw] model_id
|
150
|
+
# @return [::String]
|
151
|
+
# Optional. The Vertex AI model_id used for the generative model. If not
|
152
|
+
# set, the default Assistant model will be used.
|
153
|
+
class GenerationSpec
|
154
|
+
include ::Google::Protobuf::MessageExts
|
155
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
# Response for the
|
160
|
+
# {::Google::Cloud::DiscoveryEngine::V1::AssistantService::Client#stream_assist AssistantService.StreamAssist}
|
161
|
+
# method.
|
162
|
+
# @!attribute [rw] answer
|
163
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::AssistAnswer]
|
164
|
+
# Assist answer resource object containing parts of the assistant's final
|
165
|
+
# answer for the user's query.
|
166
|
+
#
|
167
|
+
# Not present if the current response doesn't add anything to previously
|
168
|
+
# sent
|
169
|
+
# {::Google::Cloud::DiscoveryEngine::V1::AssistAnswer#replies AssistAnswer.replies}.
|
170
|
+
#
|
171
|
+
# Observe
|
172
|
+
# {::Google::Cloud::DiscoveryEngine::V1::AssistAnswer#state AssistAnswer.state} to
|
173
|
+
# see if more parts are to be expected. While the state is `IN_PROGRESS`, the
|
174
|
+
# {::Google::Cloud::DiscoveryEngine::V1::AssistAnswer#replies AssistAnswer.replies}
|
175
|
+
# field in each response will contain replies (reply fragments) to be
|
176
|
+
# appended to the ones received in previous responses. [AssistAnswer.name][]
|
177
|
+
# won't be filled.
|
178
|
+
#
|
179
|
+
# If the state is `SUCCEEDED`, `FAILED` or `SKIPPED`, the response
|
180
|
+
# is the last response and [AssistAnswer.name][] will have a value.
|
181
|
+
# @!attribute [rw] session_info
|
182
|
+
# @return [::Google::Cloud::DiscoveryEngine::V1::StreamAssistResponse::SessionInfo]
|
183
|
+
# Session information.
|
184
|
+
# @!attribute [rw] assist_token
|
185
|
+
# @return [::String]
|
186
|
+
# A global unique ID that identifies the current pair of request and stream
|
187
|
+
# of responses. Used for feedback and support.
|
188
|
+
class StreamAssistResponse
|
189
|
+
include ::Google::Protobuf::MessageExts
|
190
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
191
|
+
|
192
|
+
# Information about the session.
|
193
|
+
# @!attribute [rw] session
|
194
|
+
# @return [::String]
|
195
|
+
# Name of the newly generated or continued session.
|
196
|
+
#
|
197
|
+
# Format:
|
198
|
+
# `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}`.
|
199
|
+
class SessionInfo
|
200
|
+
include ::Google::Protobuf::MessageExts
|
201
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|
207
|
+
end
|
@@ -926,11 +926,23 @@ module Google
|
|
926
926
|
# Provide this to retrieve the subsequent page.
|
927
927
|
# @!attribute [rw] filter
|
928
928
|
# @return [::String]
|
929
|
-
# A
|
930
|
-
#
|
929
|
+
# A comma-separated list of fields to filter by, in EBNF grammar.
|
930
|
+
# The supported fields are:
|
931
|
+
# * `user_pseudo_id`
|
932
|
+
# * `state`
|
933
|
+
# * `display_name`
|
934
|
+
# * `starred`
|
935
|
+
# * `is_pinned`
|
936
|
+
# * `labels`
|
937
|
+
# * `create_time`
|
938
|
+
# * `update_time`
|
931
939
|
#
|
932
|
-
#
|
940
|
+
# Examples:
|
933
941
|
# "user_pseudo_id = some_id"
|
942
|
+
# "display_name = \"some_name\""
|
943
|
+
# "starred = true"
|
944
|
+
# "is_pinned=true AND (NOT labels:hidden)"
|
945
|
+
# "create_time > \"1970-01-01T12:00:00Z\""
|
934
946
|
# @!attribute [rw] order_by
|
935
947
|
# @return [::String]
|
936
948
|
# A comma-separated list of fields to order by, sorted in ascending order.
|
@@ -243,22 +243,16 @@ module Google
|
|
243
243
|
# between /search API calls and /answer API calls.
|
244
244
|
#
|
245
245
|
# Example #1 (multi-turn /search API calls):
|
246
|
-
#
|
247
|
-
#
|
248
|
-
#
|
249
|
-
#
|
250
|
-
#
|
251
|
-
# be interpreted as "How did Alphabet do in 2023?".
|
246
|
+
# Call /search API with the session ID generated in the first call.
|
247
|
+
# Here, the previous search query gets considered in query
|
248
|
+
# standing. I.e., if the first query is "How did Alphabet do in 2022?"
|
249
|
+
# and the current query is "How about 2023?", the current query will
|
250
|
+
# be interpreted as "How did Alphabet do in 2023?".
|
252
251
|
#
|
253
252
|
# Example #2 (coordination between /search API calls and /answer API calls):
|
254
|
-
#
|
255
|
-
#
|
256
|
-
#
|
257
|
-
# results from the first search call.
|
258
|
-
#
|
259
|
-
# Auto-session mode: when `projects/.../sessions/-` is used, a new session
|
260
|
-
# gets automatically created. Otherwise, users can use the create-session API
|
261
|
-
# to create a session manually.
|
253
|
+
# Call /answer API with the session ID generated in the first call.
|
254
|
+
# Here, the answer generation happens in the context of the search
|
255
|
+
# results from the first search call.
|
262
256
|
#
|
263
257
|
# Multi-turn Search feature is currently at private GA stage. Please use
|
264
258
|
# v1alpha or v1beta version instead before we launch this feature to public
|
@@ -59,10 +59,11 @@ module Google
|
|
59
59
|
# answer from service.
|
60
60
|
# @!attribute [rw] query
|
61
61
|
# @return [::Google::Cloud::DiscoveryEngine::V1::Query]
|
62
|
-
# The user query.
|
62
|
+
# Optional. The user query. May not be set if this turn is merely
|
63
|
+
# regenerating an answer to a different turn
|
63
64
|
# @!attribute [rw] answer
|
64
65
|
# @return [::String]
|
65
|
-
# The resource name of the answer to the user query.
|
66
|
+
# Optional. The resource name of the answer to the user query.
|
66
67
|
#
|
67
68
|
# Only set if the answer generation (/answer API call) happened in this
|
68
69
|
# turn.
|
@@ -74,9 +75,24 @@ module Google
|
|
74
75
|
# {::Google::Cloud::DiscoveryEngine::V1::GetSessionRequest#include_answer_details GetSessionRequest.include_answer_details}
|
75
76
|
# is set to true, this field will be populated when getting answer query
|
76
77
|
# session.
|
78
|
+
# @!attribute [rw] query_config
|
79
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
80
|
+
# Optional. Represents metadata related to the query config, for example
|
81
|
+
# LLM model and version used, model parameters (temperature, grounding
|
82
|
+
# parameters, etc.). The prefix "google." is reserved for Google-developed
|
83
|
+
# functionality.
|
77
84
|
class Turn
|
78
85
|
include ::Google::Protobuf::MessageExts
|
79
86
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
87
|
+
|
88
|
+
# @!attribute [rw] key
|
89
|
+
# @return [::String]
|
90
|
+
# @!attribute [rw] value
|
91
|
+
# @return [::String]
|
92
|
+
class QueryConfigEntry
|
93
|
+
include ::Google::Protobuf::MessageExts
|
94
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
|
+
end
|
80
96
|
end
|
81
97
|
|
82
98
|
# Enumeration of the state of the session.
|
@@ -93,9 +109,9 @@ module Google
|
|
93
109
|
# @!attribute [rw] text
|
94
110
|
# @return [::String]
|
95
111
|
# Plain text.
|
96
|
-
# @!attribute [
|
112
|
+
# @!attribute [r] query_id
|
97
113
|
# @return [::String]
|
98
|
-
# Unique Id for the query.
|
114
|
+
# Output only. Unique Id for the query.
|
99
115
|
class Query
|
100
116
|
include ::Google::Protobuf::MessageExts
|
101
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-discovery_engine-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -65,6 +65,13 @@ files:
|
|
65
65
|
- README.md
|
66
66
|
- lib/google-cloud-discovery_engine-v1.rb
|
67
67
|
- lib/google/cloud/discovery_engine/v1.rb
|
68
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service.rb
|
69
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service/client.rb
|
70
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service/credentials.rb
|
71
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service/paths.rb
|
72
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service/rest.rb
|
73
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service/rest/client.rb
|
74
|
+
- lib/google/cloud/discovery_engine/v1/assistant_service/rest/service_stub.rb
|
68
75
|
- lib/google/cloud/discovery_engine/v1/cmek_config_service.rb
|
69
76
|
- lib/google/cloud/discovery_engine/v1/cmek_config_service/client.rb
|
70
77
|
- lib/google/cloud/discovery_engine/v1/cmek_config_service/credentials.rb
|
@@ -196,6 +203,13 @@ files:
|
|
196
203
|
- lib/google/cloud/discovery_engine/v1/serving_config_service/rest.rb
|
197
204
|
- lib/google/cloud/discovery_engine/v1/serving_config_service/rest/client.rb
|
198
205
|
- lib/google/cloud/discovery_engine/v1/serving_config_service/rest/service_stub.rb
|
206
|
+
- lib/google/cloud/discovery_engine/v1/session_service.rb
|
207
|
+
- lib/google/cloud/discovery_engine/v1/session_service/client.rb
|
208
|
+
- lib/google/cloud/discovery_engine/v1/session_service/credentials.rb
|
209
|
+
- lib/google/cloud/discovery_engine/v1/session_service/paths.rb
|
210
|
+
- lib/google/cloud/discovery_engine/v1/session_service/rest.rb
|
211
|
+
- lib/google/cloud/discovery_engine/v1/session_service/rest/client.rb
|
212
|
+
- lib/google/cloud/discovery_engine/v1/session_service/rest/service_stub.rb
|
199
213
|
- lib/google/cloud/discovery_engine/v1/site_search_engine_service.rb
|
200
214
|
- lib/google/cloud/discovery_engine/v1/site_search_engine_service/client.rb
|
201
215
|
- lib/google/cloud/discovery_engine/v1/site_search_engine_service/credentials.rb
|
@@ -225,6 +239,10 @@ files:
|
|
225
239
|
- lib/google/cloud/discovery_engine/v1/user_license_service/rest/service_stub.rb
|
226
240
|
- lib/google/cloud/discovery_engine/v1/version.rb
|
227
241
|
- lib/google/cloud/discoveryengine/v1/answer_pb.rb
|
242
|
+
- lib/google/cloud/discoveryengine/v1/assist_answer_pb.rb
|
243
|
+
- lib/google/cloud/discoveryengine/v1/assistant_pb.rb
|
244
|
+
- lib/google/cloud/discoveryengine/v1/assistant_service_pb.rb
|
245
|
+
- lib/google/cloud/discoveryengine/v1/assistant_service_services_pb.rb
|
228
246
|
- lib/google/cloud/discoveryengine/v1/chunk_pb.rb
|
229
247
|
- lib/google/cloud/discoveryengine/v1/cmek_config_service_pb.rb
|
230
248
|
- lib/google/cloud/discoveryengine/v1/cmek_config_service_services_pb.rb
|
@@ -276,6 +294,8 @@ files:
|
|
276
294
|
- lib/google/cloud/discoveryengine/v1/serving_config_service_pb.rb
|
277
295
|
- lib/google/cloud/discoveryengine/v1/serving_config_service_services_pb.rb
|
278
296
|
- lib/google/cloud/discoveryengine/v1/session_pb.rb
|
297
|
+
- lib/google/cloud/discoveryengine/v1/session_service_pb.rb
|
298
|
+
- lib/google/cloud/discoveryengine/v1/session_service_services_pb.rb
|
279
299
|
- lib/google/cloud/discoveryengine/v1/site_search_engine_pb.rb
|
280
300
|
- lib/google/cloud/discoveryengine/v1/site_search_engine_service_pb.rb
|
281
301
|
- lib/google/cloud/discoveryengine/v1/site_search_engine_service_services_pb.rb
|
@@ -292,6 +312,9 @@ files:
|
|
292
312
|
- proto_docs/google/api/launch_stage.rb
|
293
313
|
- proto_docs/google/api/resource.rb
|
294
314
|
- proto_docs/google/cloud/discoveryengine/v1/answer.rb
|
315
|
+
- proto_docs/google/cloud/discoveryengine/v1/assist_answer.rb
|
316
|
+
- proto_docs/google/cloud/discoveryengine/v1/assistant.rb
|
317
|
+
- proto_docs/google/cloud/discoveryengine/v1/assistant_service.rb
|
295
318
|
- proto_docs/google/cloud/discoveryengine/v1/chunk.rb
|
296
319
|
- proto_docs/google/cloud/discoveryengine/v1/cmek_config_service.rb
|
297
320
|
- proto_docs/google/cloud/discoveryengine/v1/common.rb
|