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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -2
  3. data/lib/aws/core.rb +72 -70
  4. data/lib/aws/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ddc1fc27301f123ea7c0bfe090476056616ee881
4
- data.tar.gz: 3c3038d26494294eee02b5e67274dbe09a47459e
3
+ metadata.gz: f388b0f220a45fcabf17c8b632e08281f79a62ac
4
+ data.tar.gz: 507769cacf19bf8f8e64c8735337efc83787add9
5
5
  SHA512:
6
- metadata.gz: 91dcd45dd3b675a7955191b16087359f57ccd15dfa75467a9ed7ff450a7336c355d5740eda5ca6c2fea4a33fb515b1f31fd87c68df53938e51dea9b92851224a
7
- data.tar.gz: ca858dbb1f5b6dd36352af48c291089ed413a7041bb82a3b5d8f5f86c5fa52869d4e3a6b6686f8cddf83ac7681cd0ad447ef54f163c32e1d3f1aff217dbc86f8
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>
@@ -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
- autoload :Errors, 'aws/errors'
150
- autoload :Record, 'aws/record'
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, 'aws/core/async_handle'
155
- autoload :Cacheable, 'aws/core/cacheable'
156
- autoload :Client, 'aws/core/client'
157
- autoload :Collection, 'aws/core/collection'
158
- autoload :Configuration, 'aws/core/configuration'
159
- autoload :CredentialProviders, 'aws/core/credential_providers'
160
- autoload :Data, 'aws/core/data'
161
- autoload :Deprecations, 'aws/core/deprecations'
162
- autoload :IndifferentHash, 'aws/core/indifferent_hash'
163
- autoload :Inflection, 'aws/core/inflection'
164
- autoload :JSONParser, 'aws/core/json_parser'
165
-
166
- autoload :JSONClient, 'aws/core/json_client'
167
- autoload :JSONRequestBuilder, 'aws/core/json_request_builder'
168
- autoload :JSONResponseParser, 'aws/core/json_response_parser'
169
-
170
- autoload :LazyErrorClasses, 'aws/core/lazy_error_classes'
171
- autoload :LogFormatter, 'aws/core/log_formatter'
172
- autoload :MetaUtils, 'aws/core/meta_utils'
173
- autoload :ManagedFile, 'aws/core/managed_file'
174
- autoload :Model, 'aws/core/model'
175
- autoload :Naming, 'aws/core/naming'
176
- autoload :OptionGrammar, 'aws/core/option_grammar'
177
- autoload :PageResult, 'aws/core/page_result'
178
- autoload :Policy, 'aws/core/policy'
179
-
180
- autoload :QueryClient, 'aws/core/query_client'
181
- autoload :QueryRequestBuilder, 'aws/core/query_request_builder'
182
- autoload :QueryResponseParser, 'aws/core/query_response_parser'
183
-
184
- autoload :Region, 'aws/core/region'
185
- autoload :RegionCollection, 'aws/core/region_collection'
186
-
187
- autoload :Resource, 'aws/core/resource'
188
- autoload :ResourceCache, 'aws/core/resource_cache'
189
- autoload :Response, 'aws/core/response'
190
- autoload :ResponseCache, 'aws/core/response_cache'
191
-
192
- autoload :RESTClient, 'aws/core/rest_xml_client'
193
- autoload :RESTJSONClient, 'aws/core/rest_json_client'
194
- autoload :RESTXMLClient, 'aws/core/rest_xml_client'
195
- autoload :RESTRequestBuilder, 'aws/core/rest_request_builder'
196
- autoload :RESTResponseParser, 'aws/core/rest_response_parser'
197
-
198
- autoload :ServiceInterface, 'aws/core/service_interface'
199
- autoload :Signer, 'aws/core/signer'
200
- autoload :UriEscape, 'aws/core/uri_escape'
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, 'aws/core/options/json_serializer'
204
- autoload :XMLSerializer, 'aws/core/options/xml_serializer'
205
- autoload :Validator, 'aws/core/options/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, 'aws/core/signature/version_2'
210
- autoload :Version3, 'aws/core/signature/version_3'
211
- autoload :Version3HTTPS, 'aws/core/signature/version_3_https'
212
- autoload :Version4, 'aws/core/signature/version_4'
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, 'aws/core/xml/parser'
218
- autoload :Grammar, 'aws/core/xml/grammar'
219
- autoload :Stub, 'aws/core/xml/stub'
220
- autoload :Frame, 'aws/core/xml/frame'
221
- autoload :RootFrame, 'aws/core/xml/root_frame'
222
- autoload :FrameStack, 'aws/core/xml/frame_stack'
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, 'aws/core/xml/sax_handlers/nokogiri'
226
- autoload :REXML, 'aws/core/xml/sax_handlers/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, 'aws/core/http/connection_pool'
233
- autoload :Handler, 'aws/core/http/handler'
234
- autoload :NetHttpHandler, 'aws/core/http/net_http_handler'
235
- autoload :Request, 'aws/core/http/request'
236
- autoload :Response, 'aws/core/http/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
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.28.0'
16
+ VERSION = '1.28.1'
17
17
  end
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.0
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-22 00:00:00.000000000 Z
11
+ date: 2013-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: uuidtools