aws-sdk-cloudsearchdomain 1.54.0 → 1.55.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: f9e49091da0e3b8178ddaac5dfe83539d430a87fbc84e8f23c5f9b794862c8c4
4
- data.tar.gz: 2357b206953dfa7d4517edfff4e35182d669c43225161009755262bdc1422fc7
3
+ metadata.gz: 2e7f1a8f57ecc5327b49980d97a10c66e43ba6ce6e40b3d51003279803653e7d
4
+ data.tar.gz: 342f62cc31825935040e61e434b892a88d9b901ccb4ee6ef2786a4ee59082770
5
5
  SHA512:
6
- metadata.gz: cbb46b17be47e6a5f476dc5e9b2e937922a08f8b5254fa5a66ec4ece4e845f9a4e6858b440e4909f34b4306ac801279853e9d10cb33dba061e68ac6bba2a35a5
7
- data.tar.gz: 6fb1f21841420bd0a45bb08adbc55b46b1492e2709497a54f54c080e91bb126ec6c32b156086cef04eb609ff3e173feabf400f5936b5c5772afcf336d696a81a
6
+ metadata.gz: 740e48bd2e1f8becae3e9906374ed210f580b7cd09dd21ebf06217654b59ca46cfe133fe54c22f9cc585da583a2c4fac49491516217672050b84e44e51422865
7
+ data.tar.gz: b4408bb2205a6c92a2996d2a11f59103ac9696bc5d2cbee74ad9539385e780ad40f5e859890028a3b183e704afd901d3b130318048ef00c4e8ce278831553dc8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.54.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
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
- # `\{"EXPRESSIONNAME":"EXPRESSION"\}`. You can define and use multiple
441
+ # `{"EXPRESSIONNAME":"EXPRESSION"}`. You can define and use multiple
442
442
  # expressions in a search request. For example:
443
443
  #
444
- # ` \{"expression1":"_score*rating", "expression2":"(1/rank)*year"\} `
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
- # `\{"FIELD":\{"OPTION":VALUE,"OPTION:"STRING"\},"FIELD":\{"OPTION":VALUE,"OPTION":"STRING"\}\}`.
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
- # \{"year":\{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,\}"]\}\}
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
- # ` \{"year":\{"sort":"count","size":3\}\} `
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
- # ` \{"year":\{"sort":"bucket"\}\} `
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
- # `\{"FIELD":\{"OPTION":VALUE,"OPTION:"STRING"\},"FIELD":\{"OPTION":VALUE,"OPTION":"STRING"\}\}`.
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
- # `\{ "actors": \{\}, "title": \{"format": "text","max_phrases":
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
- # `\{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"\}.`
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
- # `\{"FIELD-A":\{\},"FIELD-B":\{\}\}` There are currently no options supported for statistics.
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.54.0'
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
- # `\{"EXPRESSIONNAME":"EXPRESSION"\}`. You can define and use multiple
252
+ # `{"EXPRESSIONNAME":"EXPRESSION"}`. You can define and use multiple
253
253
  # expressions in a search request. For example:
254
254
  #
255
- # ` \{"expression1":"_score*rating", "expression2":"(1/rank)*year"\} `
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
- # `\{"FIELD":\{"OPTION":VALUE,"OPTION:"STRING"\},"FIELD":\{"OPTION":VALUE,"OPTION":"STRING"\}\}`.
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
- # \{"year":\{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,\}"]\}\}
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
- # ` \{"year":\{"sort":"count","size":3\}\} `
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
- # ` \{"year":\{"sort":"bucket"\}\} `
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
- # `\{"FIELD":\{"OPTION":VALUE,"OPTION:"STRING"\},"FIELD":\{"OPTION":VALUE,"OPTION":"STRING"\}\}`.
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
- # `\{ "actors": \{\}, "title": \{"format": "text","max_phrases":
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
- # `\{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"\}.`
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
- # `\{"FIELD-A":\{\},"FIELD-B":\{\}\}` There are currently no options supported for statistics.
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(
@@ -48,7 +48,7 @@ module Aws::CloudSearchDomain
48
48
  autoload :Errors, 'aws-sdk-cloudsearchdomain/errors'
49
49
  autoload :Resource, 'aws-sdk-cloudsearchdomain/resource'
50
50
 
51
- GEM_VERSION = '1.54.0'
51
+ GEM_VERSION = '1.55.0'
52
52
 
53
53
  end
54
54
 
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.54.0
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-10-18 00:00:00.000000000 Z
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