aws-sdk-cloudsearch 1.29.0 → 1.30.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: e132ba8fad01f7225ff91f7614d2ab3a5efcbbf09f68603af9d14ad3f37b7e3c
4
- data.tar.gz: 569118f20645a0e84d52585d4d7054a54612df20268223caf88cdaaf82fb4330
3
+ metadata.gz: 3e6e8b91a7d331b3afe5468229464c2d451a23bc157cfc5358c695c861c3c027
4
+ data.tar.gz: 83e010f204c34b7c80dbda54c2b17848afbf968e205c0d6ae16268a3049dadf1
5
5
  SHA512:
6
- metadata.gz: ba632c8c983a445203e6045904bb85bc8806db643a561b019bc7152a3f0c5065f479eba3306d9e53a7e59a6bac1003f92da48ad2f027fe14cd06ed358a66ba67
7
- data.tar.gz: '0792dd55d5a935a8870048e7f510f0853ac465a7a7bb83731b897904f77781f3686db5c77088c4ea91325448c20ca3b76ece02703019c807382c8bc2c042c28a'
6
+ metadata.gz: 8113ff7d854f68a3ba712456878f24fc96f77546ef08f4a9d9106a35255c1ef9be25ad973c4004f9ebc527fd9b19f7aa8c13538bd41478514c8d70e4c0d2cfd6
7
+ data.tar.gz: 768e9a60de0be797c3a18300e81517e0a28d8e0d949f77c9899395495c3a8aad5e7a0f5fff7407c0dfefc8cff16e376402169470ea54977715c46c157d47ab26
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2021-06-23)
5
+ ------------------
6
+
7
+ * Feature - This release replaces previous generation CloudSearch instances with equivalent new instances that provide better stability at the same price.
8
+
4
9
  1.29.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -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.29.0'
51
+ GEM_VERSION = '1.30.0'
52
52
 
53
53
  end
@@ -1466,7 +1466,7 @@ module Aws::CloudSearch
1466
1466
  #
1467
1467
  # @example Response structure
1468
1468
  #
1469
- # resp.scaling_parameters.options.desired_instance_type #=> String, one of "search.m1.small", "search.m1.large", "search.m2.xlarge", "search.m2.2xlarge", "search.m3.medium", "search.m3.large", "search.m3.xlarge", "search.m3.2xlarge", "search.small", "search.medium", "search.large", "search.xlarge", "search.2xlarge"
1469
+ # resp.scaling_parameters.options.desired_instance_type #=> String, one of "search.m1.small", "search.m1.large", "search.m2.xlarge", "search.m2.2xlarge", "search.m3.medium", "search.m3.large", "search.m3.xlarge", "search.m3.2xlarge", "search.small", "search.medium", "search.large", "search.xlarge", "search.2xlarge", "search.previousgeneration.small", "search.previousgeneration.large", "search.previousgeneration.xlarge", "search.previousgeneration.2xlarge"
1470
1470
  # resp.scaling_parameters.options.desired_replication_count #=> Integer
1471
1471
  # resp.scaling_parameters.options.desired_partition_count #=> Integer
1472
1472
  # resp.scaling_parameters.status.creation_date #=> Time
@@ -1763,7 +1763,7 @@ module Aws::CloudSearch
1763
1763
  # resp = client.update_scaling_parameters({
1764
1764
  # domain_name: "DomainName", # required
1765
1765
  # scaling_parameters: { # required
1766
- # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge
1766
+ # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
1767
1767
  # desired_replication_count: 1,
1768
1768
  # desired_partition_count: 1,
1769
1769
  # },
@@ -1771,7 +1771,7 @@ module Aws::CloudSearch
1771
1771
  #
1772
1772
  # @example Response structure
1773
1773
  #
1774
- # resp.scaling_parameters.options.desired_instance_type #=> String, one of "search.m1.small", "search.m1.large", "search.m2.xlarge", "search.m2.2xlarge", "search.m3.medium", "search.m3.large", "search.m3.xlarge", "search.m3.2xlarge", "search.small", "search.medium", "search.large", "search.xlarge", "search.2xlarge"
1774
+ # resp.scaling_parameters.options.desired_instance_type #=> String, one of "search.m1.small", "search.m1.large", "search.m2.xlarge", "search.m2.2xlarge", "search.m3.medium", "search.m3.large", "search.m3.xlarge", "search.m3.2xlarge", "search.small", "search.medium", "search.large", "search.xlarge", "search.2xlarge", "search.previousgeneration.small", "search.previousgeneration.large", "search.previousgeneration.xlarge", "search.previousgeneration.2xlarge"
1775
1775
  # resp.scaling_parameters.options.desired_replication_count #=> Integer
