google-apis-discoveryengine_v1beta 0.78.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f89ff7bf2cb2922df54fc5f907ca6299bb2115e3543ab4f76888d74a0a5409e
4
- data.tar.gz: 6f173fd90957d44d5ea1963bc9b462c9b161b559523dcf9401d26684f7e0ddf8
3
+ metadata.gz: 5971de56d66aaa4b61b0ce90deeee97ee4c53a2c2b144848c1ee8d6bc65b537e
4
+ data.tar.gz: f5e1e52fa28caf4dae5b5c37cc7001ab5242dd4e3b17a7a2794442c4588c7198
5
5
  SHA512:
6
- metadata.gz: 548353e5ab46382d7c0f70bc0dabfe54c626c8fd37e1ac0f0b3092e5dab9f0283561bf6ce6622c1624a14d3a53e59c656ee9bf52a57a9f38e1ce67bcfbc9e8fc
7
- data.tar.gz: de236d988e02e87fd937a19ff98987818b3dcf60c6d49ef11b4b932623626af814d1699859c3c15d4664715984785a8e8385b3bdd1d82e42b89c3f9dd3a9465f
6
+ metadata.gz: 238cd49957908796ab6d99f8ea6ef3733ede3618aff6c4be8d03c31c618e2af340091a670f6fcb85a8fc148bbf4ec5d7f40953dd2b98ec3b419ce03478de7c8b
7
+ data.tar.gz: 5e0a72fc8bd7b6a64b43b892955d7afbe4ffe4b4f771eaa19aff63c3ac7401144425e3791afc7d5c1ac636c5083253d790e25966cbd533d571cacc13ec52808e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.78.0 (2025-08-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20250810
@@ -7508,6 +7508,14 @@ module Google
7508
7508
  # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
7509
7509
  attr_accessor :errors
7510
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
+
7511
7519
  # The refresh interval to sync the Access Control List information for the
7512
7520
  # documents ingested by this connector. If not set, the access control list will
7513
7521
  # be refreshed at the default interval of 30 minutes. The identity refresh
@@ -7687,6 +7695,7 @@ module Google
7687
7695
  @end_user_config = args[:end_user_config] if args.key?(:end_user_config)
7688
7696
  @entities = args[:entities] if args.key?(:entities)
7689
7697
  @errors = args[:errors] if args.key?(:errors)
7698
+ @hybrid_ingestion_disabled = args[:hybrid_ingestion_disabled] if args.key?(:hybrid_ingestion_disabled)
7690
7699
  @identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
7691
7700
  @identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
7692
7701
  @incremental_refresh_interval = args[:incremental_refresh_interval] if args.key?(:incremental_refresh_interval)
@@ -12196,6 +12205,8 @@ module Google
12196
12205
 
12197
12206
  # Required. Full resource name of DataStore, such as `projects/`project`/
12198
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.
12199
12210
  # Corresponds to the JSON property `dataStore`
12200
12211
  # @return [String]
12201
12212
  attr_accessor :data_store
@@ -24632,6 +24643,8 @@ module Google
24632
24643
 
24633
24644
  # Required. Full resource name of DataStore, such as `projects/`project`/
24634
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.
24635
24648
  # Corresponds to the JSON property `dataStore`
24636
24649
  # @return [String]
24637
24650
  attr_accessor :data_store
@@ -25693,6 +25706,11 @@ module Google
25693
25706
  # @return [Hash<String,Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDoubleList>]
25694
25707
  attr_accessor :model_scores
25695
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
+
25696
25714
  def initialize(**args)
25697
25715
  update!(**args)
25698
25716
  end
@@ -25703,6 +25721,99 @@ module Google
25703
25721
  @document = args[:document] if args.key?(:document)
25704
25722
  @id = args[:id] if args.key?(:id)
25705
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)
25706
25817
  end
25707
25818
  end
25708
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.78.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 = "20250810"
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
 
@@ -6510,6 +6522,7 @@ module Google
6510
6522
 
6511
6523
  collection :errors, as: 'errors', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
6512
6524
 
6525
+ property :hybrid_ingestion_disabled, as: 'hybridIngestionDisabled'
6513
6526
  property :identity_refresh_interval, as: 'identityRefreshInterval'
6514
6527
  property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
6515
6528
 
@@ -11466,6 +11479,32 @@ module Google
11466
11479
  property :id, as: 'id'
11467
11480
  hash :model_scores, as: 'modelScores', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDoubleList, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDoubleList::Representation
11468
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'
11469
11508
  end
11470
11509
  end
11471
11510
 
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.78.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.78.0
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: