google-apis-discoveryengine_v1beta 0.22.0 → 0.23.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: 2971de127b84bc2c251f59546712d6699de8ae469461d010ffe89670964a3b7b
|
4
|
+
data.tar.gz: 7b515fe9278f6417ba3d0ed155ebff0b4451b1204f0d2a2d679f3ddc1c89979d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 975156a53f9f553eb808d9426fc0db70f6d970b46bec2c6ea6eb3e858ce11de07b5baf6da90ad0654595b1efa99d82dbac384418bbf596387b67da56d4e8b8f0
|
7
|
+
data.tar.gz: f446c2668909dd95236f2456c663ee95d7e429d9b2caf815550001781234d8f199e974e828cdee27d74b13e5a7f4c7f89338a8129c6feb05f7802a45cd3bfb4c
|
data/CHANGELOG.md
CHANGED
@@ -3799,6 +3799,11 @@ module Google
|
|
3799
3799
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacet>]
|
3800
3800
|
attr_accessor :facets
|
3801
3801
|
|
3802
|
+
#
|
3803
|
+
# Corresponds to the JSON property `geoSearchDebugInfo`
|
3804
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseGeoSearchDebugInfo>]
|
3805
|
+
attr_accessor :geo_search_debug_info
|
3806
|
+
|
3802
3807
|
# Guided search result. The guided search helps user to refine the search
|
3803
3808
|
# results and narrow down to the real needs from a broaded search results.
|
3804
3809
|
# Corresponds to the JSON property `guidedSearchResult`
|
@@ -3851,6 +3856,7 @@ module Google
|
|
3851
3856
|
@attribution_token = args[:attribution_token] if args.key?(:attribution_token)
|
3852
3857
|
@corrected_query = args[:corrected_query] if args.key?(:corrected_query)
|
3853
3858
|
@facets = args[:facets] if args.key?(:facets)
|
3859
|
+
@geo_search_debug_info = args[:geo_search_debug_info] if args.key?(:geo_search_debug_info)
|
3854
3860
|
@guided_search_result = args[:guided_search_result] if args.key?(:guided_search_result)
|
3855
3861
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3856
3862
|
@query_expansion_info = args[:query_expansion_info] if args.key?(:query_expansion_info)
|
@@ -3925,6 +3931,32 @@ module Google
|
|
3925
3931
|
end
|
3926
3932
|
end
|
3927
3933
|
|
3934
|
+
# Debug information specifically related to forward geocoding issues arising
|
3935
|
+
# from Geolocation Search.
|
3936
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseGeoSearchDebugInfo
|
3937
|
+
include Google::Apis::Core::Hashable
|
3938
|
+
|
3939
|
+
# The error produced.
|
3940
|
+
# Corresponds to the JSON property `errorMessage`
|
3941
|
+
# @return [String]
|
3942
|
+
attr_accessor :error_message
|
3943
|
+
|
3944
|
+
# The address from which forward geocoding ingestion produced issues.
|
3945
|
+
# Corresponds to the JSON property `originalAddressQuery`
|
3946
|
+
# @return [String]
|
3947
|
+
attr_accessor :original_address_query
|
3948
|
+
|
3949
|
+
def initialize(**args)
|
3950
|
+
update!(**args)
|
3951
|
+
end
|
3952
|
+
|
3953
|
+
# Update properties of this object
|
3954
|
+
def update!(**args)
|
3955
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
3956
|
+
@original_address_query = args[:original_address_query] if args.key?(:original_address_query)
|
3957
|
+
end
|
3958
|
+
end
|
3959
|
+
|
3928
3960
|
# Guided search result. The guided search helps user to refine the search
|
3929
3961
|
# results and narrow down to the real needs from a broaded search results.
|
3930
3962
|
class GoogleCloudDiscoveryengineV1betaSearchResponseGuidedSearchResult
|
@@ -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.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 = "
|
25
|
+
REVISION = "20230928"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -628,6 +628,12 @@ module Google
|
|
628
628
|
include Google::Apis::Core::JsonObjectSupport
|
629
629
|
end
|
630
630
|
|
631
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseGeoSearchDebugInfo
|
632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
|
+
|
634
|
+
include Google::Apis::Core::JsonObjectSupport
|
635
|
+
end
|
636
|
+
|
631
637
|
class GoogleCloudDiscoveryengineV1betaSearchResponseGuidedSearchResult
|
632
638
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
639
|
|
@@ -1707,6 +1713,8 @@ module Google
|
|
1707
1713
|
property :corrected_query, as: 'correctedQuery'
|
1708
1714
|
collection :facets, as: 'facets', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacet, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacet::Representation
|
1709
1715
|
|
1716
|
+
collection :geo_search_debug_info, as: 'geoSearchDebugInfo', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseGeoSearchDebugInfo, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseGeoSearchDebugInfo::Representation
|
1717
|
+
|
1710
1718
|
property :guided_search_result, as: 'guidedSearchResult', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseGuidedSearchResult, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseGuidedSearchResult::Representation
|
1711
1719
|
|
1712
1720
|
property :next_page_token, as: 'nextPageToken'
|
@@ -1741,6 +1749,14 @@ module Google
|
|
1741
1749
|
end
|
1742
1750
|
end
|
1743
1751
|
|
1752
|
+
class GoogleCloudDiscoveryengineV1betaSearchResponseGeoSearchDebugInfo
|
1753
|
+
# @private
|
1754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1755
|
+
property :error_message, as: 'errorMessage'
|
1756
|
+
property :original_address_query, as: 'originalAddressQuery'
|
1757
|
+
end
|
1758
|
+
end
|
1759
|
+
|
1744
1760
|
class GoogleCloudDiscoveryengineV1betaSearchResponseGuidedSearchResult
|
1745
1761
|
# @private
|
1746
1762
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.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-
|
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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|