google-apis-discoveryengine_v1 0.14.0 → 0.15.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/CHANGELOG.md +4 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/discoveryengine_v1/classes.rb +398 -49
- data/lib/google/apis/discoveryengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1/representations.rb +147 -1
- data/lib/google/apis/discoveryengine_v1/service.rb +108 -114
- data/lib/google/apis/discoveryengine_v1.rb +1 -1
- metadata +3 -3
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# Discoveryengine = Google::Apis::DiscoveryengineV1 # Alias the module
|
31
31
|
# service = Discoveryengine::DiscoveryEngineService.new
|
32
32
|
#
|
33
|
-
# @see https://cloud.google.com/
|
33
|
+
# @see https://cloud.google.com/generative-ai-app-builder/docs/
|
34
34
|
class DiscoveryEngineService < Google::Apis::Core::BaseService
|
35
35
|
DEFAULT_ENDPOINT_TEMPLATE = "https://discoveryengine.$UNIVERSE_DOMAIN$/"
|
36
36
|
|
@@ -1007,10 +1007,10 @@ module Google
|
|
1007
1007
|
# request can be submitted to adjust this limit. If the Control to create
|
1008
1008
|
# already exists, an ALREADY_EXISTS error is returned.
|
1009
1009
|
# @param [String] parent
|
1010
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
1011
|
-
#
|
1012
|
-
#
|
1013
|
-
#
|
1010
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
1011
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``
|
1012
|
+
# or `projects/`project`/locations/`location`/collections/`collection_id`/
|
1013
|
+
# engines/`engine_id``.
|
1014
1014
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Control] google_cloud_discoveryengine_v1_control_object
|
1015
1015
|
# @param [String] control_id
|
1016
1016
|
# Required. The ID to use for the Control, which will become the final component
|
@@ -1050,8 +1050,8 @@ module Google
|
|
1050
1050
|
# is returned.
|
1051
1051
|
# @param [String] name
|
1052
1052
|
# Required. The resource name of the Control to delete. Format: `projects/`
|
1053
|
-
#
|
1054
|
-
#
|
1053
|
+
# project`/locations/`location`/collections/`collection_id`/dataStores/`
|
1054
|
+
# data_store_id`/controls/`control_id``
|
1055
1055
|
# @param [String] fields
|
1056
1056
|
# Selector specifying which fields to include in a partial response.
|
1057
1057
|
# @param [String] quota_user
|
@@ -1081,9 +1081,9 @@ module Google
|
|
1081
1081
|
|
1082
1082
|
# Gets a Control.
|
1083
1083
|
# @param [String] name
|
1084
|
-
# Required. The resource name of the Control to get. Format: `projects/`
|
1085
|
-
#
|
1086
|
-
#
|
1084
|
+
# Required. The resource name of the Control to get. Format: `projects/`project`/
|
1085
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id`/
|
1086
|
+
# controls/`control_id``
|
1087
1087
|
# @param [String] fields
|
1088
1088
|
# Selector specifying which fields to include in a partial response.
|
1089
1089
|
# @param [String] quota_user
|
@@ -1113,10 +1113,10 @@ module Google
|
|
1113
1113
|
|
1114
1114
|
# Lists all Controls by their parent DataStore.
|
1115
1115
|
# @param [String] parent
|
1116
|
-
# Required. The data store resource name. Format: `projects/`
|
1117
|
-
#
|
1118
|
-
#
|
1119
|
-
#
|
1116
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
1117
|
+
# location`/collections/`collection_id`/dataStores/`data_store_id`` or `projects/
|
1118
|
+
# `project`/locations/`location`/collections/`collection_id`/engines/`engine_id``
|
1119
|
+
# .
|
1120
1120
|
# @param [String] filter
|
1121
1121
|
# Optional. A filter to apply on the list results. Supported features: * List
|
1122
1122
|
# all the products under the parent branch if filter is unset. Currently this
|
@@ -1200,9 +1200,9 @@ module Google
|
|
1200
1200
|
# Converses a conversation.
|
1201
1201
|
# @param [String] name
|
1202
1202
|
# Required. The resource name of the Conversation to get. Format: `projects/`
|
1203
|
-
#
|
1204
|
-
# data_store_id`/conversations/`conversation_id``. Use `projects/`
|
1205
|
-
#
|
1203
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
1204
|
+
# data_store_id`/conversations/`conversation_id``. Use `projects/`project`/
|
1205
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id`/
|
1206
1206
|
# conversations/-` to activate auto session mode, which automatically creates a
|
1207
1207
|
# new conversation inside a ConverseConversation session.
|
1208
1208
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ConverseConversationRequest] google_cloud_discoveryengine_v1_converse_conversation_request_object
|
@@ -1238,9 +1238,8 @@ module Google
|
|
1238
1238
|
# Creates a Conversation. If the Conversation to create already exists, an
|
1239
1239
|
# ALREADY_EXISTS error is returned.
|
1240
1240
|
# @param [String] parent
|
1241
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
1242
|
-
#
|
1243
|
-
# data_store_id``
|
1241
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
1242
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id``
|
1244
1243
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Conversation] google_cloud_discoveryengine_v1_conversation_object
|
1245
1244
|
# @param [String] fields
|
1246
1245
|
# Selector specifying which fields to include in a partial response.
|
@@ -1275,7 +1274,7 @@ module Google
|
|
1275
1274
|
# NOT_FOUND error is returned.
|
1276
1275
|
# @param [String] name
|
1277
1276
|
# Required. The resource name of the Conversation to delete. Format: `projects/`
|
1278
|
-
#
|
1277
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
1279
1278
|
# data_store_id`/conversations/`conversation_id``
|
1280
1279
|
# @param [String] fields
|
1281
1280
|
# Selector specifying which fields to include in a partial response.
|
@@ -1307,7 +1306,7 @@ module Google
|
|
1307
1306
|
# Gets a Conversation.
|
1308
1307
|
# @param [String] name
|
1309
1308
|
# Required. The resource name of the Conversation to get. Format: `projects/`
|
1310
|
-
#
|
1309
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
1311
1310
|
# data_store_id`/conversations/`conversation_id``
|
1312
1311
|
# @param [String] fields
|
1313
1312
|
# Selector specifying which fields to include in a partial response.
|
@@ -1338,8 +1337,8 @@ module Google
|
|
1338
1337
|
|
1339
1338
|
# Lists all Conversations by their parent DataStore.
|
1340
1339
|
# @param [String] parent
|
1341
|
-
# Required. The data store resource name. Format: `projects/`
|
1342
|
-
#
|
1340
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
1341
|
+
# location`/collections/`collection`/dataStores/`data_store_id``
|
1343
1342
|
# @param [String] filter
|
1344
1343
|
# A filter to apply on the list results. The supported features are:
|
1345
1344
|
# user_pseudo_id, state. Example: "user_pseudo_id = some_id"
|
@@ -1976,9 +1975,8 @@ module Google
|
|
1976
1975
|
# Creates a Session. If the Session to create already exists, an ALREADY_EXISTS
|
1977
1976
|
# error is returned.
|
1978
1977
|
# @param [String] parent
|
1979
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
1980
|
-
#
|
1981
|
-
# data_store_id``
|
1978
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
1979
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id``
|
1982
1980
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Session] google_cloud_discoveryengine_v1_session_object
|
1983
1981
|
# @param [String] fields
|
1984
1982
|
# Selector specifying which fields to include in a partial response.
|
@@ -2013,7 +2011,7 @@ module Google
|
|
2013
2011
|
# is returned.
|
2014
2012
|
# @param [String] name
|
2015
2013
|
# Required. The resource name of the Session to delete. Format: `projects/`
|
2016
|
-
#
|
2014
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
2017
2015
|
# data_store_id`/sessions/`session_id``
|
2018
2016
|
# @param [String] fields
|
2019
2017
|
# Selector specifying which fields to include in a partial response.
|
@@ -2044,9 +2042,9 @@ module Google
|
|
2044
2042
|
|
2045
2043
|
# Gets a Session.
|
2046
2044
|
# @param [String] name
|
2047
|
-
# Required. The resource name of the Session to get. Format: `projects/`
|
2048
|
-
#
|
2049
|
-
#
|
2045
|
+
# Required. The resource name of the Session to get. Format: `projects/`project`/
|
2046
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id`/
|
2047
|
+
# sessions/`session_id``
|
2050
2048
|
# @param [String] fields
|
2051
2049
|
# Selector specifying which fields to include in a partial response.
|
2052
2050
|
# @param [String] quota_user
|
@@ -2076,8 +2074,8 @@ module Google
|
|
2076
2074
|
|
2077
2075
|
# Lists all Sessions by their parent DataStore.
|
2078
2076
|
# @param [String] parent
|
2079
|
-
# Required. The data store resource name. Format: `projects/`
|
2080
|
-
#
|
2077
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
2078
|
+
# location`/collections/`collection`/dataStores/`data_store_id``
|
2081
2079
|
# @param [String] filter
|
2082
2080
|
# A filter to apply on the list results. The supported features are:
|
2083
2081
|
# user_pseudo_id, state. Example: "user_pseudo_id = some_id"
|
@@ -2164,9 +2162,9 @@ module Google
|
|
2164
2162
|
|
2165
2163
|
# Gets a Answer.
|
2166
2164
|
# @param [String] name
|
2167
|
-
# Required. The resource name of the Answer to get. Format: `projects/`
|
2168
|
-
#
|
2169
|
-
#
|
2165
|
+
# Required. The resource name of the Answer to get. Format: `projects/`project`/
|
2166
|
+
# locations/`location`/collections/`collection`/engines/`engine_id`/sessions/`
|
2167
|
+
# session_id`/answers/`answer_id``
|
2170
2168
|
# @param [String] fields
|
2171
2169
|
# Selector specifying which fields to include in a partial response.
|
2172
2170
|
# @param [String] quota_user
|
@@ -2901,8 +2899,8 @@ module Google
|
|
2901
2899
|
# first.
|
2902
2900
|
# @param [String] parent
|
2903
2901
|
# Required. The resource name of the catalog under which the events are created.
|
2904
|
-
# The format is `projects
|
2905
|
-
#
|
2902
|
+
# The format is `projects/`project`/locations/global/collections/`collection`/
|
2903
|
+
# dataStores/`dataStore``.
|
2906
2904
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PurgeUserEventsRequest] google_cloud_discoveryengine_v1_purge_user_events_request_object
|
2907
2905
|
# @param [String] fields
|
2908
2906
|
# Selector specifying which fields to include in a partial response.
|
@@ -3125,9 +3123,9 @@ module Google
|
|
3125
3123
|
# @param [String] name
|
3126
3124
|
# Immutable. The fully qualified resource name of the engine. This field must be
|
3127
3125
|
# a UTF-8 encoded string with a length limit of 1024 characters. Format: `
|
3128
|
-
# projects/`
|
3129
|
-
#
|
3130
|
-
#
|
3126
|
+
# projects/`project`/locations/`location`/collections/`collection`/engines/`
|
3127
|
+
# engine`` engine should be 1-63 characters, and valid characters are /a-z0-9*/.
|
3128
|
+
# Otherwise, an INVALID_ARGUMENT error is returned.
|
3131
3129
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine] google_cloud_discoveryengine_v1_engine_object
|
3132
3130
|
# @param [String] update_mask
|
3133
3131
|
# Indicates which fields in the provided Engine to update. If an unsupported or
|
@@ -3166,10 +3164,10 @@ module Google
|
|
3166
3164
|
# request can be submitted to adjust this limit. If the Control to create
|
3167
3165
|
# already exists, an ALREADY_EXISTS error is returned.
|
3168
3166
|
# @param [String] parent
|
3169
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
3170
|
-
#
|
3171
|
-
#
|
3172
|
-
#
|
3167
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
3168
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``
|
3169
|
+
# or `projects/`project`/locations/`location`/collections/`collection_id`/
|
3170
|
+
# engines/`engine_id``.
|
3173
3171
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Control] google_cloud_discoveryengine_v1_control_object
|
3174
3172
|
# @param [String] control_id
|
3175
3173
|
# Required. The ID to use for the Control, which will become the final component
|
@@ -3209,8 +3207,8 @@ module Google
|
|
3209
3207
|
# is returned.
|
3210
3208
|
# @param [String] name
|
3211
3209
|
# Required. The resource name of the Control to delete. Format: `projects/`
|
3212
|
-
#
|
3213
|
-
#
|
3210
|
+
# project`/locations/`location`/collections/`collection_id`/dataStores/`
|
3211
|
+
# data_store_id`/controls/`control_id``
|
3214
3212
|
# @param [String] fields
|
3215
3213
|
# Selector specifying which fields to include in a partial response.
|
3216
3214
|
# @param [String] quota_user
|
@@ -3240,9 +3238,9 @@ module Google
|
|
3240
3238
|
|
3241
3239
|
# Gets a Control.
|
3242
3240
|
# @param [String] name
|
3243
|
-
# Required. The resource name of the Control to get. Format: `projects/`
|
3244
|
-
#
|
3245
|
-
#
|
3241
|
+
# Required. The resource name of the Control to get. Format: `projects/`project`/
|
3242
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id`/
|
3243
|
+
# controls/`control_id``
|
3246
3244
|
# @param [String] fields
|
3247
3245
|
# Selector specifying which fields to include in a partial response.
|
3248
3246
|
# @param [String] quota_user
|
@@ -3272,10 +3270,10 @@ module Google
|
|
3272
3270
|
|
3273
3271
|
# Lists all Controls by their parent DataStore.
|
3274
3272
|
# @param [String] parent
|
3275
|
-
# Required. The data store resource name. Format: `projects/`
|
3276
|
-
#
|
3277
|
-
#
|
3278
|
-
#
|
3273
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
3274
|
+
# location`/collections/`collection_id`/dataStores/`data_store_id`` or `projects/
|
3275
|
+
# `project`/locations/`location`/collections/`collection_id`/engines/`engine_id``
|
3276
|
+
# .
|
3279
3277
|
# @param [String] filter
|
3280
3278
|
# Optional. A filter to apply on the list results. Supported features: * List
|
3281
3279
|
# all the products under the parent branch if filter is unset. Currently this
|
@@ -3359,9 +3357,9 @@ module Google
|
|
3359
3357
|
# Converses a conversation.
|
3360
3358
|
# @param [String] name
|
3361
3359
|
# Required. The resource name of the Conversation to get. Format: `projects/`
|
3362
|
-
#
|
3363
|
-
# data_store_id`/conversations/`conversation_id``. Use `projects/`
|
3364
|
-
#
|
3360
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
3361
|
+
# data_store_id`/conversations/`conversation_id``. Use `projects/`project`/
|
3362
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id`/
|
3365
3363
|
# conversations/-` to activate auto session mode, which automatically creates a
|
3366
3364
|
# new conversation inside a ConverseConversation session.
|
3367
3365
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ConverseConversationRequest] google_cloud_discoveryengine_v1_converse_conversation_request_object
|
@@ -3397,9 +3395,8 @@ module Google
|
|
3397
3395
|
# Creates a Conversation. If the Conversation to create already exists, an
|
3398
3396
|
# ALREADY_EXISTS error is returned.
|
3399
3397
|
# @param [String] parent
|
3400
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
3401
|
-
#
|
3402
|
-
# data_store_id``
|
3398
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
3399
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id``
|
3403
3400
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Conversation] google_cloud_discoveryengine_v1_conversation_object
|
3404
3401
|
# @param [String] fields
|
3405
3402
|
# Selector specifying which fields to include in a partial response.
|
@@ -3434,7 +3431,7 @@ module Google
|
|
3434
3431
|
# NOT_FOUND error is returned.
|
3435
3432
|
# @param [String] name
|
3436
3433
|
# Required. The resource name of the Conversation to delete. Format: `projects/`
|
3437
|
-
#
|
3434
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
3438
3435
|
# data_store_id`/conversations/`conversation_id``
|
3439
3436
|
# @param [String] fields
|
3440
3437
|
# Selector specifying which fields to include in a partial response.
|
@@ -3466,7 +3463,7 @@ module Google
|
|
3466
3463
|
# Gets a Conversation.
|
3467
3464
|
# @param [String] name
|
3468
3465
|
# Required. The resource name of the Conversation to get. Format: `projects/`
|
3469
|
-
#
|
3466
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
3470
3467
|
# data_store_id`/conversations/`conversation_id``
|
3471
3468
|
# @param [String] fields
|
3472
3469
|
# Selector specifying which fields to include in a partial response.
|
@@ -3497,8 +3494,8 @@ module Google
|
|
3497
3494
|
|
3498
3495
|
# Lists all Conversations by their parent DataStore.
|
3499
3496
|
# @param [String] parent
|
3500
|
-
# Required. The data store resource name. Format: `projects/`
|
3501
|
-
#
|
3497
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
3498
|
+
# location`/collections/`collection`/dataStores/`data_store_id``
|
3502
3499
|
# @param [String] filter
|
3503
3500
|
# A filter to apply on the list results. The supported features are:
|
3504
3501
|
# user_pseudo_id, state. Example: "user_pseudo_id = some_id"
|
@@ -3774,9 +3771,8 @@ module Google
|
|
3774
3771
|
# Creates a Session. If the Session to create already exists, an ALREADY_EXISTS
|
3775
3772
|
# error is returned.
|
3776
3773
|
# @param [String] parent
|
3777
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
3778
|
-
#
|
3779
|
-
# data_store_id``
|
3774
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
3775
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id``
|
3780
3776
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Session] google_cloud_discoveryengine_v1_session_object
|
3781
3777
|
# @param [String] fields
|
3782
3778
|
# Selector specifying which fields to include in a partial response.
|
@@ -3811,7 +3807,7 @@ module Google
|
|
3811
3807
|
# is returned.
|
3812
3808
|
# @param [String] name
|
3813
3809
|
# Required. The resource name of the Session to delete. Format: `projects/`
|
3814
|
-
#
|
3810
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
3815
3811
|
# data_store_id`/sessions/`session_id``
|
3816
3812
|
# @param [String] fields
|
3817
3813
|
# Selector specifying which fields to include in a partial response.
|
@@ -3842,9 +3838,9 @@ module Google
|
|
3842
3838
|
|
3843
3839
|
# Gets a Session.
|
3844
3840
|
# @param [String] name
|
3845
|
-
# Required. The resource name of the Session to get. Format: `projects/`
|
3846
|
-
#
|
3847
|
-
#
|
3841
|
+
# Required. The resource name of the Session to get. Format: `projects/`project`/
|
3842
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id`/
|
3843
|
+
# sessions/`session_id``
|
3848
3844
|
# @param [String] fields
|
3849
3845
|
# Selector specifying which fields to include in a partial response.
|
3850
3846
|
# @param [String] quota_user
|
@@ -3874,8 +3870,8 @@ module Google
|
|
3874
3870
|
|
3875
3871
|
# Lists all Sessions by their parent DataStore.
|
3876
3872
|
# @param [String] parent
|
3877
|
-
# Required. The data store resource name. Format: `projects/`
|
3878
|
-
#
|
3873
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
3874
|
+
# location`/collections/`collection`/dataStores/`data_store_id``
|
3879
3875
|
# @param [String] filter
|
3880
3876
|
# A filter to apply on the list results. The supported features are:
|
3881
3877
|
# user_pseudo_id, state. Example: "user_pseudo_id = some_id"
|
@@ -3962,9 +3958,9 @@ module Google
|
|
3962
3958
|
|
3963
3959
|
# Gets a Answer.
|
3964
3960
|
# @param [String] name
|
3965
|
-
# Required. The resource name of the Answer to get. Format: `projects/`
|
3966
|
-
#
|
3967
|
-
#
|
3961
|
+
# Required. The resource name of the Answer to get. Format: `projects/`project`/
|
3962
|
+
# locations/`location`/collections/`collection`/engines/`engine_id`/sessions/`
|
3963
|
+
# session_id`/answers/`answer_id``
|
3968
3964
|
# @param [String] fields
|
3969
3965
|
# Selector specifying which fields to include in a partial response.
|
3970
3966
|
# @param [String] quota_user
|
@@ -4876,10 +4872,10 @@ module Google
|
|
4876
4872
|
# request can be submitted to adjust this limit. If the Control to create
|
4877
4873
|
# already exists, an ALREADY_EXISTS error is returned.
|
4878
4874
|
# @param [String] parent
|
4879
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
4880
|
-
#
|
4881
|
-
#
|
4882
|
-
#
|
4875
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
4876
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``
|
4877
|
+
# or `projects/`project`/locations/`location`/collections/`collection_id`/
|
4878
|
+
# engines/`engine_id``.
|
4883
4879
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Control] google_cloud_discoveryengine_v1_control_object
|
4884
4880
|
# @param [String] control_id
|
4885
4881
|
# Required. The ID to use for the Control, which will become the final component
|
@@ -4919,8 +4915,8 @@ module Google
|
|
4919
4915
|
# is returned.
|
4920
4916
|
# @param [String] name
|
4921
4917
|
# Required. The resource name of the Control to delete. Format: `projects/`
|
4922
|
-
#
|
4923
|
-
#
|
4918
|
+
# project`/locations/`location`/collections/`collection_id`/dataStores/`
|
4919
|
+
# data_store_id`/controls/`control_id``
|
4924
4920
|
# @param [String] fields
|
4925
4921
|
# Selector specifying which fields to include in a partial response.
|
4926
4922
|
# @param [String] quota_user
|
@@ -4950,9 +4946,9 @@ module Google
|
|
4950
4946
|
|
4951
4947
|
# Gets a Control.
|
4952
4948
|
# @param [String] name
|
4953
|
-
# Required. The resource name of the Control to get. Format: `projects/`
|
4954
|
-
#
|
4955
|
-
#
|
4949
|
+
# Required. The resource name of the Control to get. Format: `projects/`project`/
|
4950
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id`/
|
4951
|
+
# controls/`control_id``
|
4956
4952
|
# @param [String] fields
|
4957
4953
|
# Selector specifying which fields to include in a partial response.
|
4958
4954
|
# @param [String] quota_user
|
@@ -4982,10 +4978,10 @@ module Google
|
|
4982
4978
|
|
4983
4979
|
# Lists all Controls by their parent DataStore.
|
4984
4980
|
# @param [String] parent
|
4985
|
-
# Required. The data store resource name. Format: `projects/`
|
4986
|
-
#
|
4987
|
-
#
|
4988
|
-
#
|
4981
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
4982
|
+
# location`/collections/`collection_id`/dataStores/`data_store_id`` or `projects/
|
4983
|
+
# `project`/locations/`location`/collections/`collection_id`/engines/`engine_id``
|
4984
|
+
# .
|
4989
4985
|
# @param [String] filter
|
4990
4986
|
# Optional. A filter to apply on the list results. Supported features: * List
|
4991
4987
|
# all the products under the parent branch if filter is unset. Currently this
|
@@ -5069,9 +5065,9 @@ module Google
|
|
5069
5065
|
# Converses a conversation.
|
5070
5066
|
# @param [String] name
|
5071
5067
|
# Required. The resource name of the Conversation to get. Format: `projects/`
|
5072
|
-
#
|
5073
|
-
# data_store_id`/conversations/`conversation_id``. Use `projects/`
|
5074
|
-
#
|
5068
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
5069
|
+
# data_store_id`/conversations/`conversation_id``. Use `projects/`project`/
|
5070
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id`/
|
5075
5071
|
# conversations/-` to activate auto session mode, which automatically creates a
|
5076
5072
|
# new conversation inside a ConverseConversation session.
|
5077
5073
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ConverseConversationRequest] google_cloud_discoveryengine_v1_converse_conversation_request_object
|
@@ -5107,9 +5103,8 @@ module Google
|
|
5107
5103
|
# Creates a Conversation. If the Conversation to create already exists, an
|
5108
5104
|
# ALREADY_EXISTS error is returned.
|
5109
5105
|
# @param [String] parent
|
5110
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
5111
|
-
#
|
5112
|
-
# data_store_id``
|
5106
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
5107
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id``
|
5113
5108
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Conversation] google_cloud_discoveryengine_v1_conversation_object
|
5114
5109
|
# @param [String] fields
|
5115
5110
|
# Selector specifying which fields to include in a partial response.
|
@@ -5144,7 +5139,7 @@ module Google
|
|
5144
5139
|
# NOT_FOUND error is returned.
|
5145
5140
|
# @param [String] name
|
5146
5141
|
# Required. The resource name of the Conversation to delete. Format: `projects/`
|
5147
|
-
#
|
5142
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
5148
5143
|
# data_store_id`/conversations/`conversation_id``
|
5149
5144
|
# @param [String] fields
|
5150
5145
|
# Selector specifying which fields to include in a partial response.
|
@@ -5176,7 +5171,7 @@ module Google
|
|
5176
5171
|
# Gets a Conversation.
|
5177
5172
|
# @param [String] name
|
5178
5173
|
# Required. The resource name of the Conversation to get. Format: `projects/`
|
5179
|
-
#
|
5174
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
5180
5175
|
# data_store_id`/conversations/`conversation_id``
|
5181
5176
|
# @param [String] fields
|
5182
5177
|
# Selector specifying which fields to include in a partial response.
|
@@ -5207,8 +5202,8 @@ module Google
|
|
5207
5202
|
|
5208
5203
|
# Lists all Conversations by their parent DataStore.
|
5209
5204
|
# @param [String] parent
|
5210
|
-
# Required. The data store resource name. Format: `projects/`
|
5211
|
-
#
|
5205
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
5206
|
+
# location`/collections/`collection`/dataStores/`data_store_id``
|
5212
5207
|
# @param [String] filter
|
5213
5208
|
# A filter to apply on the list results. The supported features are:
|
5214
5209
|
# user_pseudo_id, state. Example: "user_pseudo_id = some_id"
|
@@ -5742,9 +5737,8 @@ module Google
|
|
5742
5737
|
# Creates a Session. If the Session to create already exists, an ALREADY_EXISTS
|
5743
5738
|
# error is returned.
|
5744
5739
|
# @param [String] parent
|
5745
|
-
# Required. Full resource name of parent data store. Format: `projects/`
|
5746
|
-
#
|
5747
|
-
# data_store_id``
|
5740
|
+
# Required. Full resource name of parent data store. Format: `projects/`project`/
|
5741
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id``
|
5748
5742
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Session] google_cloud_discoveryengine_v1_session_object
|
5749
5743
|
# @param [String] fields
|
5750
5744
|
# Selector specifying which fields to include in a partial response.
|
@@ -5779,7 +5773,7 @@ module Google
|
|
5779
5773
|
# is returned.
|
5780
5774
|
# @param [String] name
|
5781
5775
|
# Required. The resource name of the Session to delete. Format: `projects/`
|
5782
|
-
#
|
5776
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`
|
5783
5777
|
# data_store_id`/sessions/`session_id``
|
5784
5778
|
# @param [String] fields
|
5785
5779
|
# Selector specifying which fields to include in a partial response.
|
@@ -5810,9 +5804,9 @@ module Google
|
|
5810
5804
|
|
5811
5805
|
# Gets a Session.
|
5812
5806
|
# @param [String] name
|
5813
|
-
# Required. The resource name of the Session to get. Format: `projects/`
|
5814
|
-
#
|
5815
|
-
#
|
5807
|
+
# Required. The resource name of the Session to get. Format: `projects/`project`/
|
5808
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store_id`/
|
5809
|
+
# sessions/`session_id``
|
5816
5810
|
# @param [String] fields
|
5817
5811
|
# Selector specifying which fields to include in a partial response.
|
5818
5812
|
# @param [String] quota_user
|
@@ -5842,8 +5836,8 @@ module Google
|
|
5842
5836
|
|
5843
5837
|
# Lists all Sessions by their parent DataStore.
|
5844
5838
|
# @param [String] parent
|
5845
|
-
# Required. The data store resource name. Format: `projects/`
|
5846
|
-
#
|
5839
|
+
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
5840
|
+
# location`/collections/`collection`/dataStores/`data_store_id``
|
5847
5841
|
# @param [String] filter
|
5848
5842
|
# A filter to apply on the list results. The supported features are:
|
5849
5843
|
# user_pseudo_id, state. Example: "user_pseudo_id = some_id"
|
@@ -5930,9 +5924,9 @@ module Google
|
|
5930
5924
|
|
5931
5925
|
# Gets a Answer.
|
5932
5926
|
# @param [String] name
|
5933
|
-
# Required. The resource name of the Answer to get. Format: `projects/`
|
5934
|
-
#
|
5935
|
-
#
|
5927
|
+
# Required. The resource name of the Answer to get. Format: `projects/`project`/
|
5928
|
+
# locations/`location`/collections/`collection`/engines/`engine_id`/sessions/`
|
5929
|
+
# session_id`/answers/`answer_id``
|
5936
5930
|
# @param [String] fields
|
5937
5931
|
# Selector specifying which fields to include in a partial response.
|
5938
5932
|
# @param [String] quota_user
|
@@ -6444,8 +6438,8 @@ module Google
|
|
6444
6438
|
# first.
|
6445
6439
|
# @param [String] parent
|
6446
6440
|
# Required. The resource name of the catalog under which the events are created.
|
6447
|
-
# The format is `projects
|
6448
|
-
#
|
6441
|
+
# The format is `projects/`project`/locations/global/collections/`collection`/
|
6442
|
+
# dataStores/`dataStore``.
|
6449
6443
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PurgeUserEventsRequest] google_cloud_discoveryengine_v1_purge_user_events_request_object
|
6450
6444
|
# @param [String] fields
|
6451
6445
|
# Selector specifying which fields to include in a partial response.
|
@@ -6697,7 +6691,7 @@ module Google
|
|
6697
6691
|
# Ranks a list of text records based on the given input query.
|
6698
6692
|
# @param [String] ranking_config
|
6699
6693
|
# Required. The resource name of the rank service config, such as `projects/`
|
6700
|
-
# project_num`/locations/`
|
6694
|
+
# project_num`/locations/`location`/rankingConfigs/default_ranking_config`.
|
6701
6695
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1RankRequest] google_cloud_discoveryengine_v1_rank_request_object
|
6702
6696
|
# @param [String] fields
|
6703
6697
|
# Selector specifying which fields to include in a partial response.
|
@@ -23,7 +23,7 @@ module Google
|
|
23
23
|
#
|
24
24
|
# Discovery Engine API.
|
25
25
|
#
|
26
|
-
# @see https://cloud.google.com/
|
26
|
+
# @see https://cloud.google.com/generative-ai-app-builder/docs/
|
27
27
|
module DiscoveryengineV1
|
28
28
|
# Version of the Discovery Engine API this client connects to.
|
29
29
|
# This is NOT the gem version.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|