aws-sdk-cloudsearchdomain 1.34.0 → 1.34.1
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 +4 -4
- data/CHANGELOG.md +6 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearchdomain/client.rb +1 -1
- data/lib/aws-sdk-cloudsearchdomain/types.rb +0 -37
- data/lib/aws-sdk-cloudsearchdomain.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e4543bf370a14e33f5e7fbd73534da5937a81005e95d923f363a39fc65b9046
|
|
4
|
+
data.tar.gz: 2fdef84a51331459e426a19cad4a068aae99d3fb12bae8cf4c1de16520d4e2a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faa6301c29f7d14db2472a700642951f10ec17f0efde9f6035e4a21e4503c7dcc336029932d7d5e3c87a2313837c7caa9becdee2a0acd721ca22e864abae24b3
|
|
7
|
+
data.tar.gz: f3d0e34680212a816079e0ad0201566fa114c66436b77dcc891db65673b31b8bfe292b5313a7a130dd687a6e99d277ba845b1ba8d7dc796527ddc6ffdfd26e11
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.34.1 (2023-01-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
|
8
|
+
|
|
4
9
|
1.34.0 (2022-10-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
|
@@ -243,4 +248,4 @@ Unreleased Changes
|
|
|
243
248
|
1.0.0.rc1 (2016-12-05)
|
|
244
249
|
------------------
|
|
245
250
|
|
|
246
|
-
* Feature - Initial preview release of the `aws-sdk-cloudsearchdomain` gem.
|
|
251
|
+
* Feature - Initial preview release of the `aws-sdk-cloudsearchdomain` gem.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.34.
|
|
1
|
+
1.34.1
|
|
@@ -916,7 +916,7 @@ module Aws::CloudSearchDomain
|
|
|
916
916
|
params: params,
|
|
917
917
|
config: config)
|
|
918
918
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
|
919
|
-
context[:gem_version] = '1.34.
|
|
919
|
+
context[:gem_version] = '1.34.1'
|
|
920
920
|
Seahorse::Client::Request.new(handlers, context)
|
|
921
921
|
end
|
|
922
922
|
|
|
@@ -229,26 +229,6 @@ module Aws::CloudSearchDomain
|
|
|
229
229
|
|
|
230
230
|
# Container for the parameters to the `Search` request.
|
|
231
231
|
#
|
|
232
|
-
# @note When making an API call, you may pass SearchRequest
|
|
233
|
-
# data as a hash:
|
|
234
|
-
#
|
|
235
|
-
# {
|
|
236
|
-
# cursor: "Cursor",
|
|
237
|
-
# expr: "Expr",
|
|
238
|
-
# facet: "Facet",
|
|
239
|
-
# filter_query: "FilterQuery",
|
|
240
|
-
# highlight: "Highlight",
|
|
241
|
-
# partial: false,
|
|
242
|
-
# query: "Query", # required
|
|
243
|
-
# query_options: "QueryOptions",
|
|
244
|
-
# query_parser: "simple", # accepts simple, structured, lucene, dismax
|
|
245
|
-
# return: "Return",
|
|
246
|
-
# size: 1,
|
|
247
|
-
# sort: "Sort",
|
|
248
|
-
# start: 1,
|
|
249
|
-
# stats: "Stat",
|
|
250
|
-
# }
|
|
251
|
-
#
|
|
252
232
|
# @!attribute [rw] cursor
|
|
253
233
|
# Retrieves a cursor value you can use to page through large result
|
|
254
234
|
# sets. Use the `size` parameter to control the number of hits to
|
|
@@ -721,15 +701,6 @@ module Aws::CloudSearchDomain
|
|
|
721
701
|
|
|
722
702
|
# Container for the parameters to the `Suggest` request.
|
|
723
703
|
#
|
|
724
|
-
# @note When making an API call, you may pass SuggestRequest
|
|
725
|
-
# data as a hash:
|
|
726
|
-
#
|
|
727
|
-
# {
|
|
728
|
-
# query: "Query", # required
|
|
729
|
-
# suggester: "Suggester", # required
|
|
730
|
-
# size: 1,
|
|
731
|
-
# }
|
|
732
|
-
#
|
|
733
704
|
# @!attribute [rw] query
|
|
734
705
|
# Specifies the string for which you want to get suggestions.
|
|
735
706
|
# @return [String]
|
|
@@ -813,14 +784,6 @@ module Aws::CloudSearchDomain
|
|
|
813
784
|
|
|
814
785
|
# Container for the parameters to the `UploadDocuments` request.
|
|
815
786
|
#
|
|
816
|
-
# @note When making an API call, you may pass UploadDocumentsRequest
|
|
817
|
-
# data as a hash:
|
|
818
|
-
#
|
|
819
|
-
# {
|
|
820
|
-
# documents: "data", # required
|
|
821
|
-
# content_type: "application/json", # required, accepts application/json, application/xml
|
|
822
|
-
# }
|
|
823
|
-
#
|
|
824
787
|
# @!attribute [rw] documents
|
|
825
788
|
# A batch of documents formatted in JSON or HTML.
|
|
826
789
|
# @return [IO]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudsearchdomain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.34.
|
|
4
|
+
version: 1.34.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|