aws-sdk-cloudsearchdomain 1.54.0 → 1.56.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearchdomain/client.rb +35 -12
- data/lib/aws-sdk-cloudsearchdomain/types.rb +11 -11
- data/lib/aws-sdk-cloudsearchdomain.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87ea736b0f6cf6872491c6340c107123e41ad70fcddf1171252600c14d2f8a73
|
4
|
+
data.tar.gz: 3477245e154140228439db08cf8a4aea97073e8f03a576169032e22dafb2ad57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05633c94f2ebbaa483b7c39f50605aec255e726df0f4b549bdc9ba5653d9bf58e8dd1fda19fe06acbc0120f8d8d5eb0b169d57f22d8f9e6ee2252a72ed53452d
|
7
|
+
data.tar.gz: eaa5b9bd3dc3e30e0aa45c750e28ea8201721f9293b8f8955b50a9622fff85690cdd13e20824b8fd1902271861d74727bc3d8bd9bab67f5c368af3fa55309a2a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.56.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.55.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.54.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
@@ -204,11 +204,34 @@ module Aws::CloudSearchDomain
|
|
204
204
|
# Used when loading credentials from the shared credentials file
|
205
205
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
206
206
|
#
|
207
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
208
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
209
|
+
#
|
210
|
+
# * `when_supported` - (default) When set, a checksum will be
|
211
|
+
# calculated for all request payloads of operations modeled with the
|
212
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
213
|
+
# `requestAlgorithmMember` is modeled.
|
214
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
215
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
216
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
217
|
+
# is modeled and supplied.
|
218
|
+
#
|
207
219
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
208
220
|
# The minimum size in bytes that triggers compression for request
|
209
221
|
# bodies. The value must be non-negative integer value between 0
|
210
222
|
# and 10485780 bytes inclusive.
|
211
223
|
#
|
224
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
225
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
226
|
+
#
|
227
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
228
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
229
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
230
|
+
# are supported.
|
231
|
+
# * `when_required` - When set, checksum validation is not performed on
|
232
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
233
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
234
|
+
#
|
212
235
|
# @option options [Proc] :retry_backoff
|
213
236
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
214
237
|
# This option is only used in the `legacy` retry mode.
|
@@ -438,10 +461,10 @@ module Aws::CloudSearchDomain
|
|
438
461
|
# expressions as return fields.
|
439
462
|
#
|
440
463
|
# You specify the expressions in JSON using the form
|
441
|
-
#
|
464
|
+
# `{"EXPRESSIONNAME":"EXPRESSION"}`. You can define and use multiple
|
442
465
|
# expressions in a search request. For example:
|
443
466
|
#
|
444
|
-
# `
|
467
|
+
# ` {"expression1":"_score*rating", "expression2":"(1/rank)*year"} `
|
445
468
|
#
|
446
469
|
# For information about the variables, operators, and functions you can
|
447
470
|
# use in expressions, see [Writing Expressions][1] in the *Amazon
|
@@ -456,7 +479,7 @@ module Aws::CloudSearchDomain
|
|
456
479
|
# options that control how the facet information is returned. Each
|
457
480
|
# specified field must be facet-enabled in the domain configuration. The
|
458
481
|
# fields and options are specified in JSON using the form
|
459
|
-
#
|
482
|
+
# `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`.
|
460
483
|
#
|
461
484
|
# You can specify the following faceting options:
|
462
485
|
#
|
@@ -489,7 +512,7 @@ module Aws::CloudSearchDomain
|
|
489
512
|
# and return facet counts by decade.
|
490
513
|
#
|
491
514
|
# `
|
492
|
-
#
|
515
|
+
# {"year":{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,}"]}}
|
493
516
|
# `
|
494
517
|
#
|
495
518
|
# To sort facets by facet count, use the `count` option. For example,
|
@@ -498,13 +521,13 @@ module Aws::CloudSearchDomain
|
|
498
521
|
# matching documents listed first. Setting the `size` option to 3
|
499
522
|
# returns only the top three facet values.
|
500
523
|
#
|
501
|
-
# `
|
524
|
+
# ` {"year":{"sort":"count","size":3}} `
|
502
525
|
#
|
503
526
|
# To sort the facets by value, use the `bucket` option. For example, the
|
504
527
|
# following request sets the `sort` option to `bucket` to sort the facet
|
505
528
|
# values numerically by year, with earliest year listed first.
|
506
529
|
#
|
507
|
-
# `
|
530
|
+
# ` {"year":{"sort":"bucket"}} `
|
508
531
|
#
|
509
532
|
# For more information, see [Getting and Using Facet Information][2] in
|
510
533
|
# the *Amazon CloudSearch Developer Guide*.
|
@@ -536,7 +559,7 @@ module Aws::CloudSearchDomain
|
|
536
559
|
# `text-array` fields. Each specified field must be highlight enabled in
|
537
560
|
# the domain configuration. The fields and options are specified in JSON
|
538
561
|
# using the form
|
539
|
-
#
|
562
|
+
# `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`.
|
540
563
|
#
|
541
564
|
# You can specify the following highlight options:
|
542
565
|
#
|
@@ -560,8 +583,8 @@ module Aws::CloudSearchDomain
|
|
560
583
|
# For example, the following request retrieves highlights for the
|
561
584
|
# `actors` and `title` fields.
|
562
585
|
#
|
563
|
-
#
|
564
|
-
# 2,"pre_tag": "","post_tag": ""
|
586
|
+
# `{ "actors": {}, "title": {"format": "text","max_phrases":
|
587
|
+
# 2,"pre_tag": "","post_tag": ""} }`
|
565
588
|
#
|
566
589
|
# @option params [Boolean] :partial
|
567
590
|
# Enables partial results to be returned if one or more index partitions
|
@@ -595,7 +618,7 @@ module Aws::CloudSearchDomain
|
|
595
618
|
# @option params [String] :query_options
|
596
619
|
# Configures options for the query parser specified in the `queryParser`
|
597
620
|
# parameter. You specify the options in JSON using the following form
|
598
|
-
#
|
621
|
+
# `{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"}.`
|
599
622
|
#
|
600
623
|
# The options you can configure vary according to which parser you use:
|
601
624
|
#
|
@@ -775,7 +798,7 @@ module Aws::CloudSearchDomain
|
|
775
798
|
# Each specified field must be facet-enabled in the domain
|
776
799
|
# configuration. The fields are specified in JSON using the form:
|
777
800
|
#
|
778
|
-
#
|
801
|
+
# `{"FIELD-A":{},"FIELD-B":{}}` There are currently no options supported for statistics.
|
779
802
|
#
|
780
803
|
# @return [Types::SearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
781
804
|
#
|
@@ -990,7 +1013,7 @@ module Aws::CloudSearchDomain
|
|
990
1013
|
tracer: tracer
|
991
1014
|
)
|
992
1015
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
993
|
-
context[:gem_version] = '1.
|
1016
|
+
context[:gem_version] = '1.56.0'
|
994
1017
|
Seahorse::Client::Request.new(handlers, context)
|
995
1018
|
end
|
996
1019
|
|
@@ -249,10 +249,10 @@ module Aws::CloudSearchDomain
|
|
249
249
|
# expressions as return fields.
|
250
250
|
#
|
251
251
|
# You specify the expressions in JSON using the form
|
252
|
-
#
|
252
|
+
# `{"EXPRESSIONNAME":"EXPRESSION"}`. You can define and use multiple
|
253
253
|
# expressions in a search request. For example:
|
254
254
|
#
|
255
|
-
# `
|
255
|
+
# ` {"expression1":"_score*rating", "expression2":"(1/rank)*year"} `
|
256
256
|
#
|
257
257
|
# For information about the variables, operators, and functions you
|
258
258
|
# can use in expressions, see [Writing Expressions][1] in the *Amazon
|
@@ -268,7 +268,7 @@ module Aws::CloudSearchDomain
|
|
268
268
|
# options that control how the facet information is returned. Each
|
269
269
|
# specified field must be facet-enabled in the domain configuration.
|
270
270
|
# The fields and options are specified in JSON using the form
|
271
|
-
#
|
271
|
+
# `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`.
|
272
272
|
#
|
273
273
|
# You can specify the following faceting options:
|
274
274
|
#
|
@@ -301,7 +301,7 @@ module Aws::CloudSearchDomain
|
|
301
301
|
# calculate and return facet counts by decade.
|
302
302
|
#
|
303
303
|
# `
|
304
|
-
#
|
304
|
+
# {"year":{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,}"]}}
|
305
305
|
# `
|
306
306
|
#
|
307
307
|
# To sort facets by facet count, use the `count` option. For example,
|
@@ -310,13 +310,13 @@ module Aws::CloudSearchDomain
|
|
310
310
|
# most matching documents listed first. Setting the `size` option to 3
|
311
311
|
# returns only the top three facet values.
|
312
312
|
#
|
313
|
-
# `
|
313
|
+
# ` {"year":{"sort":"count","size":3}} `
|
314
314
|
#
|
315
315
|
# To sort the facets by value, use the `bucket` option. For example,
|
316
316
|
# the following request sets the `sort` option to `bucket` to sort the
|
317
317
|
# facet values numerically by year, with earliest year listed first.
|
318
318
|
#
|
319
|
-
# `
|
319
|
+
# ` {"year":{"sort":"bucket"}} `
|
320
320
|
#
|
321
321
|
# For more information, see [Getting and Using Facet Information][2]
|
322
322
|
# in the *Amazon CloudSearch Developer Guide*.
|
@@ -350,7 +350,7 @@ module Aws::CloudSearchDomain
|
|
350
350
|
# `text-array` fields. Each specified field must be highlight enabled
|
351
351
|
# in the domain configuration. The fields and options are specified in
|
352
352
|
# JSON using the form
|
353
|
-
#
|
353
|
+
# `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`.
|
354
354
|
#
|
355
355
|
# You can specify the following highlight options:
|
356
356
|
#
|
@@ -374,8 +374,8 @@ module Aws::CloudSearchDomain
|
|
374
374
|
# For example, the following request retrieves highlights for the
|
375
375
|
# `actors` and `title` fields.
|
376
376
|
#
|
377
|
-
#
|
378
|
-
# 2,"pre_tag": "","post_tag": ""
|
377
|
+
# `{ "actors": {}, "title": {"format": "text","max_phrases":
|
378
|
+
# 2,"pre_tag": "","post_tag": ""} }`
|
379
379
|
# @return [String]
|
380
380
|
#
|
381
381
|
# @!attribute [rw] partial
|
@@ -414,7 +414,7 @@ module Aws::CloudSearchDomain
|
|
414
414
|
# Configures options for the query parser specified in the
|
415
415
|
# `queryParser` parameter. You specify the options in JSON using the
|
416
416
|
# following form
|
417
|
-
#
|
417
|
+
# `{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"}.`
|
418
418
|
#
|
419
419
|
# The options you can configure vary according to which parser you
|
420
420
|
# use:
|
@@ -604,7 +604,7 @@ module Aws::CloudSearchDomain
|
|
604
604
|
# domain configuration. The fields are specified in JSON using the
|
605
605
|
# form:
|
606
606
|
#
|
607
|
-
#
|
607
|
+
# `{"FIELD-A":{},"FIELD-B":{}}` There are currently no options supported for statistics.
|
608
608
|
# @return [String]
|
609
609
|
#
|
610
610
|
class SearchRequest < Struct.new(
|
data/sig/client.rbs
CHANGED
@@ -30,7 +30,9 @@ module Aws
|
|
30
30
|
?logger: untyped,
|
31
31
|
?max_attempts: Integer,
|
32
32
|
?profile: String,
|
33
|
+
?request_checksum_calculation: String,
|
33
34
|
?request_min_compression_size_bytes: Integer,
|
35
|
+
?response_checksum_validation: String,
|
34
36
|
?retry_backoff: Proc,
|
35
37
|
?retry_base_delay: Float,
|
36
38
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -30,7 +30,9 @@ module Aws
|
|
30
30
|
?logger: untyped,
|
31
31
|
?max_attempts: Integer,
|
32
32
|
?profile: String,
|
33
|
+
?request_checksum_calculation: String,
|
33
34
|
?request_min_compression_size_bytes: Integer,
|
35
|
+
?response_checksum_validation: String,
|
34
36
|
?retry_backoff: Proc,
|
35
37
|
?retry_base_delay: Float,
|
36
38
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
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.
|
4
|
+
version: 1.56.0
|
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: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|