aws-sdk 1.28.0 → 1.28.1
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/README.md +5 -2
- data/lib/aws/core.rb +72 -70
- data/lib/aws/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f388b0f220a45fcabf17c8b632e08281f79a62ac
|
4
|
+
data.tar.gz: 507769cacf19bf8f8e64c8735337efc83787add9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae8e769aea85d0f65fe7746731c698e6d24a9b23bb1d9d2e77266026de8e946e828686e4ea5d404eec2331a970862d9a1b21a90c0177af08f512b4c32af961e3
|
7
|
+
data.tar.gz: dca4c979ce5377db3de3646103a94c6100a01dd2d849f6097431383260913186dc846a44fbec8bd84f12cf401deb9aef7aba287f88d18b37913e6253e0cc6c91
|
data/README.md
CHANGED
@@ -190,9 +190,12 @@ The SDK currently supports the following services:
|
|
190
190
|
<td>AWS OpsWorks</td>
|
191
191
|
</tr>
|
192
192
|
<tr>
|
193
|
-
<td>AWS::RDS</td>
|
193
|
+
<td rowspan="2">AWS::RDS</td>
|
194
194
|
<td>2013-05-15</td>
|
195
|
-
<td>Amazon Relational Database Service (Beta)</td>
|
195
|
+
<td rowspan="2">Amazon Relational Database Service (Beta)</td>
|
196
|
+
</tr>
|
197
|
+
<tr>
|
198
|
+
<td>2013-09-09</td>
|
196
199
|
</tr>
|
197
200
|
<tr>
|
198
201
|
<td>AWS::Redshift</td>
|
data/lib/aws/core.rb
CHANGED
@@ -11,7 +11,6 @@
|
|
11
11
|
# ANY KIND, either express or implied. See the License for the specific
|
12
12
|
# language governing permissions and limitations under the License.
|
13
13
|
|
14
|
-
require 'aws/version'
|
15
14
|
require 'set'
|
16
15
|
|
17
16
|
# AWS is the root module for all of the Amazon Web Services. It is also
|
@@ -146,94 +145,97 @@ module AWS
|
|
146
145
|
# @api private
|
147
146
|
ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
|
148
147
|
|
149
|
-
|
150
|
-
|
148
|
+
SRC = ROOT + '/lib/aws'
|
149
|
+
|
150
|
+
autoload :Errors, "#{SRC}/errors"
|
151
|
+
autoload :Record, "#{SRC}/record"
|
152
|
+
autoload :VERSION, "#{SRC}/version"
|
151
153
|
|
152
154
|
module Core
|
153
155
|
|
154
|
-
autoload :AsyncHandle,
|
155
|
-
autoload :Cacheable,
|
156
|
-
autoload :Client,
|
157
|
-
autoload :Collection,
|
158
|
-
autoload :Configuration,
|
159
|
-
autoload :CredentialProviders,
|
160
|
-
autoload :Data,
|
161
|
-
autoload :Deprecations,
|
162
|
-
autoload :IndifferentHash,
|
163
|
-
autoload :Inflection,
|
164
|
-
autoload :JSONParser,
|
165
|
-
|
166
|
-
autoload :JSONClient,
|
167
|
-
autoload :JSONRequestBuilder,
|
168
|
-
autoload :JSONResponseParser,
|
169
|
-
|
170
|
-
autoload :LazyErrorClasses,
|
171
|
-
autoload :LogFormatter,
|
172
|
-
autoload :MetaUtils,
|
173
|
-
autoload :ManagedFile,
|
174
|
-
autoload :Model,
|
175
|
-
autoload :Naming,
|
176
|
-
autoload :OptionGrammar,
|
177
|
-
autoload :PageResult,
|
178
|
-
autoload :Policy,
|
179
|
-
|
180
|
-
autoload :QueryClient,
|
181
|
-
autoload :QueryRequestBuilder,
|
182
|
-
autoload :QueryResponseParser,
|
183
|
-
|
184
|
-
autoload :Region,
|
185
|
-
autoload :RegionCollection,
|
186
|
-
|
187
|
-
autoload :Resource,
|
188
|
-
autoload :ResourceCache,
|
189
|
-
autoload :Response,
|
190
|
-
autoload :ResponseCache,
|
191
|
-
|
192
|
-
autoload :RESTClient,
|
193
|
-
autoload :RESTJSONClient,
|
194
|
-
autoload :RESTXMLClient,
|
195
|
-
autoload :RESTRequestBuilder,
|
196
|
-
autoload :RESTResponseParser,
|
197
|
-
|
198
|
-
autoload :ServiceInterface,
|
199
|
-
autoload :Signer,
|
200
|
-
autoload :UriEscape,
|
156
|
+
autoload :AsyncHandle, "#{SRC}/core/async_handle"
|
157
|
+
autoload :Cacheable, "#{SRC}/core/cacheable"
|
158
|
+
autoload :Client, "#{SRC}/core/client"
|
159
|
+
autoload :Collection, "#{SRC}/core/collection"
|
160
|
+
autoload :Configuration, "#{SRC}/core/configuration"
|
161
|
+
autoload :CredentialProviders, "#{SRC}/core/credential_providers"
|
162
|
+
autoload :Data, "#{SRC}/core/data"
|
163
|
+
autoload :Deprecations, "#{SRC}/core/deprecations"
|
164
|
+
autoload :IndifferentHash, "#{SRC}/core/indifferent_hash"
|
165
|
+
autoload :Inflection, "#{SRC}/core/inflection"
|
166
|
+
autoload :JSONParser, "#{SRC}/core/json_parser"
|
167
|
+
|
168
|
+
autoload :JSONClient, "#{SRC}/core/json_client"
|
169
|
+
autoload :JSONRequestBuilder, "#{SRC}/core/json_request_builder"
|
170
|
+
autoload :JSONResponseParser, "#{SRC}/core/json_response_parser"
|
171
|
+
|
172
|
+
autoload :LazyErrorClasses, "#{SRC}/core/lazy_error_classes"
|
173
|
+
autoload :LogFormatter, "#{SRC}/core/log_formatter"
|
174
|
+
autoload :MetaUtils, "#{SRC}/core/meta_utils"
|
175
|
+
autoload :ManagedFile, "#{SRC}/core/managed_file"
|
176
|
+
autoload :Model, "#{SRC}/core/model"
|
177
|
+
autoload :Naming, "#{SRC}/core/naming"
|
178
|
+
autoload :OptionGrammar, "#{SRC}/core/option_grammar"
|
179
|
+
autoload :PageResult, "#{SRC}/core/page_result"
|
180
|
+
autoload :Policy, "#{SRC}/core/policy"
|
181
|
+
|
182
|
+
autoload :QueryClient, "#{SRC}/core/query_client"
|
183
|
+
autoload :QueryRequestBuilder, "#{SRC}/core/query_request_builder"
|
184
|
+
autoload :QueryResponseParser, "#{SRC}/core/query_response_parser"
|
185
|
+
|
186
|
+
autoload :Region, "#{SRC}/core/region"
|
187
|
+
autoload :RegionCollection, "#{SRC}/core/region_collection"
|
188
|
+
|
189
|
+
autoload :Resource, "#{SRC}/core/resource"
|
190
|
+
autoload :ResourceCache, "#{SRC}/core/resource_cache"
|
191
|
+
autoload :Response, "#{SRC}/core/response"
|
192
|
+
autoload :ResponseCache, "#{SRC}/core/response_cache"
|
193
|
+
|
194
|
+
autoload :RESTClient, "#{SRC}/core/rest_xml_client"
|
195
|
+
autoload :RESTJSONClient, "#{SRC}/core/rest_json_client"
|
196
|
+
autoload :RESTXMLClient, "#{SRC}/core/rest_xml_client"
|
197
|
+
autoload :RESTRequestBuilder, "#{SRC}/core/rest_request_builder"
|
198
|
+
autoload :RESTResponseParser, "#{SRC}/core/rest_response_parser"
|
199
|
+
|
200
|
+
autoload :ServiceInterface, "#{SRC}/core/service_interface"
|
201
|
+
autoload :Signer, "#{SRC}/core/signer"
|
202
|
+
autoload :UriEscape, "#{SRC}/core/uri_escape"
|
201
203
|
|
202
204
|
module Options
|
203
|
-
autoload :JSONSerializer,
|
204
|
-
autoload :XMLSerializer,
|
205
|
-
autoload :Validator,
|
205
|
+
autoload :JSONSerializer, "#{SRC}/core/options/json_serializer"
|
206
|
+
autoload :XMLSerializer, "#{SRC}/core/options/xml_serializer"
|
207
|
+
autoload :Validator, "#{SRC}/core/options/validator"
|
206
208
|
end
|
207
209
|
|
208
210
|
module Signature
|
209
|
-
autoload :Version2,
|
210
|
-
autoload :Version3,
|
211
|
-
autoload :Version3HTTPS,
|
212
|
-
autoload :Version4,
|
211
|
+
autoload :Version2, "#{SRC}/core/signature/version_2"
|
212
|
+
autoload :Version3, "#{SRC}/core/signature/version_3"
|
213
|
+
autoload :Version3HTTPS, "#{SRC}/core/signature/version_3_https"
|
214
|
+
autoload :Version4, "#{SRC}/core/signature/version_4"
|
213
215
|
end
|
214
216
|
|
215
217
|
module XML
|
216
218
|
|
217
|
-
autoload :Parser,
|
218
|
-
autoload :Grammar,
|
219
|
-
autoload :Stub,
|
220
|
-
autoload :Frame,
|
221
|
-
autoload :RootFrame,
|
222
|
-
autoload :FrameStack,
|
219
|
+
autoload :Parser, "#{SRC}/core/xml/parser"
|
220
|
+
autoload :Grammar, "#{SRC}/core/xml/grammar"
|
221
|
+
autoload :Stub, "#{SRC}/core/xml/stub"
|
222
|
+
autoload :Frame, "#{SRC}/core/xml/frame"
|
223
|
+
autoload :RootFrame, "#{SRC}/core/xml/root_frame"
|
224
|
+
autoload :FrameStack, "#{SRC}/core/xml/frame_stack"
|
223
225
|
|
224
226
|
module SaxHandlers
|
225
|
-
autoload :Nokogiri,
|
226
|
-
autoload :REXML,
|
227
|
+
autoload :Nokogiri, "#{SRC}/core/xml/sax_handlers/nokogiri"
|
228
|
+
autoload :REXML, "#{SRC}/core/xml/sax_handlers/rexml"
|
227
229
|
end
|
228
230
|
|
229
231
|
end
|
230
232
|
|
231
233
|
module Http
|
232
|
-
autoload :ConnectionPool,
|
233
|
-
autoload :Handler,
|
234
|
-
autoload :NetHttpHandler,
|
235
|
-
autoload :Request,
|
236
|
-
autoload :Response,
|
234
|
+
autoload :ConnectionPool, "#{SRC}/core/http/connection_pool"
|
235
|
+
autoload :Handler, "#{SRC}/core/http/handler"
|
236
|
+
autoload :NetHttpHandler, "#{SRC}/core/http/net_http_handler"
|
237
|
+
autoload :Request, "#{SRC}/core/http/request"
|
238
|
+
autoload :Response, "#{SRC}/core/http/response"
|
237
239
|
end
|
238
240
|
|
239
241
|
end
|
data/lib/aws/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.28.
|
4
|
+
version: 1.28.1
|
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: 2013-11-
|
11
|
+
date: 2013-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: uuidtools
|