aws-sdk-cloudsearch 1.32.0 → 1.36.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: 2fd5d7a9baa7c89f3b89a11ac23175986227ffc8cca0efd8d19b2e2f6f7faaf4
4
- data.tar.gz: fcec0755ccc553d2545943016e53822b47b7046f1d650dc2842475e1c5bffa15
3
+ metadata.gz: 50ca3d653213c62751a850587f7364581b0b965658e55185f338b50986be1a8d
4
+ data.tar.gz: 3b67798d9a028978edca9cf97aadaaa7f5cd5512073b488a38de4170a6fac12c
5
5
  SHA512:
6
- metadata.gz: 6b2968fa0bf658bbca37bb1272b544506ca30930fd8301de313bea1b84f27d2f34df433b75cda6dae946079577ef7658fb409279a3d90cc1f99f5b0f4ad6fb6c
7
- data.tar.gz: 4c55ec4316320c40012f6b07a657d461a6bbc6c293eeaad90fadd08d0cf6aaacd1b94a5ac0371f6eabd9ac0ccbc167b071504cb65110cf694290097724d5f92b
6
+ metadata.gz: f68d67b1e0105da830f3049fcc6c2339de51ebbbec45873927c9a6c76e685aa2d24c1cbec63c792c03ffc225113c2c77676614d7d61d865dd8f3ad1ba649f37e
7
+ data.tar.gz: fe5ea868a32d38ebc9e845591c17c43557b9abc1e4bfefc8d1b5de8083423b0a9edae9e8156e8ae334eb53426cb1d451d68d7d23e666fc4c9fe234024012df0b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.35.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.34.0 (2021-10-12)
15
+ ------------------
16
+
17
+ * Feature - Adds an additional validation exception for Amazon CloudSearch configuration APIs for better error handling.
18
+
19
+ 1.33.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.32.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.36.0
@@ -275,6 +275,15 @@ module Aws::CloudSearch
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -1845,7 +1854,7 @@ module Aws::CloudSearch
1845
1854
  params: params,
1846
1855
  config: config)
1847
1856
  context[:gem_name] = 'aws-sdk-cloudsearch'
1848
- context[:gem_version] = '1.32.0'
1857
+ context[:gem_version] = '1.36.0'
1849
1858
  Seahorse::Client::Request.new(handlers, context)
1850
1859
  end
1851
1860
 
@@ -582,6 +582,7 @@ module Aws::CloudSearch
582
582
  o.errors << Shapes::ShapeRef.new(shape: BaseException)
583
583
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
584
584
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
585
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
585
586
  end)
586
587
 
587
588
  api.add_operation(:create_domain, Seahorse::Model::Operation.new.tap do |o|
@@ -608,6 +609,7 @@ module Aws::CloudSearch
608
609
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
609
610
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
610
611
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
612
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
611
613
  end)
612
614
 
613
615
  api.add_operation(:define_expression, Seahorse::Model::Operation.new.tap do |o|
@@ -621,6 +623,7 @@ module Aws::CloudSearch
621
623
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
622
624
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
623
625
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
626
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
624
627
  end)
625
628
 
626
629
  api.add_operation(:define_index_field, Seahorse::Model::Operation.new.tap do |o|
@@ -634,6 +637,7 @@ module Aws::CloudSearch
634
637
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
635
638
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
636
639
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
640
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
637
641
  end)
638
642
 
639
643
  api.add_operation(:define_suggester, Seahorse::Model::Operation.new.tap do |o|
@@ -647,6 +651,7 @@ module Aws::CloudSearch
647
651
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
648
652
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
649
653
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
654
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
650
655
  end)
651
656
 
652
657
  api.add_operation(:delete_analysis_scheme, Seahorse::Model::Operation.new.tap do |o|
@@ -659,6 +664,7 @@ module Aws::CloudSearch
659
664
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
660
665
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
661
666
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
667
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
662
668
  end)
663
669
 
664
670
  api.add_operation(:delete_domain, Seahorse::Model::Operation.new.tap do |o|
@@ -681,6 +687,7 @@ module Aws::CloudSearch
681
687
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
682
688
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
683
689
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
690
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
684
691
  end)
685
692
 
686
693
  api.add_operation(:delete_index_field, Seahorse::Model::Operation.new.tap do |o|
@@ -693,6 +700,7 @@ module Aws::CloudSearch
693
700
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
694
701
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
695
702
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
703
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
696
704
  end)
697
705
 
698
706
  api.add_operation(:delete_suggester, Seahorse::Model::Operation.new.tap do |o|
@@ -705,6 +713,7 @@ module Aws::CloudSearch
705
713
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
706
714
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
707
715
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
716
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
708
717
  end)
709
718
 
710
719
  api.add_operation(:describe_analysis_schemes, Seahorse::Model::Operation.new.tap do |o|
@@ -819,6 +828,7 @@ module Aws::CloudSearch
819
828
  o.errors << Shapes::ShapeRef.new(shape: BaseException)
820
829
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
821
830
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
831
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
822
832
  end)
823
833
 
824
834
  api.add_operation(:list_domain_names, Seahorse::Model::Operation.new.tap do |o|
@@ -871,6 +881,7 @@ module Aws::CloudSearch
871
881
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
872
882
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
873
883
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
884
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
874
885
  end)
875
886
 
876
887
  api.add_operation(:update_service_access_policies, Seahorse::Model::Operation.new.tap do |o|
@@ -884,6 +895,7 @@ module Aws::CloudSearch
884
895
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
885
896
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
886
897
  o.errors << Shapes::ShapeRef.new(shape: InvalidTypeException)
898
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
887
899
  end)
888
900
  end
889
901
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudsearch/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudSearch
50
50
 
51
- GEM_VERSION = '1.32.0'
51
+ GEM_VERSION = '1.36.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.0
4
+ version: 1.36.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.119.0
22
+ version: 3.122.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.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="