aws-sdk-cloudsearchdomain 1.54.0 → 1.55.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearchdomain/client.rb +12 -12
- data/lib/aws-sdk-cloudsearchdomain/types.rb +11 -11
- 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: 2e7f1a8f57ecc5327b49980d97a10c66e43ba6ce6e40b3d51003279803653e7d
|
4
|
+
data.tar.gz: 342f62cc31825935040e61e434b892a88d9b901ccb4ee6ef2786a4ee59082770
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 740e48bd2e1f8becae3e9906374ed210f580b7cd09dd21ebf06217654b59ca46cfe133fe54c22f9cc585da583a2c4fac49491516217672050b84e44e51422865
|
7
|
+
data.tar.gz: b4408bb2205a6c92a2996d2a11f59103ac9696bc5d2cbee74ad9539385e780ad40f5e859890028a3b183e704afd901d3b130318048ef00c4e8ce278831553dc8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.55.0
|
@@ -438,10 +438,10 @@ module Aws::CloudSearchDomain
|
|
438
438
|
# expressions as return fields.
|
439
439
|
#
|
440
440
|
# You specify the expressions in JSON using the form
|
441
|
-
#
|
441
|
+
# `{"EXPRESSIONNAME":"EXPRESSION"}`. You can define and use multiple
|
442
442
|
# expressions in a search request. For example:
|
443
443
|
#
|
444
|
-
# `
|
444
|
+
# ` {"expression1":"_score*rating", "expression2":"(1/rank)*year"} `
|
445
445
|
#
|
446
446
|
# For information about the variables, operators, and functions you can
|
447
447
|
# use in expressions, see [Writing Expressions][1] in the *Amazon
|
@@ -456,7 +456,7 @@ module Aws::CloudSearchDomain
|
|
456
456
|
# options that control how the facet information is returned. Each
|
457
457
|
# specified field must be facet-enabled in the domain configuration. The
|
458
458
|
# fields and options are specified in JSON using the form
|
459
|
-
#
|
459
|
+
# `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`.
|
460
460
|
#
|
461
461
|
# You can specify the following faceting options:
|
462
462
|
#
|
@@ -489,7 +489,7 @@ module Aws::CloudSearchDomain
|
|
489
489
|
# and return facet counts by decade.
|
490
490
|
#
|
491
491
|
# `
|
492
|
-
#
|
492
|
+
# {"year":{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,}"]}}
|
493
493
|
# `
|
494
494
|
#
|
495
495
|
# To sort facets by facet count, use the `count` option. For example,
|
@@ -498,13 +498,13 @@ module Aws::CloudSearchDomain
|
|
498
498
|
# matching documents listed first. Setting the `size` option to 3
|
499
499
|
# returns only the top three facet values.
|
500
500
|
#
|
501
|
-
# `
|
501
|
+
# ` {"year":{"sort":"count","size":3}} `
|
502
502
|
#
|
503
503
|
# To sort the facets by value, use the `bucket` option. For example, the
|
504
504
|
# following request sets the `sort` option to `bucket` to sort the facet
|
505
505
|
# values numerically by year, with earliest year listed first.
|
506
506
|
#
|
507
|
-
# `
|
507
|
+
# ` {"year":{"sort":"bucket"}} `
|
508
508
|
#
|
509
509
|
# For more information, see [Getting and Using Facet Information][2] in
|
510
510
|
# the *Amazon CloudSearch Developer Guide*.
|
@@ -536,7 +536,7 @@ module Aws::CloudSearchDomain
|
|
536
536
|
# `text-array` fields. Each specified field must be highlight enabled in
|
537
537
|
# the domain configuration. The fields and options are specified in JSON
|
538
538
|
# using the form
|
539
|
-
#
|
539
|
+
# `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`.
|
540
540
|
#
|
541
541
|
# You can specify the following highlight options:
|
542
542
|
#
|
@@ -560,8 +560,8 @@ module Aws::CloudSearchDomain
|
|
560
560
|
# For example, the following request retrieves highlights for the
|
561
561
|
# `actors` and `title` fields.
|
562
562
|
#
|
563
|
-
#
|
564
|
-
# 2,"pre_tag": "","post_tag": ""
|
563
|
+
# `{ "actors": {}, "title": {"format": "text","max_phrases":
|
564
|
+
# 2,"pre_tag": "","post_tag": ""} }`
|
565
565
|
#
|
566
566
|
# @option params [Boolean] :partial
|
567
567
|
# Enables partial results to be returned if one or more index partitions
|
@@ -595,7 +595,7 @@ module Aws::CloudSearchDomain
|
|
595
595
|
# @option params [String] :query_options
|
596
596
|
# Configures options for the query parser specified in the `queryParser`
|
597
597
|
# parameter. You specify the options in JSON using the following form
|
598
|
-
#
|
598
|
+
# `{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"}.`
|
599
599
|
#
|
600
600
|
# The options you can configure vary according to which parser you use:
|
601
601
|
#
|
@@ -775,7 +775,7 @@ module Aws::CloudSearchDomain
|
|
775
775
|
# Each specified field must be facet-enabled in the domain
|
776
776
|
# configuration. The fields are specified in JSON using the form:
|
777
777
|
#
|
778
|
-
#
|
778
|
+
# `{"FIELD-A":{},"FIELD-B":{}}` There are currently no options supported for statistics.
|
779
779
|
#
|
780
780
|
# @return [Types::SearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
781
781
|
#
|
@@ -990,7 +990,7 @@ module Aws::CloudSearchDomain
|
|
990
990
|
tracer: tracer
|
991
991
|
)
|
992
992
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
993
|
-
context[:gem_version] = '1.
|
993
|
+
context[:gem_version] = '1.55.0'
|
994
994
|
Seahorse::Client::Request.new(handlers, context)
|
995
995
|
end
|
996
996
|
|
@@ -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(
|
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.55.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: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|