google-apis-discoveryengine_v1alpha 0.65.0 → 0.66.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: 62377e7723e44d296037c7ed4e29ec8a1822890b303fb6e49da7f15383bd94a6
4
- data.tar.gz: a53993cf5e2bd3d910adcd819229d4a13fbb5da4d6ac4eec524d30eb01088638
3
+ metadata.gz: 6fb4e0320580acb8556612ce818a848a92e410cbc6ef97da7b7fe2d3e184e763
4
+ data.tar.gz: 942566a058b770e2ee7f2971df9efe94d681c066a8571bac2a147b8061f591a1
5
5
  SHA512:
6
- metadata.gz: 96901fcd0b3f70caaf3662530283fbbca2d6e74de9a6b366b74609d89d9de5b576ec192de2e081ba54c930c37b4e550017bde6f95a8dfbe0b98732e5dd0bcf9f
7
- data.tar.gz: 332965462875ea82e2527d0af338237ba979f9ecd50bcbe789ff092e023194adb7bb4a89d9721e3a6c5a92f1cc6fe36f0eb337efa7b716b853183b9f5ebb15f8
6
+ metadata.gz: f8b7b1ae9b1e880f8a781e15878595806fad604c230aef00924882b23a0a4a44a74b179592dc2e04b4239be3c110bfbf4ebc7ea53f61994bcb066db6b0b38d27
7
+ data.tar.gz: 2e21950bee9881fbb51634664a2e9e2e7bdd102bf5fd0e093e154b136a209fd688fc077bbd6288b040eeb6bf893647b8d90ad028995bea55daa1236414951dc7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.66.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250617
6
+
3
7
  ### v0.65.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250609
@@ -17638,7 +17638,10 @@ module Google
17638
17638
  # relevance and attractiveness of a search result from a user's perspective. A
17639
17639
  # higher pCTR suggests that the result is more likely to satisfy the user's
17640
17640
  # query and intent, making it a valuable signal for ranking. * `freshness_rank`:
17641
- # freshness adjustment as a rank * `base_rank`: the default rank of the result
17641
+ # freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
17642
+ # rank. Uses proprietary Google model to determine the keyword-based overlap
17643
+ # between the query and the document. * `base_rank`: the default rank of the
17644
+ # result
17642
17645
  # Corresponds to the JSON property `rankingExpression`
17643
17646
  # @return [String]
17644
17647
  attr_accessor :ranking_expression
@@ -20110,6 +20113,13 @@ module Google
20110
20113
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery]
20111
20114
  attr_accessor :query
20112
20115
 
20116
+ # Optional. Represents metadata related to the query config, for example LLM
20117
+ # model and version used, model parameters (temperature, grounding parameters,
20118
+ # etc.). The prefix "google." is reserved for Google-developed functionality.
20119
+ # Corresponds to the JSON property `queryConfig`
20120
+ # @return [Hash<String,String>]
20121
+ attr_accessor :query_config
20122
+
20113
20123
  def initialize(**args)
20114
20124
  update!(**args)
20115
20125
  end
@@ -20119,6 +20129,7 @@ module Google
20119
20129
  @answer = args[:answer] if args.key?(:answer)
20120
20130
  @detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
20121
20131
  @query = args[:query] if args.key?(:query)
20132
+ @query_config = args[:query_config] if args.key?(:query_config)
20122
20133
  end
20123
20134
  end
20124
20135
 
@@ -25753,7 +25764,10 @@ module Google
25753
25764
  # relevance and attractiveness of a search result from a user's perspective. A
25754
25765
  # higher pCTR suggests that the result is more likely to satisfy the user's
25755
25766
  # query and intent, making it a valuable signal for ranking. * `freshness_rank`:
25756
- # freshness adjustment as a rank * `base_rank`: the default rank of the result
25767
+ # freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
25768
+ # rank. Uses proprietary Google model to determine the keyword-based overlap
25769
+ # between the query and the document. * `base_rank`: the default rank of the
25770
+ # result
25757
25771
  # Corresponds to the JSON property `rankingExpression`
25758
25772
  # @return [String]
25759
25773
  attr_accessor :ranking_expression
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1alpha
18
18
  # Version of the google-apis-discoveryengine_v1alpha gem
19
- GEM_VERSION = "0.65.0"
19
+ GEM_VERSION = "0.66.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 = "20250609"
25
+ REVISION = "20250617"
26
26
  end
27
27
  end
28
28
  end
@@ -9760,6 +9760,7 @@ module Google
9760
9760
 
9761
9761
  property :query, as: 'query', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery::Representation
9762
9762
 
9763
+ hash :query_config, as: 'queryConfig'
9763
9764
  end
9764
9765
  end
9765
9766
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.65.0
4
+ version: 0.66.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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.65.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.66.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: