aws-sdk-cloudsearch 1.29.0 → 1.33.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearch/client.rb +4 -4
- data/lib/aws-sdk-cloudsearch/client_api.rb +5 -0
- data/lib/aws-sdk-cloudsearch/customizations.rb +1 -1
- data/lib/aws-sdk-cloudsearch/errors.rb +11 -0
- data/lib/aws-sdk-cloudsearch/types.rb +7 -2
- data/lib/aws-sdk-cloudsearch.rb +1 -1
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d698a798a296512a0ca31c1d0e704f589daee5cfe49d77b9dac0dbd8d992d243
|
4
|
+
data.tar.gz: 01db68f73652239f01eb7a63e6d82a7a82582b068d0cb4bb41c3a47ebb280273
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b095a327537baf28ccb419320dffa725a475e320b68572e0cc1dd1d8b1cc786716963d9958a4753cbb7631052ac9ec570b044fcf5b51deac7fb92eac29ff1458
|
7
|
+
data.tar.gz: cfc1e3ad9631bcaa7a660c149c0ffae0a978695b4a7ef64cdc121a83a48b47b8857ee5711481adad251bd0b53c89a43e8ab6b1c1315a610af25004abe66cf0bc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.33.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.32.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.31.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.30.0 (2021-06-23)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release replaces previous generation CloudSearch instances with equivalent new instances that provide better stability at the same price.
|
23
|
+
|
4
24
|
1.29.0 (2021-03-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.33.0
|
@@ -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.
|
1848
|
+
context[:gem_version] = '1.33.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/
|
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
|
# },
|
data/lib/aws-sdk-cloudsearch.rb
CHANGED
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.
|
4
|
+
version: 1.33.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-
|
11
|
+
date: 2021-09-01 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.
|
22
|
+
version: 3.120.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.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -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/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
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:
|
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
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
|