1776
1776
  # resp.scaling_parameters.options.desired_partition_count #=> Integer
1777
1777
  # resp.scaling_parameters.status.creation_date #=> Time
@@ -1845,7 +1845,7 @@ module Aws::CloudSearch
1845
1845
  params: params,
1846
1846
  config: config)
1847
1847
  context[:gem_name] = 'aws-sdk-cloudsearch'
1848
- context[:gem_version] = '1.29.0'
1848
+ context[:gem_version] = '1.30.0'
1849
1849
  Seahorse::Client::Request.new(handlers, context)
1850
1850
  end
1851
1851
 
@@ -118,6 +118,7 @@ module Aws::CloudSearch
118
118
  PartitionCount = Shapes::IntegerShape.new(name: 'PartitionCount')
119
119
  PartitionInstanceType = Shapes::StringShape.new(name: 'PartitionInstanceType')
120
120
  PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
121
+ ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
121
122
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
122
123
  ScalingParameters = Shapes::StructureShape.new(name: 'ScalingParameters')
123
124
  ScalingParametersStatus = Shapes::StructureShape.new(name: 'ScalingParametersStatus')
@@ -482,6 +483,8 @@ module Aws::CloudSearch
482
483
  OptionStatus.add_member(:pending_deletion, Shapes::ShapeRef.new(shape: Boolean, location_name: "PendingDeletion"))
483
484
  OptionStatus.struct_class = Types::OptionStatus
484
485
 
486
+ ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
487
+
485
488
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
486
489
 
487
490
  ScalingParameters.add_member(:desired_instance_type, Shapes::ShapeRef.new(shape: PartitionInstanceType, location_name: "DesiredInstanceType"))
@@ -590,6 +593,8 @@ module Aws::CloudSearch
590
593
  o.errors << Shapes::ShapeRef.new(shape: BaseException)
591
594
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
592
595
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
596
+ o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
597
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
593
598
  end)
594
599
 
595
600
  api.add_operation(:define_analysis_scheme, Seahorse::Model::Operation.new.tap do |o|
@@ -2,7 +2,7 @@
2
2
  # WARNING ABOUT GENERATED CODE
3
3
  #
4
4
  # This file is generated. See the contributing for info on making contributions:
5
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
6
6
  #
7
7
  # WARNING ABOUT GENERATED CODE
8
8
 
@@ -32,6 +32,7 @@ module Aws::CloudSearch
32
32
  # * {InternalException}
33
33
  # * {InvalidTypeException}
34
34
  # * {LimitExceededException}
35
+ # * {ResourceAlreadyExistsException}
35
36
  # * {ResourceNotFoundException}
36
37
  # * {ValidationException}
37
38
  #
@@ -101,6 +102,16 @@ module Aws::CloudSearch
101
102
  end
102
103
  end
103
104
 
105
+ class ResourceAlreadyExistsException < ServiceError
106
+
107
+ # @param [Seahorse::Client::RequestContext] context
108
+ # @param [String] message
109
+ # @param [Aws::CloudSearch::Types::ResourceAlreadyExistsException] data
110
+ def initialize(context, message, data = Aws::EmptyStructure.new)
111
+ super(context, message, data)
112
+ end
113
+ end
114
+
104
115
  class ResourceNotFoundException < ServiceError
105
116
 
106
117
  # @param [Seahorse::Client::RequestContext] context
@@ -2268,6 +2268,11 @@ module Aws::CloudSearch
2268
2268
  include Aws::Structure
2269
2269
  end
2270
2270
 
2271
+ # The request was rejected because it attempted to create a resource
2272
+ # that already exists.
2273
+ #
2274
+ class ResourceAlreadyExistsException < Aws::EmptyStructure; end
2275
+
2271
2276
  # The request was rejected because it attempted to reference a resource
2272
2277
  # that does not exist.
2273
2278
  #
@@ -2280,7 +2285,7 @@ module Aws::CloudSearch
2280
2285
  # data as a hash:
2281
2286
  #
2282
2287
  # {
2283
- # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge
2288
+ # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
2284
2289
  # desired_replication_count: 1,
2285
2290
  # desired_partition_count: 1,
2286
2291
  # }
@@ -2615,7 +2620,7 @@ module Aws::CloudSearch
2615
2620
  # {
2616
2621
  # domain_name: "DomainName", # required
2617
2622
  # scaling_parameters: { # required
2618
- # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge
2623
+ # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
2619
2624
  # desired_replication_count: 1,
2620
2625
  # desired_partition_count: 1,
2621
2626
  # },
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.29.0
4
+ version: 1.30.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-cloudsearch
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-cloudsearch/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearch
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearch/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon CloudSearch