google-apis-cloudsearch_v1 0.62.0 → 0.64.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: 2c66b17b73a42c34a8b3adf3e885f046ca2d1c902b3c112f007128255512f90b
|
4
|
+
data.tar.gz: f0e1c36f6863c32610adc7df1a47d84c7413ae5a1eb4316fc1330ca3100c4b85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f6a0fdad2a443a8f2c5a36251c09390b30891cd0a0fdb377868991fee140b947345f9a109089886ad3ce2608cab50a882bd48f9fa44550e2e2f665ea19b310c
|
7
|
+
data.tar.gz: 1689f03650e45abe046dba4e511c6b6f7de80968ed563dd304cf5223a15c16e665f62f26a2419d98244d9270e255326147c9c51d6de3e09202ac8b31c18d1e3c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.64.0 (2025-05-04)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.17.0
|
6
|
+
|
7
|
+
### v0.63.0 (2024-11-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241113
|
10
|
+
|
3
11
|
### v0.62.0 (2024-10-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241016
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/cloud-search/docs/guid
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -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
|
@@ -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.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
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,13 @@
|
|
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.64.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.64.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
66
|
requirements:
|
69
67
|
- - ">="
|
70
68
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
69
|
+
version: '3.1'
|
72
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
71
|
requirements:
|
74
72
|
- - ">="
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.8
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Search API V1
|
82
79
|
test_files: []
|