google-apis-discoveryengine_v1alpha 0.22.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c13ca72d119cad12e2e1445c5e2d48878a34269026159691976b315eaed78dd
4
- data.tar.gz: f953015892fb521e7f2ab068397fb92d637ded26976d1728d89d634db4daef3a
3
+ metadata.gz: 9ae48a74fb91e4016f1f14a099b5ab249637a087bb27d5d2cf8ac24bcf7365e0
4
+ data.tar.gz: 2b44374f6a13ff1b3535ff54ab6bef4efb510105354b98bd68f0f89efbcc58c9
5
5
  SHA512:
6
- metadata.gz: d53093596560775764fcf708f9f11c564dd25fe44c46acce53175654e90eb5824bf38f4b9d60eae9c377e47d364ae5f034878125490bee25a20b1d162bae75c9
7
- data.tar.gz: aa294cdfd80c35f7ec4407485d5a1bfd31fc84f2e4631e4c557cc3f1a40082ec07bfbd589f7e4445299330cb7efdb908dc5594d6499d70c6f93c598f9788b735
6
+ metadata.gz: f6382e55ea8efc6c7c6e061042c23a6aad15e8fbb9bd818788c64fe8d75733e19b65831bb88646a7effe3389024e4e920e456af03199ff343b8d59836aa48fa3
7
+ data.tar.gz: 8a2a5b4ddbf21154375bec7a712997c6a3ecc7ab5a07354f2a8318810d13fded4c49b540c689f1bca3d649bb682227bd6714216269b4635163b1ddbe3b8c13aa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.23.0 (2023-10-08)
4
+
5
+ * Regenerated from discovery document revision 20230928
6
+
3
7
  ### v0.22.0 (2023-10-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20230925
@@ -3521,6 +3521,11 @@ module Google
3521
3521
  # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseFacet>]
3522
3522
  attr_accessor :facets
3523
3523
 
3524
+ #
3525
+ # Corresponds to the JSON property `geoSearchDebugInfo`
3526
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo>]
3527
+ attr_accessor :geo_search_debug_info
3528
+
3524
3529
  # Guided search result. The guided search helps user to refine the search
3525
3530
  # results and narrow down to the real needs from a broaded search results.
3526
3531
  # Corresponds to the JSON property `guidedSearchResult`
@@ -3573,6 +3578,7 @@ module Google
3573
3578
  @attribution_token = args[:attribution_token] if args.key?(:attribution_token)
3574
3579
  @corrected_query = args[:corrected_query] if args.key?(:corrected_query)
3575
3580
  @facets = args[:facets] if args.key?(:facets)
3581
+ @geo_search_debug_info = args[:geo_search_debug_info] if args.key?(:geo_search_debug_info)
3576
3582
  @guided_search_result = args[:guided_search_result] if args.key?(:guided_search_result)
3577
3583
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3578
3584
  @query_expansion_info = args[:query_expansion_info] if args.key?(:query_expansion_info)
@@ -3647,6 +3653,32 @@ module Google
3647
3653
  end
3648
3654
  end
3649
3655
 
3656
+ # Debug information specifically related to forward geocoding issues arising
3657
+ # from Geolocation Search.
3658
+ class GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo
3659
+ include Google::Apis::Core::Hashable
3660
+
3661
+ # The error produced.
3662
+ # Corresponds to the JSON property `errorMessage`
3663
+ # @return [String]
3664
+ attr_accessor :error_message
3665
+
3666
+ # The address from which forward geocoding ingestion produced issues.
3667
+ # Corresponds to the JSON property `originalAddressQuery`
3668
+ # @return [String]
3669
+ attr_accessor :original_address_query
3670
+
3671
+ def initialize(**args)
3672
+ update!(**args)
3673
+ end
3674
+
3675
+ # Update properties of this object
3676
+ def update!(**args)
3677
+ @error_message = args[:error_message] if args.key?(:error_message)
3678
+ @original_address_query = args[:original_address_query] if args.key?(:original_address_query)
3679
+ end
3680
+ end
3681
+
3650
3682
  # Guided search result. The guided search helps user to refine the search
3651
3683
  # results and narrow down to the real needs from a broaded search results.
3652
3684
  class GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult
@@ -4486,6 +4518,13 @@ module Google
4486
4518
  # @return [String]
4487
4519
  attr_accessor :name
4488
4520
 
4521
+ # The type of snippet to display in UCS widget. -
4522
+ # RESULT_DISPLAY_TYPE_UNSPECIFIED for existing users. - SNIPPET for new non-
4523
+ # enterprise search users. - EXTRACTIVE_ANSWER for new enterprise search users.
4524
+ # Corresponds to the JSON property `resultDisplayType`
4525
+ # @return [String]
4526
+ attr_accessor :result_display_type
4527
+
4489
4528
  # Required. Immutable. Specifies the solution type that this WidgetConfig can be
4490
4529
  # used for.
4491
4530
  # Corresponds to the JSON property `solutionType`
@@ -4521,6 +4560,7 @@ module Google
4521
4560
  @fields_ui_components_map = args[:fields_ui_components_map] if args.key?(:fields_ui_components_map)
4522
4561
  @llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
4523
4562
  @name = args[:name] if args.key?(:name)
4563
+ @result_display_type = args[:result_display_type] if args.key?(:result_display_type)
4524
4564
  @solution_type = args[:solution_type] if args.key?(:solution_type)
4525
4565
  @update_time = args[:update_time] if args.key?(:update_time)
4526
4566
  end
@@ -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.22.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230925"
25
+ REVISION = "20230928"
26
26
  end
27
27
  end
28
28
  end
@@ -574,6 +574,12 @@ module Google
574
574
  include Google::Apis::Core::JsonObjectSupport
575
575
  end
576
576
 
577
+ class GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
577
583
  class GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult
578
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
585
 
@@ -1714,6 +1720,8 @@ module Google
1714
1720
  property :corrected_query, as: 'correctedQuery'
1715
1721
  collection :facets, as: 'facets', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseFacet, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseFacet::Representation
1716
1722
 
1723
+ collection :geo_search_debug_info, as: 'geoSearchDebugInfo', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo::Representation
1724
+
1717
1725
  property :guided_search_result, as: 'guidedSearchResult', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult::Representation
1718
1726
 
1719
1727
  property :next_page_token, as: 'nextPageToken'
@@ -1748,6 +1756,14 @@ module Google
1748
1756
  end
1749
1757
  end
1750
1758
 
1759
+ class GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo
1760
+ # @private
1761
+ class Representation < Google::Apis::Core::JsonRepresentation
1762
+ property :error_message, as: 'errorMessage'
1763
+ property :original_address_query, as: 'originalAddressQuery'
1764
+ end
1765
+ end
1766
+
1751
1767
  class GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult
1752
1768
  # @private
1753
1769
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1962,6 +1978,7 @@ module Google
1962
1978
 
1963
1979
  property :llm_enabled, as: 'llmEnabled'
1964
1980
  property :name, as: 'name'
1981
+ property :result_display_type, as: 'resultDisplayType'
1965
1982
  property :solution_type, as: 'solutionType'
1966
1983
  property :update_time, as: 'updateTime'
1967
1984
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2023-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.23.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []