google-apis-discoveryengine_v1 0.29.0 → 0.30.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f24697c704f9865670640b6bd825889910ad451679e58832d600a6a7bf74c71c
|
4
|
+
data.tar.gz: 129d534eef45d913e99f9326d1b7eeaac48333a99d657a77619415ee4abc911c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 832c9150fb89208990b93207cbc422e9e0dceeaf95baddf99ce968c83667721ef9f9f18b17849452c361f3a43e3658382e2f495c4e156da8f5fbe3f09063f66c
|
7
|
+
data.tar.gz: 3b0dc1b74c39fcbfb23c6a9e024f8f0c9b16a0e730974a510ec7b6d3a5877d910db1985108d99b92a496f37a7439ca88ec92ee1ffe07b6e1aa94ddd8ba4201e4
|
data/CHANGELOG.md
CHANGED
@@ -1406,6 +1406,12 @@ module Google
|
|
1406
1406
|
class GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpec
|
1407
1407
|
include Google::Apis::Core::Hashable
|
1408
1408
|
|
1409
|
+
# Optional. Whether to disable spell correction. The default value is `false`.
|
1410
|
+
# Corresponds to the JSON property `disableSpellCorrection`
|
1411
|
+
# @return [Boolean]
|
1412
|
+
attr_accessor :disable_spell_correction
|
1413
|
+
alias_method :disable_spell_correction?, :disable_spell_correction
|
1414
|
+
|
1409
1415
|
# Query classification specification.
|
1410
1416
|
# Corresponds to the JSON property `queryClassificationSpec`
|
1411
1417
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryClassificationSpec]
|
@@ -1422,6 +1428,7 @@ module Google
|
|
1422
1428
|
|
1423
1429
|
# Update properties of this object
|
1424
1430
|
def update!(**args)
|
1431
|
+
@disable_spell_correction = args[:disable_spell_correction] if args.key?(:disable_spell_correction)
|
1425
1432
|
@query_classification_spec = args[:query_classification_spec] if args.key?(:query_classification_spec)
|
1426
1433
|
@query_rephraser_spec = args[:query_rephraser_spec] if args.key?(:query_rephraser_spec)
|
1427
1434
|
end
|
@@ -8093,7 +8100,8 @@ module Google
|
|
8093
8100
|
# @return [String]
|
8094
8101
|
attr_accessor :title
|
8095
8102
|
|
8096
|
-
#
|
8103
|
+
# Optional. The URL for the page the user wants to promote. Must be set for site
|
8104
|
+
# search. For other verticals, this is optional.
|
8097
8105
|
# Corresponds to the JSON property `uri`
|
8098
8106
|
# @return [String]
|
8099
8107
|
attr_accessor :uri
|
@@ -8154,6 +8162,11 @@ module Google
|
|
8154
8162
|
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec>]
|
8155
8163
|
attr_accessor :data_store_specs
|
8156
8164
|
|
8165
|
+
# Specifies features for display, like match highlighting.
|
8166
|
+
# Corresponds to the JSON property `displaySpec`
|
8167
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec]
|
8168
|
+
attr_accessor :display_spec
|
8169
|
+
|
8157
8170
|
# Facet specifications for faceted search. If empty, no facets are returned. A
|
8158
8171
|
# maximum of 100 values are allowed. Otherwise, an `INVALID_ARGUMENT` error is
|
8159
8172
|
# returned.
|
@@ -8354,6 +8367,7 @@ module Google
|
|
8354
8367
|
@canonical_filter = args[:canonical_filter] if args.key?(:canonical_filter)
|
8355
8368
|
@content_search_spec = args[:content_search_spec] if args.key?(:content_search_spec)
|
8356
8369
|
@data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
|
8370
|
+
@display_spec = args[:display_spec] if args.key?(:display_spec)
|
8357
8371
|
@facet_specs = args[:facet_specs] if args.key?(:facet_specs)
|
8358
8372
|
@filter = args[:filter] if args.key?(:filter)
|
8359
8373
|
@image_query = args[:image_query] if args.key?(:image_query)
|
@@ -8903,6 +8917,25 @@ module Google
|
|
8903
8917
|
end
|
8904
8918
|
end
|
8905
8919
|
|
8920
|
+
# Specifies features for display, like match highlighting.
|
8921
|
+
class GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec
|
8922
|
+
include Google::Apis::Core::Hashable
|
8923
|
+
|
8924
|
+
# The condition under which match highlighting should occur.
|
8925
|
+
# Corresponds to the JSON property `matchHighlightingCondition`
|
8926
|
+
# @return [String]
|
8927
|
+
attr_accessor :match_highlighting_condition
|
8928
|
+
|
8929
|
+
def initialize(**args)
|
8930
|
+
update!(**args)
|
8931
|
+
end
|
8932
|
+
|
8933
|
+
# Update properties of this object
|
8934
|
+
def update!(**args)
|
8935
|
+
@match_highlighting_condition = args[:match_highlighting_condition] if args.key?(:match_highlighting_condition)
|
8936
|
+
end
|
8937
|
+
end
|
8938
|
+
|
8906
8939
|
# A facet specification to perform faceted search.
|
8907
8940
|
class GoogleCloudDiscoveryengineV1SearchRequestFacetSpec
|
8908
8941
|
include Google::Apis::Core::Hashable
|
@@ -11066,6 +11099,56 @@ module Google
|
|
11066
11099
|
end
|
11067
11100
|
end
|
11068
11101
|
|
11102
|
+
# The connector level alert config.
|
11103
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig
|
11104
|
+
include Google::Apis::Core::Hashable
|
11105
|
+
|
11106
|
+
# Optional. The enrollment states of each alert.
|
11107
|
+
# Corresponds to the JSON property `alertEnrollments`
|
11108
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment>]
|
11109
|
+
attr_accessor :alert_enrollments
|
11110
|
+
|
11111
|
+
# Immutable. The fully qualified resource name of the AlertPolicy.
|
11112
|
+
# Corresponds to the JSON property `alertPolicyName`
|
11113
|
+
# @return [String]
|
11114
|
+
attr_accessor :alert_policy_name
|
11115
|
+
|
11116
|
+
def initialize(**args)
|
11117
|
+
update!(**args)
|
11118
|
+
end
|
11119
|
+
|
11120
|
+
# Update properties of this object
|
11121
|
+
def update!(**args)
|
11122
|
+
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
11123
|
+
@alert_policy_name = args[:alert_policy_name] if args.key?(:alert_policy_name)
|
11124
|
+
end
|
11125
|
+
end
|
11126
|
+
|
11127
|
+
# The alert enrollment status.
|
11128
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment
|
11129
|
+
include Google::Apis::Core::Hashable
|
11130
|
+
|
11131
|
+
# Immutable. The id of an alert.
|
11132
|
+
# Corresponds to the JSON property `alertId`
|
11133
|
+
# @return [String]
|
11134
|
+
attr_accessor :alert_id
|
11135
|
+
|
11136
|
+
# Required. The enrollment status of a customer.
|
11137
|
+
# Corresponds to the JSON property `enrollState`
|
11138
|
+
# @return [String]
|
11139
|
+
attr_accessor :enroll_state
|
11140
|
+
|
11141
|
+
def initialize(**args)
|
11142
|
+
update!(**args)
|
11143
|
+
end
|
11144
|
+
|
11145
|
+
# Update properties of this object
|
11146
|
+
def update!(**args)
|
11147
|
+
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
11148
|
+
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
11149
|
+
end
|
11150
|
+
end
|
11151
|
+
|
11069
11152
|
# Defines an answer.
|
11070
11153
|
class GoogleCloudDiscoveryengineV1alphaAnswer
|
11071
11154
|
include Google::Apis::Core::Hashable
|
@@ -12741,6 +12824,11 @@ module Google
|
|
12741
12824
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaActionConfig]
|
12742
12825
|
attr_accessor :action_config
|
12743
12826
|
|
12827
|
+
# Optional. The connector level alert config.
|
12828
|
+
# Corresponds to the JSON property `alertPolicyConfigs`
|
12829
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig>]
|
12830
|
+
attr_accessor :alert_policy_configs
|
12831
|
+
|
12744
12832
|
# Indicates whether the connector is disabled for auto run. It can be used to
|
12745
12833
|
# pause periodical and real time sync.
|
12746
12834
|
# Corresponds to the JSON property `autoRunDisabled`
|
@@ -12930,6 +13018,7 @@ module Google
|
|
12930
13018
|
# Update properties of this object
|
12931
13019
|
def update!(**args)
|
12932
13020
|
@action_config = args[:action_config] if args.key?(:action_config)
|
13021
|
+
@alert_policy_configs = args[:alert_policy_configs] if args.key?(:alert_policy_configs)
|
12933
13022
|
@auto_run_disabled = args[:auto_run_disabled] if args.key?(:auto_run_disabled)
|
12934
13023
|
@bap_config = args[:bap_config] if args.key?(:bap_config)
|
12935
13024
|
@blocking_reasons = args[:blocking_reasons] if args.key?(:blocking_reasons)
|
@@ -16210,7 +16299,8 @@ module Google
|
|
16210
16299
|
# @return [String]
|
16211
16300
|
attr_accessor :title
|
16212
16301
|
|
16213
|
-
#
|
16302
|
+
# Optional. The URL for the page the user wants to promote. Must be set for site
|
16303
|
+
# search. For other verticals, this is optional.
|
16214
16304
|
# Corresponds to the JSON property `uri`
|
16215
16305
|
# @return [String]
|
16216
16306
|
attr_accessor :uri
|
@@ -21095,7 +21185,8 @@ module Google
|
|
21095
21185
|
# @return [String]
|
21096
21186
|
attr_accessor :title
|
21097
21187
|
|
21098
|
-
#
|
21188
|
+
# Optional. The URL for the page the user wants to promote. Must be set for site
|
21189
|
+
# search. For other verticals, this is optional.
|
21099
21190
|
# Corresponds to the JSON property `uri`
|
21100
21191
|
# @return [String]
|
21101
21192
|
attr_accessor :uri
|
@@ -21156,6 +21247,11 @@ module Google
|
|
21156
21247
|
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec>]
|
21157
21248
|
attr_accessor :data_store_specs
|
21158
21249
|
|
21250
|
+
# Specifies features for display, like match highlighting.
|
21251
|
+
# Corresponds to the JSON property `displaySpec`
|
21252
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec]
|
21253
|
+
attr_accessor :display_spec
|
21254
|
+
|
21159
21255
|
# The specification that uses customized query embedding vector to do semantic
|
21160
21256
|
# document retrieval.
|
21161
21257
|
# Corresponds to the JSON property `embeddingSpec`
|
@@ -21427,6 +21523,7 @@ module Google
|
|
21427
21523
|
@canonical_filter = args[:canonical_filter] if args.key?(:canonical_filter)
|
21428
21524
|
@content_search_spec = args[:content_search_spec] if args.key?(:content_search_spec)
|
21429
21525
|
@data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
|
21526
|
+
@display_spec = args[:display_spec] if args.key?(:display_spec)
|
21430
21527
|
@embedding_spec = args[:embedding_spec] if args.key?(:embedding_spec)
|
21431
21528
|
@facet_specs = args[:facet_specs] if args.key?(:facet_specs)
|
21432
21529
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -21983,6 +22080,25 @@ module Google
|
|
21983
22080
|
end
|
21984
22081
|
end
|
21985
22082
|
|
22083
|
+
# Specifies features for display, like match highlighting.
|
22084
|
+
class GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec
|
22085
|
+
include Google::Apis::Core::Hashable
|
22086
|
+
|
22087
|
+
# The condition under which match highlighting should occur.
|
22088
|
+
# Corresponds to the JSON property `matchHighlightingCondition`
|
22089
|
+
# @return [String]
|
22090
|
+
attr_accessor :match_highlighting_condition
|
22091
|
+
|
22092
|
+
def initialize(**args)
|
22093
|
+
update!(**args)
|
22094
|
+
end
|
22095
|
+
|
22096
|
+
# Update properties of this object
|
22097
|
+
def update!(**args)
|
22098
|
+
@match_highlighting_condition = args[:match_highlighting_condition] if args.key?(:match_highlighting_condition)
|
22099
|
+
end
|
22100
|
+
end
|
22101
|
+
|
21986
22102
|
# The specification that uses customized query embedding vector to do semantic
|
21987
22103
|
# document retrieval.
|
21988
22104
|
class GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1
|
18
18
|
# Version of the google-apis-discoveryengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250312"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1474,6 +1474,12 @@ module Google
|
|
1474
1474
|
include Google::Apis::Core::JsonObjectSupport
|
1475
1475
|
end
|
1476
1476
|
|
1477
|
+
class GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec
|
1478
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1479
|
+
|
1480
|
+
include Google::Apis::Core::JsonObjectSupport
|
1481
|
+
end
|
1482
|
+
|
1477
1483
|
class GoogleCloudDiscoveryengineV1SearchRequestFacetSpec
|
1478
1484
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1479
1485
|
|
@@ -1780,6 +1786,18 @@ module Google
|
|
1780
1786
|
include Google::Apis::Core::JsonObjectSupport
|
1781
1787
|
end
|
1782
1788
|
|
1789
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig
|
1790
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1791
|
+
|
1792
|
+
include Google::Apis::Core::JsonObjectSupport
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment
|
1796
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1797
|
+
|
1798
|
+
include Google::Apis::Core::JsonObjectSupport
|
1799
|
+
end
|
1800
|
+
|
1783
1801
|
class GoogleCloudDiscoveryengineV1alphaAnswer
|
1784
1802
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1785
1803
|
|
@@ -3496,6 +3514,12 @@ module Google
|
|
3496
3514
|
include Google::Apis::Core::JsonObjectSupport
|
3497
3515
|
end
|
3498
3516
|
|
3517
|
+
class GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec
|
3518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3519
|
+
|
3520
|
+
include Google::Apis::Core::JsonObjectSupport
|
3521
|
+
end
|
3522
|
+
|
3499
3523
|
class GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec
|
3500
3524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3501
3525
|
|
@@ -4087,6 +4111,7 @@ module Google
|
|
4087
4111
|
class GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpec
|
4088
4112
|
# @private
|
4089
4113
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4114
|
+
property :disable_spell_correction, as: 'disableSpellCorrection'
|
4090
4115
|
property :query_classification_spec, as: 'queryClassificationSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryClassificationSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryClassificationSpec::Representation
|
4091
4116
|
|
4092
4117
|
property :query_rephraser_spec, as: 'queryRephraserSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec::Representation
|
@@ -5999,6 +6024,8 @@ module Google
|
|
5999
6024
|
|
6000
6025
|
collection :data_store_specs, as: 'dataStoreSpecs', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec::Representation
|
6001
6026
|
|
6027
|
+
property :display_spec, as: 'displaySpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec::Representation
|
6028
|
+
|
6002
6029
|
collection :facet_specs, as: 'facetSpecs', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestFacetSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestFacetSpec::Representation
|
6003
6030
|
|
6004
6031
|
property :filter, as: 'filter'
|
@@ -6154,6 +6181,13 @@ module Google
|
|
6154
6181
|
end
|
6155
6182
|
end
|
6156
6183
|
|
6184
|
+
class GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec
|
6185
|
+
# @private
|
6186
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6187
|
+
property :match_highlighting_condition, as: 'matchHighlightingCondition'
|
6188
|
+
end
|
6189
|
+
end
|
6190
|
+
|
6157
6191
|
class GoogleCloudDiscoveryengineV1SearchRequestFacetSpec
|
6158
6192
|
# @private
|
6159
6193
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6694,6 +6728,23 @@ module Google
|
|
6694
6728
|
end
|
6695
6729
|
end
|
6696
6730
|
|
6731
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig
|
6732
|
+
# @private
|
6733
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6734
|
+
collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment::Representation
|
6735
|
+
|
6736
|
+
property :alert_policy_name, as: 'alertPolicyName'
|
6737
|
+
end
|
6738
|
+
end
|
6739
|
+
|
6740
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment
|
6741
|
+
# @private
|
6742
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6743
|
+
property :alert_id, as: 'alertId'
|
6744
|
+
property :enroll_state, as: 'enrollState'
|
6745
|
+
end
|
6746
|
+
end
|
6747
|
+
|
6697
6748
|
class GoogleCloudDiscoveryengineV1alphaAnswer
|
6698
6749
|
# @private
|
6699
6750
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7169,6 +7220,8 @@ module Google
|
|
7169
7220
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7170
7221
|
property :action_config, as: 'actionConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaActionConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaActionConfig::Representation
|
7171
7222
|
|
7223
|
+
collection :alert_policy_configs, as: 'alertPolicyConfigs', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig::Representation
|
7224
|
+
|
7172
7225
|
property :auto_run_disabled, as: 'autoRunDisabled'
|
7173
7226
|
property :bap_config, as: 'bapConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaBapConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaBapConfig::Representation
|
7174
7227
|
|
@@ -9442,6 +9495,8 @@ module Google
|
|
9442
9495
|
|
9443
9496
|
collection :data_store_specs, as: 'dataStoreSpecs', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec::Representation
|
9444
9497
|
|
9498
|
+
property :display_spec, as: 'displaySpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec::Representation
|
9499
|
+
|
9445
9500
|
property :embedding_spec, as: 'embeddingSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec::Representation
|
9446
9501
|
|
9447
9502
|
collection :facet_specs, as: 'facetSpecs', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestFacetSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestFacetSpec::Representation
|
@@ -9607,6 +9662,13 @@ module Google
|
|
9607
9662
|
end
|
9608
9663
|
end
|
9609
9664
|
|
9665
|
+
class GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec
|
9666
|
+
# @private
|
9667
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9668
|
+
property :match_highlighting_condition, as: 'matchHighlightingCondition'
|
9669
|
+
end
|
9670
|
+
end
|
9671
|
+
|
9610
9672
|
class GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec
|
9611
9673
|
# @private
|
9612
9674
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.30.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|