aws-sdk-cloudsearch 1.33.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d698a798a296512a0ca31c1d0e704f589daee5cfe49d77b9dac0dbd8d992d243
4
- data.tar.gz: 01db68f73652239f01eb7a63e6d82a7a82582b068d0cb4bb41c3a47ebb280273
3
+ metadata.gz: '08964a9b1edc98db38f158e3be927858ccff150231bf9053e2e4a74aa25f682c'
4
+ data.tar.gz: 20fe7ab3869d09cb3f5d82212f076e3903697360e8a54bbc5ca82085b7747695
5
5
  SHA512:
6
- metadata.gz: b095a327537baf28ccb419320dffa725a475e320b68572e0cc1dd1d8b1cc786716963d9958a4753cbb7631052ac9ec570b044fcf5b51deac7fb92eac29ff1458
7
- data.tar.gz: cfc1e3ad9631bcaa7a660c149c0ffae0a978695b4a7ef64cdc121a83a48b47b8857ee5711481adad251bd0b53c89a43e8ab6b1c1315a610af25004abe66cf0bc
6
+ metadata.gz: 15aac732647c9a22881e78415a3a68087061b6cd4904a23f1735f5d7480ec2e4382bc6ff67839445ddd4c3ddd29283c1d74ceca604f56f04e1c5e4c6fb7fe237
7
+ data.tar.gz: 11710e5fab17ce0a8edb5e3203679d80a38b6be431b5e9fc3f4a6b2e4da2547f2f0853ea25da8f2806e628044da0cb518760d89f73bf0f0254d07e03ede5baac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.36.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.35.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.34.0 (2021-10-12)
20
+ ------------------
21
+
22
+ * Feature - Adds an additional validation exception for Amazon CloudSearch configuration APIs for better error handling.
23
+
4
24
  1.33.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.37.0
@@ -119,7 +119,9 @@ module Aws::CloudSearch
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::CloudSearch
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -1845,7 +1856,7 @@ module Aws::CloudSearch
1845
1856
  params: params,
1846
1857
  config: config)
1847
1858
  context[:gem_name] = 'aws-sdk-cloudsearch'
1848
- context[:gem_version] = '1.33.0'
1859
+ context[:gem_version] = '1.37.0'
1849
1860
  Seahorse::Client::Request.new(handlers, context)
1850
1861
  end
1851
1862
 
@@ -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.33.0'
51
+ GEM_VERSION = '1.37.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.33.0
4
+ version: 1.37.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement