google-apis-discoveryengine_v1beta 0.74.0 → 0.75.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/lib/google/apis/discoveryengine_v1beta/classes.rb +99 -40
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +42 -3
- data/lib/google/apis/discoveryengine_v1beta/service.rb +88 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a5f5ee374591fadf05a23b1a3c233ed1bdc3030feecc8b27d38e2f88278d465
|
4
|
+
data.tar.gz: b446f78851967eba66f938aa14ba1b23f8b06f3e19ae6c90538e80ecb02ce4ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef2c65919dbf6fbcb8c8aabc7f2ac13fc4ffcf0d5667873198e3a5d5d1d996cbf54bfc4b545494aa8932569bd83edfd214aba332a596522b77d747223eef139c
|
7
|
+
data.tar.gz: ecb6fcc329f97cfb368b65936036fc453fe9a636e86eab7065af2cdd31a7815f56730cc7ac2b08765afc2dfdd00facf936eb259ccff780506d76a70c0e120a69
|
data/CHANGELOG.md
CHANGED
@@ -867,6 +867,28 @@ module Google
|
|
867
867
|
end
|
868
868
|
end
|
869
869
|
|
870
|
+
# Discovery Engine Assistant resource.
|
871
|
+
class GoogleCloudDiscoveryengineV1Assistant
|
872
|
+
include Google::Apis::Core::Hashable
|
873
|
+
|
874
|
+
# Immutable. Resource name of the assistant. Format: `projects/`project`/
|
875
|
+
# locations/`location`/collections/`collection`/engines/`engine`/assistants/`
|
876
|
+
# assistant`` It must be a UTF-8 encoded string with a length limit of 1024
|
877
|
+
# characters.
|
878
|
+
# Corresponds to the JSON property `name`
|
879
|
+
# @return [String]
|
880
|
+
attr_accessor :name
|
881
|
+
|
882
|
+
def initialize(**args)
|
883
|
+
update!(**args)
|
884
|
+
end
|
885
|
+
|
886
|
+
# Update properties of this object
|
887
|
+
def update!(**args)
|
888
|
+
@name = args[:name] if args.key?(:name)
|
889
|
+
end
|
890
|
+
end
|
891
|
+
|
870
892
|
# Metadata related to the progress of the SiteSearchEngineService.
|
871
893
|
# BatchCreateTargetSites operation. This will be returned by the google.
|
872
894
|
# longrunning.Operation.metadata field.
|
@@ -989,14 +1011,14 @@ module Google
|
|
989
1011
|
attr_accessor :is_default
|
990
1012
|
alias_method :is_default?, :is_default
|
991
1013
|
|
992
|
-
# KMS key resource name which will be used to encrypt resources `
|
993
|
-
# project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
|
1014
|
+
# Required. KMS key resource name which will be used to encrypt resources `
|
1015
|
+
# projects/`project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
|
994
1016
|
# Corresponds to the JSON property `kmsKey`
|
995
1017
|
# @return [String]
|
996
1018
|
attr_accessor :kms_key
|
997
1019
|
|
998
|
-
# KMS key version resource name which will be used to encrypt
|
999
|
-
# cryptoKeyVersions/`keyVersion``.
|
1020
|
+
# Output only. KMS key version resource name which will be used to encrypt
|
1021
|
+
# resources `/cryptoKeyVersions/`keyVersion``.
|
1000
1022
|
# Corresponds to the JSON property `kmsKeyVersion`
|
1001
1023
|
# @return [String]
|
1002
1024
|
attr_accessor :kms_key_version
|
@@ -5617,14 +5639,14 @@ module Google
|
|
5617
5639
|
attr_accessor :is_default
|
5618
5640
|
alias_method :is_default?, :is_default
|
5619
5641
|
|
5620
|
-
# KMS key resource name which will be used to encrypt resources `
|
5621
|
-
# project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
|
5642
|
+
# Required. KMS key resource name which will be used to encrypt resources `
|
5643
|
+
# projects/`project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
|
5622
5644
|
# Corresponds to the JSON property `kmsKey`
|
5623
5645
|
# @return [String]
|
5624
5646
|
attr_accessor :kms_key
|
5625
5647
|
|
5626
|
-
# KMS key version resource name which will be used to encrypt
|
5627
|
-
# cryptoKeyVersions/`keyVersion``.
|
5648
|
+
# Output only. KMS key version resource name which will be used to encrypt
|
5649
|
+
# resources `/cryptoKeyVersions/`keyVersion``.
|
5628
5650
|
# Corresponds to the JSON property `kmsKeyVersion`
|
5629
5651
|
# @return [String]
|
5630
5652
|
attr_accessor :kms_key_version
|
@@ -9359,9 +9381,12 @@ module Google
|
|
9359
9381
|
class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
|
9360
9382
|
include Google::Apis::Core::Hashable
|
9361
9383
|
|
9362
|
-
# A
|
9363
|
-
# user_pseudo_id
|
9364
|
-
#
|
9384
|
+
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
9385
|
+
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
9386
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: "
|
9387
|
+
# user_pseudo_id = some_id" "display_name = \"some_name\"" "starred = true" "
|
9388
|
+
# is_pinned=true AND (NOT labels:hidden)" "create_time > \"1970-01-01T12:00:00Z\"
|
9389
|
+
# "
|
9365
9390
|
# Corresponds to the JSON property `filter`
|
9366
9391
|
# @return [String]
|
9367
9392
|
attr_accessor :filter
|
@@ -14820,6 +14845,14 @@ module Google
|
|
14820
14845
|
# @return [Array<String>]
|
14821
14846
|
attr_accessor :assist_skipped_reasons
|
14822
14847
|
|
14848
|
+
# Immutable. Identifier. Resource name of the `AssistAnswer`. Format: `projects/`
|
14849
|
+
# project`/locations/`location`/collections/`collection`/engines/`engine`/
|
14850
|
+
# sessions/`session`/assistAnswers/`assist_answer`` This field must be a UTF-8
|
14851
|
+
# encoded string with a length limit of 1024 characters.
|
14852
|
+
# Corresponds to the JSON property `name`
|
14853
|
+
# @return [String]
|
14854
|
+
attr_accessor :name
|
14855
|
+
|
14823
14856
|
# Replies of the assistant.
|
14824
14857
|
# Corresponds to the JSON property `replies`
|
14825
14858
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistAnswerReply>]
|
@@ -14837,6 +14870,7 @@ module Google
|
|
14837
14870
|
# Update properties of this object
|
14838
14871
|
def update!(**args)
|
14839
14872
|
@assist_skipped_reasons = args[:assist_skipped_reasons] if args.key?(:assist_skipped_reasons)
|
14873
|
+
@name = args[:name] if args.key?(:name)
|
14840
14874
|
@replies = args[:replies] if args.key?(:replies)
|
14841
14875
|
@state = args[:state] if args.key?(:state)
|
14842
14876
|
end
|
@@ -14890,6 +14924,28 @@ module Google
|
|
14890
14924
|
end
|
14891
14925
|
end
|
14892
14926
|
|
14927
|
+
# Discovery Engine Assistant resource.
|
14928
|
+
class GoogleCloudDiscoveryengineV1betaAssistant
|
14929
|
+
include Google::Apis::Core::Hashable
|
14930
|
+
|
14931
|
+
# Immutable. Resource name of the assistant. Format: `projects/`project`/
|
14932
|
+
# locations/`location`/collections/`collection`/engines/`engine`/assistants/`
|
14933
|
+
# assistant`` It must be a UTF-8 encoded string with a length limit of 1024
|
14934
|
+
# characters.
|
14935
|
+
# Corresponds to the JSON property `name`
|
14936
|
+
# @return [String]
|
14937
|
+
attr_accessor :name
|
14938
|
+
|
14939
|
+
def initialize(**args)
|
14940
|
+
update!(**args)
|
14941
|
+
end
|
14942
|
+
|
14943
|
+
# Update properties of this object
|
14944
|
+
def update!(**args)
|
14945
|
+
@name = args[:name] if args.key?(:name)
|
14946
|
+
end
|
14947
|
+
end
|
14948
|
+
|
14893
14949
|
# Multi-modal content.
|
14894
14950
|
class GoogleCloudDiscoveryengineV1betaAssistantContent
|
14895
14951
|
include Google::Apis::Core::Hashable
|
@@ -16228,14 +16284,14 @@ module Google
|
|
16228
16284
|
attr_accessor :is_default
|
16229
16285
|
alias_method :is_default?, :is_default
|
16230
16286
|
|
16231
|
-
# KMS key resource name which will be used to encrypt resources `
|
16232
|
-
# project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
|
16287
|
+
# Required. KMS key resource name which will be used to encrypt resources `
|
16288
|
+
# projects/`project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
|
16233
16289
|
# Corresponds to the JSON property `kmsKey`
|
16234
16290
|
# @return [String]
|
16235
16291
|
attr_accessor :kms_key
|
16236
16292
|
|
16237
|
-
# KMS key version resource name which will be used to encrypt
|
16238
|
-
# cryptoKeyVersions/`keyVersion``.
|
16293
|
+
# Output only. KMS key version resource name which will be used to encrypt
|
16294
|
+
# resources `/cryptoKeyVersions/`keyVersion``.
|
16239
16295
|
# Corresponds to the JSON property `kmsKeyVersion`
|
16240
16296
|
# @return [String]
|
16241
16297
|
attr_accessor :kms_key_version
|
@@ -21215,6 +21271,11 @@ module Google
|
|
21215
21271
|
# @return [String]
|
21216
21272
|
attr_accessor :data_use_terms_version
|
21217
21273
|
|
21274
|
+
# Parameters for Agentspace.
|
21275
|
+
# Corresponds to the JSON property `saasParams`
|
21276
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProvisionProjectRequestSaasParams]
|
21277
|
+
attr_accessor :saas_params
|
21278
|
+
|
21218
21279
|
def initialize(**args)
|
21219
21280
|
update!(**args)
|
21220
21281
|
end
|
@@ -21223,6 +21284,28 @@ module Google
|
|
21223
21284
|
def update!(**args)
|
21224
21285
|
@accept_data_use_terms = args[:accept_data_use_terms] if args.key?(:accept_data_use_terms)
|
21225
21286
|
@data_use_terms_version = args[:data_use_terms_version] if args.key?(:data_use_terms_version)
|
21287
|
+
@saas_params = args[:saas_params] if args.key?(:saas_params)
|
21288
|
+
end
|
21289
|
+
end
|
21290
|
+
|
21291
|
+
# Parameters for Agentspace.
|
21292
|
+
class GoogleCloudDiscoveryengineV1betaProvisionProjectRequestSaasParams
|
21293
|
+
include Google::Apis::Core::Hashable
|
21294
|
+
|
21295
|
+
# Optional. Set to `true` to specify that caller has read and would like to give
|
21296
|
+
# consent to the [Terms for Agent Space quality of service].
|
21297
|
+
# Corresponds to the JSON property `acceptBizQos`
|
21298
|
+
# @return [Boolean]
|
21299
|
+
attr_accessor :accept_biz_qos
|
21300
|
+
alias_method :accept_biz_qos?, :accept_biz_qos
|
21301
|
+
|
21302
|
+
def initialize(**args)
|
21303
|
+
update!(**args)
|
21304
|
+
end
|
21305
|
+
|
21306
|
+
# Update properties of this object
|
21307
|
+
def update!(**args)
|
21308
|
+
@accept_biz_qos = args[:accept_biz_qos] if args.key?(:accept_biz_qos)
|
21226
21309
|
end
|
21227
21310
|
end
|
21228
21311
|
|
@@ -21700,7 +21783,7 @@ module Google
|
|
21700
21783
|
# @return [String]
|
21701
21784
|
attr_accessor :query
|
21702
21785
|
|
21703
|
-
# Required. A list of records to rank.
|
21786
|
+
# Required. A list of records to rank.
|
21704
21787
|
# Corresponds to the JSON property `records`
|
21705
21788
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaRankingRecord>]
|
21706
21789
|
attr_accessor :records
|
@@ -25556,12 +25639,6 @@ module Google
|
|
25556
25639
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecImageGenerationSpec]
|
25557
25640
|
attr_accessor :image_generation_spec
|
25558
25641
|
|
25559
|
-
# Optional. The name of the tool registry to use. Format: `projects/`project`/
|
25560
|
-
# locations/`location`/toolRegistries/`tool_registry``
|
25561
|
-
# Corresponds to the JSON property `toolRegistry`
|
25562
|
-
# @return [String]
|
25563
|
-
attr_accessor :tool_registry
|
25564
|
-
|
25565
25642
|
# Specification of the Vertex AI Search tool.
|
25566
25643
|
# Corresponds to the JSON property `vertexAiSearchSpec`
|
25567
25644
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecVertexAiSearchSpec]
|
@@ -25584,7 +25661,6 @@ module Google
|
|
25584
25661
|
# Update properties of this object
|
25585
25662
|
def update!(**args)
|
25586
25663
|
@image_generation_spec = args[:image_generation_spec] if args.key?(:image_generation_spec)
|
25587
|
-
@tool_registry = args[:tool_registry] if args.key?(:tool_registry)
|
25588
25664
|
@vertex_ai_search_spec = args[:vertex_ai_search_spec] if args.key?(:vertex_ai_search_spec)
|
25589
25665
|
@video_generation_spec = args[:video_generation_spec] if args.key?(:video_generation_spec)
|
25590
25666
|
@web_grounding_spec = args[:web_grounding_spec] if args.key?(:web_grounding_spec)
|
@@ -25615,14 +25691,6 @@ module Google
|
|
25615
25691
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec>]
|
25616
25692
|
attr_accessor :data_store_specs
|
25617
25693
|
|
25618
|
-
# Optional. Deprecated. Please refrain from using this field. Whether the Vertex
|
25619
|
-
# AI Search tool is disabled. Default value is false, the tool is enabled by
|
25620
|
-
# default.
|
25621
|
-
# Corresponds to the JSON property `disabled`
|
25622
|
-
# @return [Boolean]
|
25623
|
-
attr_accessor :disabled
|
25624
|
-
alias_method :disabled?, :disabled
|
25625
|
-
|
25626
25694
|
# Optional. The filter syntax consists of an expression language for
|
25627
25695
|
# constructing a predicate from one or more fields of the documents being
|
25628
25696
|
# filtered. Filter expression is case-sensitive. If this field is unrecognizable,
|
@@ -25645,7 +25713,6 @@ module Google
|
|
25645
25713
|
# Update properties of this object
|
25646
25714
|
def update!(**args)
|
25647
25715
|
@data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
|
25648
|
-
@disabled = args[:disabled] if args.key?(:disabled)
|
25649
25716
|
@filter = args[:filter] if args.key?(:filter)
|
25650
25717
|
end
|
25651
25718
|
end
|
@@ -25667,20 +25734,12 @@ module Google
|
|
25667
25734
|
class GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecWebGroundingSpec
|
25668
25735
|
include Google::Apis::Core::Hashable
|
25669
25736
|
|
25670
|
-
# Optional. Deprecated. Please refrain from using this field. Whether the web
|
25671
|
-
# grounding tool is enabled.
|
25672
|
-
# Corresponds to the JSON property `enabled`
|
25673
|
-
# @return [Boolean]
|
25674
|
-
attr_accessor :enabled
|
25675
|
-
alias_method :enabled?, :enabled
|
25676
|
-
|
25677
25737
|
def initialize(**args)
|
25678
25738
|
update!(**args)
|
25679
25739
|
end
|
25680
25740
|
|
25681
25741
|
# Update properties of this object
|
25682
25742
|
def update!(**args)
|
25683
|
-
@enabled = args[:enabled] if args.key?(:enabled)
|
25684
25743
|
end
|
25685
25744
|
end
|
25686
25745
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1beta
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.75.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250724"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -148,6 +148,12 @@ module Google
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
149
149
|
end
|
150
150
|
|
151
|
+
class GoogleCloudDiscoveryengineV1Assistant
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
151
157
|
class GoogleCloudDiscoveryengineV1BatchCreateTargetSiteMetadata
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
159
|
|
@@ -2374,6 +2380,12 @@ module Google
|
|
2374
2380
|
include Google::Apis::Core::JsonObjectSupport
|
2375
2381
|
end
|
2376
2382
|
|
2383
|
+
class GoogleCloudDiscoveryengineV1betaAssistant
|
2384
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2385
|
+
|
2386
|
+
include Google::Apis::Core::JsonObjectSupport
|
2387
|
+
end
|
2388
|
+
|
2377
2389
|
class GoogleCloudDiscoveryengineV1betaAssistantContent
|
2378
2390
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2379
2391
|
|
@@ -3478,6 +3490,12 @@ module Google
|
|
3478
3490
|
include Google::Apis::Core::JsonObjectSupport
|
3479
3491
|
end
|
3480
3492
|
|
3493
|
+
class GoogleCloudDiscoveryengineV1betaProvisionProjectRequestSaasParams
|
3494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3495
|
+
|
3496
|
+
include Google::Apis::Core::JsonObjectSupport
|
3497
|
+
end
|
3498
|
+
|
3481
3499
|
class GoogleCloudDiscoveryengineV1betaPurgeCompletionSuggestionsRequest
|
3482
3500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3483
3501
|
|
@@ -4561,6 +4579,13 @@ module Google
|
|
4561
4579
|
end
|
4562
4580
|
end
|
4563
4581
|
|
4582
|
+
class GoogleCloudDiscoveryengineV1Assistant
|
4583
|
+
# @private
|
4584
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4585
|
+
property :name, as: 'name'
|
4586
|
+
end
|
4587
|
+
end
|
4588
|
+
|
4564
4589
|
class GoogleCloudDiscoveryengineV1BatchCreateTargetSiteMetadata
|
4565
4590
|
# @private
|
4566
4591
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8308,6 +8333,7 @@ module Google
|
|
8308
8333
|
# @private
|
8309
8334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8310
8335
|
collection :assist_skipped_reasons, as: 'assistSkippedReasons'
|
8336
|
+
property :name, as: 'name'
|
8311
8337
|
collection :replies, as: 'replies', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistAnswerReply, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistAnswerReply::Representation
|
8312
8338
|
|
8313
8339
|
property :state, as: 'state'
|
@@ -8330,6 +8356,13 @@ module Google
|
|
8330
8356
|
end
|
8331
8357
|
end
|
8332
8358
|
|
8359
|
+
class GoogleCloudDiscoveryengineV1betaAssistant
|
8360
|
+
# @private
|
8361
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8362
|
+
property :name, as: 'name'
|
8363
|
+
end
|
8364
|
+
end
|
8365
|
+
|
8333
8366
|
class GoogleCloudDiscoveryengineV1betaAssistantContent
|
8334
8367
|
# @private
|
8335
8368
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10149,6 +10182,15 @@ module Google
|
|
10149
10182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10150
10183
|
property :accept_data_use_terms, as: 'acceptDataUseTerms'
|
10151
10184
|
property :data_use_terms_version, as: 'dataUseTermsVersion'
|
10185
|
+
property :saas_params, as: 'saasParams', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProvisionProjectRequestSaasParams, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProvisionProjectRequestSaasParams::Representation
|
10186
|
+
|
10187
|
+
end
|
10188
|
+
end
|
10189
|
+
|
10190
|
+
class GoogleCloudDiscoveryengineV1betaProvisionProjectRequestSaasParams
|
10191
|
+
# @private
|
10192
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10193
|
+
property :accept_biz_qos, as: 'acceptBizQos'
|
10152
10194
|
end
|
10153
10195
|
end
|
10154
10196
|
|
@@ -11272,7 +11314,6 @@ module Google
|
|
11272
11314
|
class Representation < Google::Apis::Core::JsonRepresentation
|
11273
11315
|
property :image_generation_spec, as: 'imageGenerationSpec', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecImageGenerationSpec, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecImageGenerationSpec::Representation
|
11274
11316
|
|
11275
|
-
property :tool_registry, as: 'toolRegistry'
|
11276
11317
|
property :vertex_ai_search_spec, as: 'vertexAiSearchSpec', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecVertexAiSearchSpec, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecVertexAiSearchSpec::Representation
|
11277
11318
|
|
11278
11319
|
property :video_generation_spec, as: 'videoGenerationSpec', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecVideoGenerationSpec, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecVideoGenerationSpec::Representation
|
@@ -11293,7 +11334,6 @@ module Google
|
|
11293
11334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
11294
11335
|
collection :data_store_specs, as: 'dataStoreSpecs', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec::Representation
|
11295
11336
|
|
11296
|
-
property :disabled, as: 'disabled'
|
11297
11337
|
property :filter, as: 'filter'
|
11298
11338
|
end
|
11299
11339
|
end
|
@@ -11307,7 +11347,6 @@ module Google
|
|
11307
11347
|
class GoogleCloudDiscoveryengineV1betaStreamAssistRequestToolsSpecWebGroundingSpec
|
11308
11348
|
# @private
|
11309
11349
|
class Representation < Google::Apis::Core::JsonRepresentation
|
11310
|
-
property :enabled, as: 'enabled'
|
11311
11350
|
end
|
11312
11351
|
end
|
11313
11352
|
|
@@ -2647,9 +2647,12 @@ module Google
|
|
2647
2647
|
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
2648
2648
|
# location`/collections/`collection`/dataStores/`data_store_id``
|
2649
2649
|
# @param [String] filter
|
2650
|
-
# A
|
2651
|
-
# user_pseudo_id
|
2652
|
-
#
|
2650
|
+
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
2651
|
+
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
2652
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: "
|
2653
|
+
# user_pseudo_id = some_id" "display_name = \"some_name\"" "starred = true" "
|
2654
|
+
# is_pinned=true AND (NOT labels:hidden)" "create_time > \"1970-01-01T12:00:00Z\"
|
2655
|
+
# "
|
2653
2656
|
# @param [String] order_by
|
2654
2657
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
2655
2658
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
@@ -3945,6 +3948,76 @@ module Google
|
|
3945
3948
|
execute_or_queue_command(command, &block)
|
3946
3949
|
end
|
3947
3950
|
|
3951
|
+
# Gets an Assistant.
|
3952
|
+
# @param [String] name
|
3953
|
+
# Required. Resource name of Assistant. Format: `projects/`project`/locations/`
|
3954
|
+
# location`/collections/`collection`/engines/`engine`/assistants/`assistant``
|
3955
|
+
# @param [String] fields
|
3956
|
+
# Selector specifying which fields to include in a partial response.
|
3957
|
+
# @param [String] quota_user
|
3958
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3959
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3960
|
+
# @param [Google::Apis::RequestOptions] options
|
3961
|
+
# Request-specific options
|
3962
|
+
#
|
3963
|
+
# @yield [result, err] Result & error if block supplied
|
3964
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant] parsed result object
|
3965
|
+
# @yieldparam err [StandardError] error object if request failed
|
3966
|
+
#
|
3967
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant]
|
3968
|
+
#
|
3969
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3970
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3971
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3972
|
+
def get_project_location_collection_engine_assistant(name, fields: nil, quota_user: nil, options: nil, &block)
|
3973
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
3974
|
+
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant::Representation
|
3975
|
+
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant
|
3976
|
+
command.params['name'] = name unless name.nil?
|
3977
|
+
command.query['fields'] = fields unless fields.nil?
|
3978
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3979
|
+
execute_or_queue_command(command, &block)
|
3980
|
+
end
|
3981
|
+
|
3982
|
+
# Updates an Assistant
|
3983
|
+
# @param [String] name
|
3984
|
+
# Immutable. Resource name of the assistant. Format: `projects/`project`/
|
3985
|
+
# locations/`location`/collections/`collection`/engines/`engine`/assistants/`
|
3986
|
+
# assistant`` It must be a UTF-8 encoded string with a length limit of 1024
|
3987
|
+
# characters.
|
3988
|
+
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant] google_cloud_discoveryengine_v1beta_assistant_object
|
3989
|
+
# @param [String] update_mask
|
3990
|
+
# The list of fields to update.
|
3991
|
+
# @param [String] fields
|
3992
|
+
# Selector specifying which fields to include in a partial response.
|
3993
|
+
# @param [String] quota_user
|
3994
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3995
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3996
|
+
# @param [Google::Apis::RequestOptions] options
|
3997
|
+
# Request-specific options
|
3998
|
+
#
|
3999
|
+
# @yield [result, err] Result & error if block supplied
|
4000
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant] parsed result object
|
4001
|
+
# @yieldparam err [StandardError] error object if request failed
|
4002
|
+
#
|
4003
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant]
|
4004
|
+
#
|
4005
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4006
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4007
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4008
|
+
def patch_project_location_collection_engine_assistant(name, google_cloud_discoveryengine_v1beta_assistant_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4009
|
+
command = make_simple_command(:patch, 'v1beta/{+name}', options)
|
4010
|
+
command.request_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant::Representation
|
4011
|
+
command.request_object = google_cloud_discoveryengine_v1beta_assistant_object
|
4012
|
+
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant::Representation
|
4013
|
+
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant
|
4014
|
+
command.params['name'] = name unless name.nil?
|
4015
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
4016
|
+
command.query['fields'] = fields unless fields.nil?
|
4017
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4018
|
+
execute_or_queue_command(command, &block)
|
4019
|
+
end
|
4020
|
+
|
3948
4021
|
# Assists the user with a query in a streaming fashion.
|
3949
4022
|
# @param [String] name
|
3950
4023
|
# Required. The resource name of the Assistant. Format: `projects/`project`/
|
@@ -4969,9 +5042,12 @@ module Google
|
|
4969
5042
|
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
4970
5043
|
# location`/collections/`collection`/dataStores/`data_store_id``
|
4971
5044
|
# @param [String] filter
|
4972
|
-
# A
|
4973
|
-
# user_pseudo_id
|
4974
|
-
#
|
5045
|
+
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
5046
|
+
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
5047
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: "
|
5048
|
+
# user_pseudo_id = some_id" "display_name = \"some_name\"" "starred = true" "
|
5049
|
+
# is_pinned=true AND (NOT labels:hidden)" "create_time > \"1970-01-01T12:00:00Z\"
|
5050
|
+
# "
|
4975
5051
|
# @param [String] order_by
|
4976
5052
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
4977
5053
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
@@ -7182,9 +7258,12 @@ module Google
|
|
7182
7258
|
# Required. The data store resource name. Format: `projects/`project`/locations/`
|
7183
7259
|
# location`/collections/`collection`/dataStores/`data_store_id``
|
7184
7260
|
# @param [String] filter
|
7185
|
-
# A
|
7186
|
-
# user_pseudo_id
|
7187
|
-
#
|
7261
|
+
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
7262
|
+
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
7263
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: "
|
7264
|
+
# user_pseudo_id = some_id" "display_name = \"some_name\"" "starred = true" "
|
7265
|
+
# is_pinned=true AND (NOT labels:hidden)" "create_time > \"1970-01-01T12:00:00Z\"
|
7266
|
+
# "
|
7188
7267
|
# @param [String] order_by
|
7189
7268
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
7190
7269
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.75.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.75.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|