aws-sdk-elasticsearchservice 1.21.0 → 1.22.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/lib/aws-sdk-elasticsearchservice.rb +1 -1
- data/lib/aws-sdk-elasticsearchservice/client.rb +1 -1
- data/lib/aws-sdk-elasticsearchservice/client_api.rb +3 -0
- data/lib/aws-sdk-elasticsearchservice/errors.rb +16 -0
- data/lib/aws-sdk-elasticsearchservice/types.rb +11 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a39446ae60648039f1131020f6b47708f2e4ba5
|
4
|
+
data.tar.gz: acb3424bef57be374e60d3e9b8afcb45d56a65f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c63b75484b69c457032db3515fcee417b7225e5fcc41644aa021293fcb4079783f2929a325e6a5a5d0e4435c304aa0c88c59629e8814f9a7a4a442926e21b327
|
7
|
+
data.tar.gz: 4cb7490c04739c3f53a377ea0a9c3ba39e88640d8273a7ef46b6b943ea73b87c6b0542334e5a2f7ee41366eef757f4b509b6d1c8369c768b94fc8fd8fa84d373
|
@@ -1646,7 +1646,7 @@ module Aws::ElasticsearchService
|
|
1646
1646
|
params: params,
|
1647
1647
|
config: config)
|
1648
1648
|
context[:gem_name] = 'aws-sdk-elasticsearchservice'
|
1649
|
-
context[:gem_version] = '1.
|
1649
|
+
context[:gem_version] = '1.22.0'
|
1650
1650
|
Seahorse::Client::Request.new(handlers, context)
|
1651
1651
|
end
|
1652
1652
|
|
@@ -188,6 +188,9 @@ module Aws::ElasticsearchService
|
|
188
188
|
AdvancedOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
|
189
189
|
AdvancedOptionsStatus.struct_class = Types::AdvancedOptionsStatus
|
190
190
|
|
191
|
+
BaseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
192
|
+
BaseException.struct_class = Types::BaseException
|
193
|
+
|
191
194
|
CancelElasticsearchServiceSoftwareUpdateRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
192
195
|
CancelElasticsearchServiceSoftwareUpdateRequest.struct_class = Types::CancelElasticsearchServiceSoftwareUpdateRequest
|
193
196
|
|
@@ -10,5 +10,21 @@ module Aws::ElasticsearchService
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class BaseException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::ElasticsearchService::Types::BaseException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def message
|
24
|
+
@message || @data[:message]
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
13
29
|
end
|
14
30
|
end
|
@@ -117,6 +117,17 @@ module Aws::ElasticsearchService
|
|
117
117
|
include Aws::Structure
|
118
118
|
end
|
119
119
|
|
120
|
+
# An error occurred while processing the request.
|
121
|
+
#
|
122
|
+
# @!attribute [rw] message
|
123
|
+
# A description of the error.
|
124
|
+
# @return [String]
|
125
|
+
#
|
126
|
+
class BaseException < Struct.new(
|
127
|
+
:message)
|
128
|
+
include Aws::Structure
|
129
|
+
end
|
130
|
+
|
120
131
|
# Container for the parameters to the
|
121
132
|
# `CancelElasticsearchServiceSoftwareUpdate` operation. Specifies the
|
122
133
|
# name of the Elasticsearch domain that you wish to cancel a service
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticsearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.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: 2019-05-
|
11
|
+
date: 2019-05-21 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.53.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.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|