google-apis-discoveryengine_v1beta 0.77.0 → 0.79.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 +8 -0
- data/lib/google/apis/discoveryengine_v1beta/classes.rb +121 -2
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +40 -0
- data/lib/google/apis/discoveryengine_v1beta/service.rb +6 -6
- 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: 5971de56d66aaa4b61b0ce90deeee97ee4c53a2c2b144848c1ee8d6bc65b537e
|
4
|
+
data.tar.gz: f5e1e52fa28caf4dae5b5c37cc7001ab5242dd4e3b17a7a2794442c4588c7198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 238cd49957908796ab6d99f8ea6ef3733ede3618aff6c4be8d03c31c618e2af340091a670f6fcb85a8fc148bbf4ec5d7f40953dd2b98ec3b419ce03478de7c8b
|
7
|
+
data.tar.gz: 5e0a72fc8bd7b6a64b43b892955d7afbe4ffe4b4f771eaa19aff63c3ac7401144425e3791afc7d5c1ac636c5083253d790e25966cbd533d571cacc13ec52808e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1beta
|
2
2
|
|
3
|
+
### v0.79.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250816
|
6
|
+
|
7
|
+
### v0.78.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250810
|
10
|
+
|
3
11
|
### v0.77.0 (2025-08-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250803
|
@@ -5501,6 +5501,13 @@ module Google
|
|
5501
5501
|
# @return [String]
|
5502
5502
|
attr_accessor :service_name
|
5503
5503
|
|
5504
|
+
# Optional. Whether to use static secrets for the connector. If true, the
|
5505
|
+
# secrets provided in the action_params will be ignored.
|
5506
|
+
# Corresponds to the JSON property `useStaticSecrets`
|
5507
|
+
# @return [Boolean]
|
5508
|
+
attr_accessor :use_static_secrets
|
5509
|
+
alias_method :use_static_secrets?, :use_static_secrets
|
5510
|
+
|
5504
5511
|
def initialize(**args)
|
5505
5512
|
update!(**args)
|
5506
5513
|
end
|
@@ -5510,6 +5517,7 @@ module Google
|
|
5510
5517
|
@action_params = args[:action_params] if args.key?(:action_params)
|
5511
5518
|
@is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
|
5512
5519
|
@service_name = args[:service_name] if args.key?(:service_name)
|
5520
|
+
@use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
|
5513
5521
|
end
|
5514
5522
|
end
|
5515
5523
|
|
@@ -7500,6 +7508,14 @@ module Google
|
|
7500
7508
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
|
7501
7509
|
attr_accessor :errors
|
7502
7510
|
|
7511
|
+
# Optional. If the connector is a hybrid connector, determines whether ingestion
|
7512
|
+
# is enabled and appropriate resources are provisioned during connector creation.
|
7513
|
+
# If the connector is not a hybrid connector, this field is ignored.
|
7514
|
+
# Corresponds to the JSON property `hybridIngestionDisabled`
|
7515
|
+
# @return [Boolean]
|
7516
|
+
attr_accessor :hybrid_ingestion_disabled
|
7517
|
+
alias_method :hybrid_ingestion_disabled?, :hybrid_ingestion_disabled
|
7518
|
+
|
7503
7519
|
# The refresh interval to sync the Access Control List information for the
|
7504
7520
|
# documents ingested by this connector. If not set, the access control list will
|
7505
7521
|
# be refreshed at the default interval of 30 minutes. The identity refresh
|
@@ -7679,6 +7695,7 @@ module Google
|
|
7679
7695
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
7680
7696
|
@entities = args[:entities] if args.key?(:entities)
|
7681
7697
|
@errors = args[:errors] if args.key?(:errors)
|
7698
|
+
@hybrid_ingestion_disabled = args[:hybrid_ingestion_disabled] if args.key?(:hybrid_ingestion_disabled)
|
7682
7699
|
@identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
|
7683
7700
|
@identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
|
7684
7701
|
@incremental_refresh_interval = args[:incremental_refresh_interval] if args.key?(:incremental_refresh_interval)
|
@@ -10286,8 +10303,8 @@ module Google
|
|
10286
10303
|
|
10287
10304
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
10288
10305
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
10289
|
-
# create_time` * `session_name` * `is_pinned` Example: *
|
10290
|
-
# create_time
|
10306
|
+
# create_time` * `session_name` * `is_pinned` Example: * `update_time desc` * `
|
10307
|
+
# create_time` * `is_pinned desc,update_time desc`: list sessions by is_pinned
|
10291
10308
|
# first, then by update_time.
|
10292
10309
|
# Corresponds to the JSON property `orderBy`
|
10293
10310
|
# @return [String]
|
@@ -12188,6 +12205,8 @@ module Google
|
|
12188
12205
|
|
12189
12206
|
# Required. Full resource name of DataStore, such as `projects/`project`/
|
12190
12207
|
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
|
12208
|
+
# The path must include the project number, project id is not supported for this
|
12209
|
+
# field.
|
12191
12210
|
# Corresponds to the JSON property `dataStore`
|
12192
12211
|
# @return [String]
|
12193
12212
|
attr_accessor :data_store
|
@@ -24624,6 +24643,8 @@ module Google
|
|
24624
24643
|
|
24625
24644
|
# Required. Full resource name of DataStore, such as `projects/`project`/
|
24626
24645
|
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
|
24646
|
+
# The path must include the project number, project id is not supported for this
|
24647
|
+
# field.
|
24627
24648
|
# Corresponds to the JSON property `dataStore`
|
24628
24649
|
# @return [String]
|
24629
24650
|
attr_accessor :data_store
|
@@ -25685,6 +25706,11 @@ module Google
|
|
25685
25706
|
# @return [Hash<String,Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDoubleList>]
|
25686
25707
|
attr_accessor :model_scores
|
25687
25708
|
|
25709
|
+
# A set of ranking signals.
|
25710
|
+
# Corresponds to the JSON property `rankSignals`
|
25711
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignals]
|
25712
|
+
attr_accessor :rank_signals
|
25713
|
+
|
25688
25714
|
def initialize(**args)
|
25689
25715
|
update!(**args)
|
25690
25716
|
end
|
@@ -25695,6 +25721,99 @@ module Google
|
|
25695
25721
|
@document = args[:document] if args.key?(:document)
|
25696
25722
|
@id = args[:id] if args.key?(:id)
|
25697
25723
|
@model_scores = args[:model_scores] if args.key?(:model_scores)
|
25724
|
+
@rank_signals = args[:rank_signals] if args.key?(:rank_signals)
|
25725
|
+
end
|
25726
|
+
end
|
25727
|
+
|
25728
|
+
# A set of ranking signals.
|
25729
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignals
|
25730
|
+
include Google::Apis::Core::Hashable
|
25731
|
+
|
25732
|
+
# Optional. Combined custom boosts for a doc.
|
25733
|
+
# Corresponds to the JSON property `boostingFactor`
|
25734
|
+
# @return [Float]
|
25735
|
+
attr_accessor :boosting_factor
|
25736
|
+
|
25737
|
+
# Optional. A list of custom clearbox signals.
|
25738
|
+
# Corresponds to the JSON property `customSignals`
|
25739
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignalsCustomSignal>]
|
25740
|
+
attr_accessor :custom_signals
|
25741
|
+
|
25742
|
+
# Optional. The default rank of the result.
|
25743
|
+
# Corresponds to the JSON property `defaultRank`
|
25744
|
+
# @return [Float]
|
25745
|
+
attr_accessor :default_rank
|
25746
|
+
|
25747
|
+
# Optional. Age of the document in hours.
|
25748
|
+
# Corresponds to the JSON property `documentAge`
|
25749
|
+
# @return [Float]
|
25750
|
+
attr_accessor :document_age
|
25751
|
+
|
25752
|
+
# Optional. Keyword matching adjustment.
|
25753
|
+
# Corresponds to the JSON property `keywordSimilarityScore`
|
25754
|
+
# @return [Float]
|
25755
|
+
attr_accessor :keyword_similarity_score
|
25756
|
+
|
25757
|
+
# Optional. Predicted conversion rate adjustment as a rank.
|
25758
|
+
# Corresponds to the JSON property `pctrRank`
|
25759
|
+
# @return [Float]
|
25760
|
+
attr_accessor :pctr_rank
|
25761
|
+
|
25762
|
+
# Optional. Semantic relevance adjustment.
|
25763
|
+
# Corresponds to the JSON property `relevanceScore`
|
25764
|
+
# @return [Float]
|
25765
|
+
attr_accessor :relevance_score
|
25766
|
+
|
25767
|
+
# Optional. Semantic similarity adjustment.
|
25768
|
+
# Corresponds to the JSON property `semanticSimilarityScore`
|
25769
|
+
# @return [Float]
|
25770
|
+
attr_accessor :semantic_similarity_score
|
25771
|
+
|
25772
|
+
# Optional. Topicality adjustment as a rank.
|
25773
|
+
# Corresponds to the JSON property `topicalityRank`
|
25774
|
+
# @return [Float]
|
25775
|
+
attr_accessor :topicality_rank
|
25776
|
+
|
25777
|
+
def initialize(**args)
|
25778
|
+
update!(**args)
|
25779
|
+
end
|
25780
|
+
|
25781
|
+
# Update properties of this object
|
25782
|
+
def update!(**args)
|
25783
|
+
@boosting_factor = args[:boosting_factor] if args.key?(:boosting_factor)
|
25784
|
+
@custom_signals = args[:custom_signals] if args.key?(:custom_signals)
|
25785
|
+
@default_rank = args[:default_rank] if args.key?(:default_rank)
|
25786
|
+
@document_age = args[:document_age] if args.key?(:document_age)
|
25787
|
+
@keyword_similarity_score = args[:keyword_similarity_score] if args.key?(:keyword_similarity_score)
|
25788
|
+
@pctr_rank = args[:pctr_rank] if args.key?(:pctr_rank)
|
25789
|
+
@relevance_score = args[:relevance_score] if args.key?(:relevance_score)
|
25790
|
+
@semantic_similarity_score = args[:semantic_similarity_score] if args.key?(:semantic_similarity_score)
|
25791
|
+
@topicality_rank = args[:topicality_rank] if args.key?(:topicality_rank)
|
25792
|
+
end
|
25793
|
+
end
|
25794
|
+
|
25795
|
+
# Custom clearbox signal represented by name and value pair.
|
25796
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignalsCustomSignal
|
25797
|
+
include Google::Apis::Core::Hashable
|
25798
|
+
|
25799
|
+
# Optional. Name of the signal.
|
25800
|
+
# Corresponds to the JSON property `name`
|
25801
|
+
# @return [String]
|
25802
|
+
attr_accessor :name
|
25803
|
+
|
25804
|
+
# Optional. Float value representing the ranking signal (e.g. 1.25 for BM25).
|
25805
|
+
# Corresponds to the JSON property `value`
|
25806
|
+
# @return [Float]
|
25807
|
+
attr_accessor :value
|
25808
|
+
|
25809
|
+
def initialize(**args)
|
25810
|
+
update!(**args)
|
25811
|
+
end
|
25812
|
+
|
25813
|
+
# Update properties of this object
|
25814
|
+
def update!(**args)
|
25815
|
+
@name = args[:name] if args.key?(:name)
|
25816
|
+
@value = args[:value] if args.key?(:value)
|
25698
25817
|
end
|
25699
25818
|
end
|
25700
25819
|
|
@@ -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.79.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 = "20250816"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4138,6 +4138,18 @@ module Google
|
|
4138
4138
|
include Google::Apis::Core::JsonObjectSupport
|
4139
4139
|
end
|
4140
4140
|
|
4141
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignals
|
4142
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4143
|
+
|
4144
|
+
include Google::Apis::Core::JsonObjectSupport
|
4145
|
+
end
|
4146
|
+
|
4147
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignalsCustomSignal
|
4148
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4149
|
+
|
4150
|
+
include Google::Apis::Core::JsonObjectSupport
|
4151
|
+
end
|
4152
|
+
|
4141
4153
|
class GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo
|
4142
4154
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4143
4155
|
|
@@ -5942,6 +5954,7 @@ module Google
|
|
5942
5954
|
hash :action_params, as: 'actionParams'
|
5943
5955
|
property :is_action_configured, as: 'isActionConfigured'
|
5944
5956
|
property :service_name, as: 'serviceName'
|
5957
|
+
property :use_static_secrets, as: 'useStaticSecrets'
|
5945
5958
|
end
|
5946
5959
|
end
|
5947
5960
|
|
@@ -6509,6 +6522,7 @@ module Google
|
|
6509
6522
|
|
6510
6523
|
collection :errors, as: 'errors', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
|
6511
6524
|
|
6525
|
+
property :hybrid_ingestion_disabled, as: 'hybridIngestionDisabled'
|
6512
6526
|
property :identity_refresh_interval, as: 'identityRefreshInterval'
|
6513
6527
|
property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
|
6514
6528
|
|
@@ -11465,6 +11479,32 @@ module Google
|
|
11465
11479
|
property :id, as: 'id'
|
11466
11480
|
hash :model_scores, as: 'modelScores', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDoubleList, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDoubleList::Representation
|
11467
11481
|
|
11482
|
+
property :rank_signals, as: 'rankSignals', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignals, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignals::Representation
|
11483
|
+
|
11484
|
+
end
|
11485
|
+
end
|
11486
|
+
|
11487
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignals
|
11488
|
+
# @private
|
11489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11490
|
+
property :boosting_factor, as: 'boostingFactor'
|
11491
|
+
collection :custom_signals, as: 'customSignals', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignalsCustomSignal, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignalsCustomSignal::Representation
|
11492
|
+
|
11493
|
+
property :default_rank, as: 'defaultRank'
|
11494
|
+
property :document_age, as: 'documentAge'
|
11495
|
+
property :keyword_similarity_score, as: 'keywordSimilarityScore'
|
11496
|
+
property :pctr_rank, as: 'pctrRank'
|
11497
|
+
property :relevance_score, as: 'relevanceScore'
|
11498
|
+
property :semantic_similarity_score, as: 'semanticSimilarityScore'
|
11499
|
+
property :topicality_rank, as: 'topicalityRank'
|
11500
|
+
end
|
11501
|
+
end
|
11502
|
+
|
11503
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseSearchResultRankSignalsCustomSignal
|
11504
|
+
# @private
|
11505
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11506
|
+
property :name, as: 'name'
|
11507
|
+
property :value, as: 'value'
|
11468
11508
|
end
|
11469
11509
|
end
|
11470
11510
|
|
@@ -2701,8 +2701,8 @@ module Google
|
|
2701
2701
|
# @param [String] order_by
|
2702
2702
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
2703
2703
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
2704
|
-
# create_time` * `session_name` * `is_pinned` Example: *
|
2705
|
-
# create_time
|
2704
|
+
# create_time` * `session_name` * `is_pinned` Example: * `update_time desc` * `
|
2705
|
+
# create_time` * `is_pinned desc,update_time desc`: list sessions by is_pinned
|
2706
2706
|
# first, then by update_time.
|
2707
2707
|
# @param [Fixnum] page_size
|
2708
2708
|
# Maximum number of results to return. If unspecified, defaults to 50. Max
|
@@ -5096,8 +5096,8 @@ module Google
|
|
5096
5096
|
# @param [String] order_by
|
5097
5097
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
5098
5098
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
5099
|
-
# create_time` * `session_name` * `is_pinned` Example: *
|
5100
|
-
# create_time
|
5099
|
+
# create_time` * `session_name` * `is_pinned` Example: * `update_time desc` * `
|
5100
|
+
# create_time` * `is_pinned desc,update_time desc`: list sessions by is_pinned
|
5101
5101
|
# first, then by update_time.
|
5102
5102
|
# @param [Fixnum] page_size
|
5103
5103
|
# Maximum number of results to return. If unspecified, defaults to 50. Max
|
@@ -7312,8 +7312,8 @@ module Google
|
|
7312
7312
|
# @param [String] order_by
|
7313
7313
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
7314
7314
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
7315
|
-
# create_time` * `session_name` * `is_pinned` Example: *
|
7316
|
-
# create_time
|
7315
|
+
# create_time` * `session_name` * `is_pinned` Example: * `update_time desc` * `
|
7316
|
+
# create_time` * `is_pinned desc,update_time desc`: list sessions by is_pinned
|
7317
7317
|
# first, then by update_time.
|
7318
7318
|
# @param [Fixnum] page_size
|
7319
7319
|
# Maximum number of results to return. If unspecified, defaults to 50. Max
|
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.79.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.79.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:
|