google-apis-cloudsearch_v1 0.61.0 → 0.63.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: 6ecee09eb5b8d840b39965ea7ca3209d0dace3e92f63922032ae5e132b31960e
|
4
|
+
data.tar.gz: d3a47e52bbe64ff56f24c7d28e3192d0a23a9408570915e28b2a0d2667dc810f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c2fe31cee037cfe63e12fff50ec63ce1ecbd73c02b9dff49a86e220a9af16771138380b387f9c8a69bff726d978b96820bf863b0e0796940870bc13151493c4
|
7
|
+
data.tar.gz: 7cd30b30c8f56c6b64546750bba7d91680e96dce179e39b72b68c91aedb53957c412f3960e99661380860bfe83c8bcc34733e79f9fc728d2411280767aefb9d2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.63.0 (2024-11-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241113
|
6
|
+
|
7
|
+
### v0.62.0 (2024-10-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241016
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.61.0 (2024-06-16)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240529
|
@@ -871,7 +871,7 @@ module Google
|
|
871
871
|
# @return [String]
|
872
872
|
attr_accessor :gsr_response
|
873
873
|
|
874
|
-
# The search API response.
|
874
|
+
# The search API response. NEXT ID: 17
|
875
875
|
# Corresponds to the JSON property `searchResponse`
|
876
876
|
# @return [Google::Apis::CloudsearchV1::SearchResponse]
|
877
877
|
attr_accessor :search_response
|
@@ -6686,64 +6686,6 @@ module Google
|
|
6686
6686
|
end
|
6687
6687
|
end
|
6688
6688
|
|
6689
|
-
# The rewritten queries returned by Apps Search Query Understanding service.
|
6690
|
-
class RewrittenQueries
|
6691
|
-
include Google::Apis::Core::Hashable
|
6692
|
-
|
6693
|
-
#
|
6694
|
-
# Corresponds to the JSON property `rewrittenQueries`
|
6695
|
-
# @return [Array<Google::Apis::CloudsearchV1::RewrittenQuery>]
|
6696
|
-
attr_accessor :rewritten_queries
|
6697
|
-
|
6698
|
-
# The index of the selected query in `rewritten_queries` that is used by QAPI to
|
6699
|
-
# call CSSR to get search results. If none of the queries were used (i.e. they
|
6700
|
-
# all give empty search results), `selected_query_index` would default to -1.
|
6701
|
-
# Corresponds to the JSON property `selectedQueryIndex`
|
6702
|
-
# @return [Fixnum]
|
6703
|
-
attr_accessor :selected_query_index
|
6704
|
-
|
6705
|
-
def initialize(**args)
|
6706
|
-
update!(**args)
|
6707
|
-
end
|
6708
|
-
|
6709
|
-
# Update properties of this object
|
6710
|
-
def update!(**args)
|
6711
|
-
@rewritten_queries = args[:rewritten_queries] if args.key?(:rewritten_queries)
|
6712
|
-
@selected_query_index = args[:selected_query_index] if args.key?(:selected_query_index)
|
6713
|
-
end
|
6714
|
-
end
|
6715
|
-
|
6716
|
-
#
|
6717
|
-
class RewrittenQuery
|
6718
|
-
include Google::Apis::Core::Hashable
|
6719
|
-
|
6720
|
-
#
|
6721
|
-
# Corresponds to the JSON property `rewrittenQuery`
|
6722
|
-
# @return [String]
|
6723
|
-
attr_accessor :rewritten_query
|
6724
|
-
|
6725
|
-
#
|
6726
|
-
# Corresponds to the JSON property `score`
|
6727
|
-
# @return [Float]
|
6728
|
-
attr_accessor :score
|
6729
|
-
|
6730
|
-
#
|
6731
|
-
# Corresponds to the JSON property `sortBy`
|
6732
|
-
# @return [String]
|
6733
|
-
attr_accessor :sort_by
|
6734
|
-
|
6735
|
-
def initialize(**args)
|
6736
|
-
update!(**args)
|
6737
|
-
end
|
6738
|
-
|
6739
|
-
# Update properties of this object
|
6740
|
-
def update!(**args)
|
6741
|
-
@rewritten_query = args[:rewritten_query] if args.key?(:rewritten_query)
|
6742
|
-
@score = args[:score] if args.key?(:score)
|
6743
|
-
@sort_by = args[:sort_by] if args.key?(:sort_by)
|
6744
|
-
end
|
6745
|
-
end
|
6746
|
-
|
6747
6689
|
# IMPORTANT: It is unsafe to accept this message from an untrusted source, since
|
6748
6690
|
# it's trivial for an attacker to forge serialized messages that don't fulfill
|
6749
6691
|
# the type's safety contract -- for example, it could contain attacker
|
@@ -7116,7 +7058,7 @@ module Google
|
|
7116
7058
|
end
|
7117
7059
|
end
|
7118
7060
|
|
7119
|
-
# The search API request.
|
7061
|
+
# The search API request. NEXT ID: 17
|
7120
7062
|
class SearchRequest
|
7121
7063
|
include Google::Apis::Core::Hashable
|
7122
7064
|
|
@@ -7188,7 +7130,7 @@ module Google
|
|
7188
7130
|
end
|
7189
7131
|
end
|
7190
7132
|
|
7191
|
-
# The search API response.
|
7133
|
+
# The search API response. NEXT ID: 17
|
7192
7134
|
class SearchResponse
|
7193
7135
|
include Google::Apis::Core::Hashable
|
7194
7136
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudsearchV1
|
18
18
|
# Version of the google-apis-cloudsearch_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.63.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241113"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1096,18 +1096,6 @@ module Google
|
|
1096
1096
|
include Google::Apis::Core::JsonObjectSupport
|
1097
1097
|
end
|
1098
1098
|
|
1099
|
-
class RewrittenQueries
|
1100
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1101
|
-
|
1102
|
-
include Google::Apis::Core::JsonObjectSupport
|
1103
|
-
end
|
1104
|
-
|
1105
|
-
class RewrittenQuery
|
1106
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1107
|
-
|
1108
|
-
include Google::Apis::Core::JsonObjectSupport
|
1109
|
-
end
|
1110
|
-
|
1111
1099
|
class SafeHtmlProto
|
1112
1100
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1113
1101
|
|
@@ -3295,24 +3283,6 @@ module Google
|
|
3295
3283
|
end
|
3296
3284
|
end
|
3297
3285
|
|
3298
|
-
class RewrittenQueries
|
3299
|
-
# @private
|
3300
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3301
|
-
collection :rewritten_queries, as: 'rewrittenQueries', class: Google::Apis::CloudsearchV1::RewrittenQuery, decorator: Google::Apis::CloudsearchV1::RewrittenQuery::Representation
|
3302
|
-
|
3303
|
-
property :selected_query_index, as: 'selectedQueryIndex'
|
3304
|
-
end
|
3305
|
-
end
|
3306
|
-
|
3307
|
-
class RewrittenQuery
|
3308
|
-
# @private
|
3309
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3310
|
-
property :rewritten_query, as: 'rewrittenQuery'
|
3311
|
-
property :score, as: 'score'
|
3312
|
-
property :sort_by, as: 'sortBy'
|
3313
|
-
end
|
3314
|
-
end
|
3315
|
-
|
3316
3286
|
class SafeHtmlProto
|
3317
3287
|
# @private
|
3318
3288
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudsearch_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.63.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: 2024-
|
11
|
+
date: 2024-12-04 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-cloudsearch_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.63.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Search API V1
|