aws-sdk-v1 1.53.0 → 1.54.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 567b22a0f4ce31448387cc91c200f8f3f3317211
4
- data.tar.gz: 68db09378ab620eb2c42771adbf8071d47bbd564
3
+ metadata.gz: 99cc3c43b9f242437b98a559ad99666e50709b92
4
+ data.tar.gz: 7cb63559555044a4732bbaf229ef8d120a378a66
5
5
  SHA512:
6
- metadata.gz: a37795ad87e529a45bb4324323f9b1a7359e5f597c8eafd9c6149610d062fbb2d5cc14d94fd74b69ae2024569fc6d1f5ba35af755d046d75280921431c05670b
7
- data.tar.gz: 24c90f780949ad9fff251ac6266ad856636208d3b4138c967306c30d9366060c6656b61cd82aab102ee02c887875f776c753b4e5eaf5306ce172421eba1be5b3
6
+ metadata.gz: e5b9feb784ae55d047041c70b6c054d6e03580207e065c1dbcb4009641f4fc0c27be58679b26de012434d4bed1a2156317aaf5dbc406d320c7176091db895274
7
+ data.tar.gz: 2663ec4f188e14684f682344441727f16bb40209fbd0ce5d3cf94516e3e9bff287e890294deeff2a2bee737928d6f01002699d0abd05162266cf66bf6b3d937e
data/bin/aws-rb CHANGED
@@ -61,7 +61,7 @@ OptionParser.new do |opts|
61
61
  options[:color] = value
62
62
  end
63
63
 
64
- opts.on("--profile PROFLIE", "Use a specific profile from your credential file.") do |value|
64
+ opts.on("--profile PROFILE", "Use a specific profile from your credential file.") do |value|
65
65
  options[:profile] = value
66
66
  end
67
67
 
@@ -224,40 +224,6 @@
224
224
  SequenceNumber:
225
225
  :sym: :sequence_number
226
226
  :type: :string
227
- - :name: PutRecords
228
- :method: :put_records
229
- :inputs:
230
- Records:
231
- - :list:
232
- - :structure:
233
- Data:
234
- - :blob
235
- - :required
236
- ExplicitHashKey:
237
- - :string
238
- PartitionKey:
239
- - :string
240
- - :required
241
- - :required
242
- StreamName:
243
- - :string
244
- - :required
245
- SequenceNumberForOrdering:
246
- - :string
247
- :outputs:
248
- Records:
249
- :sym: :records
250
- :type: :hash
251
- :members:
252
- SequenceNumber:
253
- :sym: :sequence_number
254
- :type: :string
255
- ShardId:
256
- :sym: :shard_id
257
- :type: :string
258
- Message:
259
- :sym: :message
260
- :type: :string
261
227
  - :name: RemoveTagsFromStream
262
228
  :method: :remove_tags_from_stream
263
229
  :inputs:
@@ -67,6 +67,8 @@ module AWS
67
67
  # Amazon Virtual Private Cloud (Amazon VPC). Specifies whether
68
68
  # to assign a public IP address to each instance launched in a Amazon VPC.
69
69
  #
70
+ # @option options [String] :placement_tenancy
71
+ #
70
72
  # @return [LaunchConfiguration]
71
73
  #
72
74
  def create name, image, instance_type, options = {}
@@ -88,7 +90,8 @@ module AWS
88
90
  :kernel_id,
89
91
  :ramdisk_id,
90
92
  :block_device_mappings,
91
- :associate_public_ip_address
93
+ :associate_public_ip_address,
94
+ :placement_tenancy,
92
95
  ].each do |opt|
93
96
  client_opts[opt] = options[opt] if options.key?(opt)
94
97
  end
@@ -272,10 +272,9 @@ module AWS
272
272
 
273
273
  def shared_credential_file_path
274
274
  if RUBY_VERSION < '1.9'
275
- raise ArgumentError(
276
- "Must specify the :path to your shared credential file when using"\
277
- " Ruby #{RUBY_VERSION}"
278
- )
275
+ msg = "Must specify the :path to your shared credential file when using"
276
+ msg << " Ruby #{RUBY_VERSION}"
277
+ raise ArgumentError, msg
279
278
  else
280
279
  File.join(Dir.home, '.aws', 'credentials')
281
280
  end
@@ -26,7 +26,7 @@ module AWS
26
26
  # @attr_reader [String] id The stable and unique string identifying
27
27
  # the server certificate.
28
28
  #
29
- # @attr_reader [Time] updload_date The date when the server certificate was
29
+ # @attr_reader [Time] upload_date The date when the server certificate was
30
30
  # uploaded.
31
31
  #
32
32
  # @attr_reader [String] arn The Amazon Resource Name (ARN)
@@ -33,6 +33,8 @@ AWS::Core::Configuration.module_eval do
33
33
 
34
34
  add_option :s3_storage_class, 'STANDARD'
35
35
 
36
+ add_option :s3_cache_object_attributes, false, :boolean => true
37
+
36
38
  add_option :s3_signature_version do |config, value|
37
39
  if config.s3_region.match(/^cn-/)
38
40
  :v4
@@ -287,7 +287,10 @@ module AWS
287
287
  def each_member_in_page(page, &block)
288
288
  super
289
289
  page.contents.each do |content|
290
- yield(S3Object.new(bucket, content.key))
290
+ content_length = content[:size].to_i if content[:size]
291
+ etag = content[:etag]
292
+ last_modified = content[:last_modified]
293
+ yield(S3Object.new(bucket, content.key, { :content_length => content_length, :etag => etag, :last_modified => last_modified}))
291
294
  end
292
295
  end
293
296
 
@@ -72,7 +72,7 @@ module AWS
72
72
  #
73
73
  # ## Streaming Uploads
74
74
  #
75
- # When you call {#write} with an IO-like object, it will be streamed
75
+ # When you call {#write} with an IO-like object, it will be streamed
76
76
  # to S3 in chunks.
77
77
  #
78
78
  # While it is possible to determine the size of many IO objects, you may
@@ -242,6 +242,9 @@ module AWS
242
242
  # @param [Bucket] bucket The bucket this object belongs to.
243
243
  # @param [String] key The object's key.
244
244
  def initialize(bucket, key, opts = {})
245
+ @content_length = opts.delete(:content_length)
246
+ @etag = opts.delete(:etag)
247
+ @last_modified = opts.delete(:last_modified)
245
248
  super
246
249
  @key = key
247
250
  @bucket = bucket
@@ -302,19 +305,19 @@ module AWS
302
305
  #
303
306
  # @return [String] Returns the object's ETag
304
307
  def etag
305
- head[:etag]
308
+ @etag = config.s3_cache_object_attributes && @etag || head[:etag]
306
309
  end
307
310
 
308
311
  # Returns the object's last modified time.
309
312
  #
310
313
  # @return [Time] Returns the object's last modified time.
311
314
  def last_modified
312
- head[:last_modified]
315
+ @last_modified = config.s3_cache_object_attributes && @last_modified || head[:last_modified]
313
316
  end
314
317
 
315
318
  # @return [Integer] Size of the object in bytes.
316
319
  def content_length
317
- head[:content_length]
320
+ @content_length = config.s3_cache_object_attributes && @content_length || head[:content_length]
318
321
  end
319
322
 
320
323
  # @note S3 does not compute content-type. It reports the content-type
@@ -617,11 +620,11 @@ module AWS
617
620
  # part upload is handled. Otherwise, {#write} is much simpler
618
621
  # to use.
619
622
  #
620
- # Note: After you initiate multipart upload and upload one or
621
- # more parts, you must either complete or abort multipart
622
- # upload in order to stop getting charged for storage of the
623
- # uploaded parts. Only after you either complete or abort
624
- # multipart upload, Amazon S3 frees up the parts storage and
623
+ # Note: After you initiate multipart upload and upload one or
624
+ # more parts, you must either complete or abort multipart
625
+ # upload in order to stop getting charged for storage of the
626
+ # uploaded parts. Only after you either complete or abort
627
+ # multipart upload, Amazon S3 frees up the parts storage and
625
628
  # stops charging you for the parts storage.
626
629
  #
627
630
  # @example Uploading an object in two parts
@@ -1196,11 +1199,11 @@ module AWS
1196
1199
  # secure (HTTPS) URL or a plain HTTP url.
1197
1200
  #
1198
1201
  # @option options [String] :content_type Object content type for
1199
- # HTTP PUT. When provided, has to be also added to the request
1202
+ # HTTP PUT. When provided, has to be also added to the request
1200
1203
  # header as a 'content-type' field
1201
1204
  #
1202
1205
  # @option options [String] :content_md5 Object MD5 hash for HTTP PUT.
1203
- # When provided, has to be also added to the request header as a
1206
+ # When provided, has to be also added to the request header as a
1204
1207
  # 'content-md5' field
1205
1208
  #
1206
1209
  # @option options [String] :endpoint Sets the hostname of the
@@ -1347,10 +1350,10 @@ module AWS
1347
1350
 
1348
1351
  multipart_upload(options) do |upload|
1349
1352
  pos = 0
1350
- # We copy in part_size chunks until we read the
1353
+ # We copy in part_size chunks until we read the
1351
1354
  until pos >= source_length
1352
1355
  last_byte = (pos + part_size >= source_length) ? source_length - 1 : pos + part_size - 1
1353
- upload.copy_part(options[:copy_source], options.merge({:copy_source_range => "bytes=#{pos}-#{last_byte}"}))
1356
+ upload.copy_part(options[:copy_source], options.merge({:copy_source_range => "bytes=#{pos}-#{last_byte}"}))
1354
1357
  pos += part_size
1355
1358
  end
1356
1359
  end
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.53.0'
16
+ VERSION = '1.54.0'
17
17
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.53.0
4
+ version: 1.54.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: 2014-09-11 00:00:00.000000000 Z
11
+ date: 2014-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.4.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.4.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.4'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.4'
41
41
  description: |-
@@ -48,64 +48,12 @@ executables:
48
48
  extensions: []
49
49
  extra_rdoc_files: []
50
50
  files:
51
- - ".yardopts"
52
- - LICENSE.txt
53
- - README.md
54
- - bin/aws-rb
55
51
  - ca-bundle.crt
52
+ - rails/init.rb
56
53
  - endpoints.json
57
- - lib/aws-sdk-v1.rb
58
- - lib/aws-sdk.rb
59
- - lib/aws.rb
60
- - lib/aws/api_config/AutoScaling-2011-01-01.yml
61
- - lib/aws/api_config/CloudFormation-2010-05-15.yml
62
- - lib/aws/api_config/CloudFront-2013-05-12.yml
63
- - lib/aws/api_config/CloudFront-2013-08-26.yml
64
- - lib/aws/api_config/CloudFront-2013-09-27.yml
65
- - lib/aws/api_config/CloudFront-2013-11-11.yml
66
- - lib/aws/api_config/CloudFront-2013-11-22.yml
67
- - lib/aws/api_config/CloudFront-2014-01-31.yml
68
- - lib/aws/api_config/CloudFront-2014-05-31.yml
69
- - lib/aws/api_config/CloudSearch-2011-02-01.yml
70
- - lib/aws/api_config/CloudSearch-2013-01-01.yml
71
- - lib/aws/api_config/CloudTrail-2013-11-01.yml
72
- - lib/aws/api_config/CloudWatch-2010-08-01.yml
73
- - lib/aws/api_config/DataPipeline-2012-10-29.yml
74
- - lib/aws/api_config/DirectConnect-2012-10-25.yml
75
- - lib/aws/api_config/DynamoDB-2011-12-05.yml
76
- - lib/aws/api_config/DynamoDB-2012-08-10.yml
77
- - lib/aws/api_config/EC2-2013-08-15.yml
78
- - lib/aws/api_config/EC2-2013-10-01.yml
79
- - lib/aws/api_config/EC2-2013-10-15.yml
80
- - lib/aws/api_config/EC2-2014-02-01.yml
81
- - lib/aws/api_config/EC2-2014-05-01.yml
82
- - lib/aws/api_config/ELB-2012-06-01.yml
83
- - lib/aws/api_config/EMR-2009-03-31.yml
84
- - lib/aws/api_config/ElastiCache-2013-06-15.yml
85
- - lib/aws/api_config/ElastiCache-2014-03-24.yml
86
- - lib/aws/api_config/ElastiCache-2014-07-15.yml
87
- - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
88
- - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
89
- - lib/aws/api_config/Glacier-2012-06-01.yml
90
- - lib/aws/api_config/IAM-2010-05-08.yml
91
- - lib/aws/api_config/ImportExport-2010-06-01.yml
92
- - lib/aws/api_config/Kinesis-2013-12-02.yml
93
- - lib/aws/api_config/OpsWorks-2013-02-18.yml
94
- - lib/aws/api_config/RDS-2013-05-15.yml
95
- - lib/aws/api_config/RDS-2013-09-09.yml
96
- - lib/aws/api_config/Redshift-2012-12-01.yml
97
- - lib/aws/api_config/Route53-2012-12-12.yml
98
- - lib/aws/api_config/Route53-2013-04-01.yml
99
- - lib/aws/api_config/SNS-2010-03-31.yml
100
- - lib/aws/api_config/SQS-2012-11-05.yml
101
- - lib/aws/api_config/STS-2011-06-15.yml
102
- - lib/aws/api_config/SimpleDB-2009-04-15.yml
103
- - lib/aws/api_config/SimpleEmailService-2010-12-01.yml
104
- - lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
105
- - lib/aws/api_config/StorageGateway-2012-06-30.yml
106
- - lib/aws/api_config/StorageGateway-2013-06-30.yml
107
- - lib/aws/api_config/Support-2013-04-15.yml
108
- - lib/aws/auto_scaling.rb
54
+ - .yardopts
55
+ - README.md
56
+ - LICENSE.txt
109
57
  - lib/aws/auto_scaling/activity.rb
110
58
  - lib/aws/auto_scaling/activity_collection.rb
111
59
  - lib/aws/auto_scaling/client.rb
@@ -127,7 +75,7 @@ files:
127
75
  - lib/aws/auto_scaling/scheduled_action_collection.rb
128
76
  - lib/aws/auto_scaling/tag.rb
129
77
  - lib/aws/auto_scaling/tag_collection.rb
130
- - lib/aws/cloud_formation.rb
78
+ - lib/aws/auto_scaling.rb
131
79
  - lib/aws/cloud_formation/client.rb
132
80
  - lib/aws/cloud_formation/config.rb
133
81
  - lib/aws/cloud_formation/errors.rb
@@ -141,19 +89,19 @@ files:
141
89
  - lib/aws/cloud_formation/stack_resource_collection.rb
142
90
  - lib/aws/cloud_formation/stack_resource_summary_collection.rb
143
91
  - lib/aws/cloud_formation/stack_summary_collection.rb
144
- - lib/aws/cloud_front.rb
92
+ - lib/aws/cloud_formation.rb
145
93
  - lib/aws/cloud_front/client.rb
146
94
  - lib/aws/cloud_front/config.rb
147
95
  - lib/aws/cloud_front/errors.rb
148
- - lib/aws/cloud_search.rb
96
+ - lib/aws/cloud_front.rb
149
97
  - lib/aws/cloud_search/client.rb
150
98
  - lib/aws/cloud_search/config.rb
151
99
  - lib/aws/cloud_search/errors.rb
152
- - lib/aws/cloud_trail.rb
100
+ - lib/aws/cloud_search.rb
153
101
  - lib/aws/cloud_trail/client.rb
154
102
  - lib/aws/cloud_trail/config.rb
155
103
  - lib/aws/cloud_trail/errors.rb
156
- - lib/aws/cloud_watch.rb
104
+ - lib/aws/cloud_trail.rb
157
105
  - lib/aws/cloud_watch/alarm.rb
158
106
  - lib/aws/cloud_watch/alarm_collection.rb
159
107
  - lib/aws/cloud_watch/alarm_history_item.rb
@@ -165,14 +113,14 @@ files:
165
113
  - lib/aws/cloud_watch/metric_alarm_collection.rb
166
114
  - lib/aws/cloud_watch/metric_collection.rb
167
115
  - lib/aws/cloud_watch/metric_statistics.rb
168
- - lib/aws/core.rb
116
+ - lib/aws/cloud_watch.rb
169
117
  - lib/aws/core/async_handle.rb
170
118
  - lib/aws/core/cacheable.rb
171
119
  - lib/aws/core/client.rb
172
- - lib/aws/core/collection.rb
173
120
  - lib/aws/core/collection/simple.rb
174
121
  - lib/aws/core/collection/with_limit_and_next_token.rb
175
122
  - lib/aws/core/collection/with_next_token.rb
123
+ - lib/aws/core/collection.rb
176
124
  - lib/aws/core/configuration.rb
177
125
  - lib/aws/core/credential_providers.rb
178
126
  - lib/aws/core/data.rb
@@ -226,8 +174,8 @@ files:
226
174
  - lib/aws/core/signers/version_2.rb
227
175
  - lib/aws/core/signers/version_3.rb
228
176
  - lib/aws/core/signers/version_3_https.rb
229
- - lib/aws/core/signers/version_4.rb
230
177
  - lib/aws/core/signers/version_4/chunk_signed_stream.rb
178
+ - lib/aws/core/signers/version_4.rb
231
179
  - lib/aws/core/uri_escape.rb
232
180
  - lib/aws/core/xml/frame.rb
233
181
  - lib/aws/core/xml/frame_stack.rb
@@ -239,22 +187,22 @@ files:
239
187
  - lib/aws/core/xml/sax_handlers/ox.rb
240
188
  - lib/aws/core/xml/sax_handlers/rexml.rb
241
189
  - lib/aws/core/xml/stub.rb
242
- - lib/aws/data_pipeline.rb
190
+ - lib/aws/core.rb
243
191
  - lib/aws/data_pipeline/client.rb
244
192
  - lib/aws/data_pipeline/config.rb
245
193
  - lib/aws/data_pipeline/errors.rb
246
- - lib/aws/direct_connect.rb
194
+ - lib/aws/data_pipeline.rb
247
195
  - lib/aws/direct_connect/client.rb
248
196
  - lib/aws/direct_connect/config.rb
249
197
  - lib/aws/direct_connect/errors.rb
250
- - lib/aws/dynamo_db.rb
198
+ - lib/aws/direct_connect.rb
251
199
  - lib/aws/dynamo_db/attribute_collection.rb
252
200
  - lib/aws/dynamo_db/batch_get.rb
253
201
  - lib/aws/dynamo_db/batch_write.rb
254
202
  - lib/aws/dynamo_db/binary.rb
255
- - lib/aws/dynamo_db/client.rb
256
203
  - lib/aws/dynamo_db/client/v20111205.rb
257
204
  - lib/aws/dynamo_db/client/v20120810.rb
205
+ - lib/aws/dynamo_db/client.rb
258
206
  - lib/aws/dynamo_db/client_v2.rb
259
207
  - lib/aws/dynamo_db/config.rb
260
208
  - lib/aws/dynamo_db/errors.rb
@@ -268,7 +216,7 @@ files:
268
216
  - lib/aws/dynamo_db/table.rb
269
217
  - lib/aws/dynamo_db/table_collection.rb
270
218
  - lib/aws/dynamo_db/types.rb
271
- - lib/aws/ec2.rb
219
+ - lib/aws/dynamo_db.rb
272
220
  - lib/aws/ec2/attachment.rb
273
221
  - lib/aws/ec2/attachment_collection.rb
274
222
  - lib/aws/ec2/availability_zone.rb
@@ -292,17 +240,17 @@ files:
292
240
  - lib/aws/ec2/image_collection.rb
293
241
  - lib/aws/ec2/instance.rb
294
242
  - lib/aws/ec2/instance_collection.rb
295
- - lib/aws/ec2/internet_gateway.rb
296
243
  - lib/aws/ec2/internet_gateway/attachment.rb
244
+ - lib/aws/ec2/internet_gateway.rb
297
245
  - lib/aws/ec2/internet_gateway_collection.rb
298
246
  - lib/aws/ec2/key_pair.rb
299
247
  - lib/aws/ec2/key_pair_collection.rb
300
- - lib/aws/ec2/network_acl.rb
301
248
  - lib/aws/ec2/network_acl/association.rb
302
249
  - lib/aws/ec2/network_acl/entry.rb
250
+ - lib/aws/ec2/network_acl.rb
303
251
  - lib/aws/ec2/network_acl_collection.rb
304
- - lib/aws/ec2/network_interface.rb
305
252
  - lib/aws/ec2/network_interface/attachment.rb
253
+ - lib/aws/ec2/network_interface.rb
306
254
  - lib/aws/ec2/network_interface_collection.rb
307
255
  - lib/aws/ec2/permission_collection.rb
308
256
  - lib/aws/ec2/region.rb
@@ -313,13 +261,13 @@ files:
313
261
  - lib/aws/ec2/reserved_instances_offering_collection.rb
314
262
  - lib/aws/ec2/resource.rb
315
263
  - lib/aws/ec2/resource_tag_collection.rb
316
- - lib/aws/ec2/route_table.rb
317
264
  - lib/aws/ec2/route_table/association.rb
318
265
  - lib/aws/ec2/route_table/route.rb
266
+ - lib/aws/ec2/route_table.rb
319
267
  - lib/aws/ec2/route_table_collection.rb
320
- - lib/aws/ec2/security_group.rb
321
268
  - lib/aws/ec2/security_group/ip_permission.rb
322
269
  - lib/aws/ec2/security_group/ip_permission_collection.rb
270
+ - lib/aws/ec2/security_group.rb
323
271
  - lib/aws/ec2/security_group_collection.rb
324
272
  - lib/aws/ec2/snapshot.rb
325
273
  - lib/aws/ec2/snapshot_collection.rb
@@ -333,25 +281,25 @@ files:
333
281
  - lib/aws/ec2/volume_collection.rb
334
282
  - lib/aws/ec2/vpc.rb
335
283
  - lib/aws/ec2/vpc_collection.rb
336
- - lib/aws/ec2/vpn_connection.rb
337
284
  - lib/aws/ec2/vpn_connection/telemetry.rb
285
+ - lib/aws/ec2/vpn_connection.rb
338
286
  - lib/aws/ec2/vpn_connection_collection.rb
339
- - lib/aws/ec2/vpn_gateway.rb
340
287
  - lib/aws/ec2/vpn_gateway/attachment.rb
288
+ - lib/aws/ec2/vpn_gateway.rb
341
289
  - lib/aws/ec2/vpn_gateway_collection.rb
342
- - lib/aws/elastic_beanstalk.rb
290
+ - lib/aws/ec2.rb
343
291
  - lib/aws/elastic_beanstalk/client.rb
344
292
  - lib/aws/elastic_beanstalk/config.rb
345
293
  - lib/aws/elastic_beanstalk/errors.rb
346
- - lib/aws/elastic_transcoder.rb
294
+ - lib/aws/elastic_beanstalk.rb
347
295
  - lib/aws/elastic_transcoder/client.rb
348
296
  - lib/aws/elastic_transcoder/config.rb
349
297
  - lib/aws/elastic_transcoder/errors.rb
350
- - lib/aws/elasticache.rb
298
+ - lib/aws/elastic_transcoder.rb
351
299
  - lib/aws/elasticache/client.rb
352
300
  - lib/aws/elasticache/config.rb
353
301
  - lib/aws/elasticache/errors.rb
354
- - lib/aws/elb.rb
302
+ - lib/aws/elasticache.rb
355
303
  - lib/aws/elb/availability_zone_collection.rb
356
304
  - lib/aws/elb/backend_server_policy_collection.rb
357
305
  - lib/aws/elb/client.rb
@@ -365,7 +313,7 @@ files:
365
313
  - lib/aws/elb/load_balancer_collection.rb
366
314
  - lib/aws/elb/load_balancer_policy.rb
367
315
  - lib/aws/elb/load_balancer_policy_collection.rb
368
- - lib/aws/emr.rb
316
+ - lib/aws/elb.rb
369
317
  - lib/aws/emr/client.rb
370
318
  - lib/aws/emr/config.rb
371
319
  - lib/aws/emr/errors.rb
@@ -373,8 +321,8 @@ files:
373
321
  - lib/aws/emr/instance_group_collection.rb
374
322
  - lib/aws/emr/job_flow.rb
375
323
  - lib/aws/emr/job_flow_collection.rb
324
+ - lib/aws/emr.rb
376
325
  - lib/aws/errors.rb
377
- - lib/aws/glacier.rb
378
326
  - lib/aws/glacier/archive.rb
379
327
  - lib/aws/glacier/archive_collection.rb
380
328
  - lib/aws/glacier/client.rb
@@ -384,7 +332,7 @@ files:
384
332
  - lib/aws/glacier/vault.rb
385
333
  - lib/aws/glacier/vault_collection.rb
386
334
  - lib/aws/glacier/vault_notification_configuration.rb
387
- - lib/aws/iam.rb
335
+ - lib/aws/glacier.rb
388
336
  - lib/aws/iam/access_key.rb
389
337
  - lib/aws/iam/access_key_collection.rb
390
338
  - lib/aws/iam/account_alias_collection.rb
@@ -413,20 +361,20 @@ files:
413
361
  - lib/aws/iam/user_policy_collection.rb
414
362
  - lib/aws/iam/virtual_mfa_device.rb
415
363
  - lib/aws/iam/virtual_mfa_device_collection.rb
416
- - lib/aws/import_export.rb
364
+ - lib/aws/iam.rb
417
365
  - lib/aws/import_export/client.rb
418
366
  - lib/aws/import_export/config.rb
419
367
  - lib/aws/import_export/errors.rb
420
- - lib/aws/kinesis.rb
368
+ - lib/aws/import_export.rb
421
369
  - lib/aws/kinesis/client.rb
422
370
  - lib/aws/kinesis/config.rb
423
371
  - lib/aws/kinesis/errors.rb
424
- - lib/aws/ops_works.rb
372
+ - lib/aws/kinesis.rb
425
373
  - lib/aws/ops_works/client.rb
426
374
  - lib/aws/ops_works/config.rb
427
375
  - lib/aws/ops_works/errors.rb
376
+ - lib/aws/ops_works.rb
428
377
  - lib/aws/rails.rb
429
- - lib/aws/rds.rb
430
378
  - lib/aws/rds/client.rb
431
379
  - lib/aws/rds/config.rb
432
380
  - lib/aws/rds/db_instance.rb
@@ -434,21 +382,21 @@ files:
434
382
  - lib/aws/rds/db_snapshot.rb
435
383
  - lib/aws/rds/db_snapshot_collection.rb
436
384
  - lib/aws/rds/errors.rb
437
- - lib/aws/record.rb
385
+ - lib/aws/rds.rb
438
386
  - lib/aws/record/abstract_base.rb
439
387
  - lib/aws/record/attributes.rb
440
388
  - lib/aws/record/conversion.rb
441
389
  - lib/aws/record/dirty_tracking.rb
442
390
  - lib/aws/record/errors.rb
443
391
  - lib/aws/record/exceptions.rb
444
- - lib/aws/record/hash_model.rb
445
392
  - lib/aws/record/hash_model/attributes.rb
446
393
  - lib/aws/record/hash_model/finder_methods.rb
447
394
  - lib/aws/record/hash_model/scope.rb
448
- - lib/aws/record/model.rb
395
+ - lib/aws/record/hash_model.rb
449
396
  - lib/aws/record/model/attributes.rb
450
397
  - lib/aws/record/model/finder_methods.rb
451
398
  - lib/aws/record/model/scope.rb
399
+ - lib/aws/record/model.rb
452
400
  - lib/aws/record/naming.rb
453
401
  - lib/aws/record/scope.rb
454
402
  - lib/aws/record/validations.rb
@@ -464,11 +412,11 @@ files:
464
412
  - lib/aws/record/validators/method.rb
465
413
  - lib/aws/record/validators/numericality.rb
466
414
  - lib/aws/record/validators/presence.rb
467
- - lib/aws/redshift.rb
415
+ - lib/aws/record.rb
468
416
  - lib/aws/redshift/client.rb
469
417
  - lib/aws/redshift/config.rb
470
418
  - lib/aws/redshift/errors.rb
471
- - lib/aws/route_53.rb
419
+ - lib/aws/redshift.rb
472
420
  - lib/aws/route_53/change_batch.rb
473
421
  - lib/aws/route_53/change_info.rb
474
422
  - lib/aws/route_53/client.rb
@@ -478,7 +426,7 @@ files:
478
426
  - lib/aws/route_53/hosted_zone_collection.rb
479
427
  - lib/aws/route_53/resource_record_set.rb
480
428
  - lib/aws/route_53/resource_record_set_collection.rb
481
- - lib/aws/s3.rb
429
+ - lib/aws/route_53.rb
482
430
  - lib/aws/s3/access_control_list.rb
483
431
  - lib/aws/s3/acl_object.rb
484
432
  - lib/aws/s3/acl_options.rb
@@ -488,8 +436,8 @@ files:
488
436
  - lib/aws/s3/bucket_tag_collection.rb
489
437
  - lib/aws/s3/bucket_version_collection.rb
490
438
  - lib/aws/s3/cipher_io.rb
491
- - lib/aws/s3/client.rb
492
439
  - lib/aws/s3/client/xml.rb
440
+ - lib/aws/s3/client.rb
493
441
  - lib/aws/s3/config.rb
494
442
  - lib/aws/s3/cors_rule.rb
495
443
  - lib/aws/s3/cors_rule_collection.rb
@@ -511,16 +459,16 @@ files:
511
459
  - lib/aws/s3/presigned_post.rb
512
460
  - lib/aws/s3/request.rb
513
461
  - lib/aws/s3/s3_object.rb
514
- - lib/aws/s3/tree.rb
515
462
  - lib/aws/s3/tree/branch_node.rb
516
463
  - lib/aws/s3/tree/child_collection.rb
517
464
  - lib/aws/s3/tree/leaf_node.rb
518
465
  - lib/aws/s3/tree/node.rb
519
466
  - lib/aws/s3/tree/parent.rb
467
+ - lib/aws/s3/tree.rb
520
468
  - lib/aws/s3/uploaded_part.rb
521
469
  - lib/aws/s3/uploaded_part_collection.rb
522
470
  - lib/aws/s3/website_configuration.rb
523
- - lib/aws/simple_db.rb
471
+ - lib/aws/s3.rb
524
472
  - lib/aws/simple_db/attribute.rb
525
473
  - lib/aws/simple_db/attribute_collection.rb
526
474
  - lib/aws/simple_db/client.rb
@@ -536,7 +484,7 @@ files:
536
484
  - lib/aws/simple_db/item_collection.rb
537
485
  - lib/aws/simple_db/item_data.rb
538
486
  - lib/aws/simple_db/put_attributes.rb
539
- - lib/aws/simple_email_service.rb
487
+ - lib/aws/simple_db.rb
540
488
  - lib/aws/simple_email_service/client.rb
541
489
  - lib/aws/simple_email_service/config.rb
542
490
  - lib/aws/simple_email_service/email_address_collection.rb
@@ -544,7 +492,7 @@ files:
544
492
  - lib/aws/simple_email_service/identity.rb
545
493
  - lib/aws/simple_email_service/identity_collection.rb
546
494
  - lib/aws/simple_email_service/quotas.rb
547
- - lib/aws/simple_workflow.rb
495
+ - lib/aws/simple_email_service.rb
548
496
  - lib/aws/simple_workflow/activity_task.rb
549
497
  - lib/aws/simple_workflow/activity_task_collection.rb
550
498
  - lib/aws/simple_workflow/activity_type.rb
@@ -567,7 +515,7 @@ files:
567
515
  - lib/aws/simple_workflow/workflow_execution_collection.rb
568
516
  - lib/aws/simple_workflow/workflow_type.rb
569
517
  - lib/aws/simple_workflow/workflow_type_collection.rb
570
- - lib/aws/sns.rb
518
+ - lib/aws/simple_workflow.rb
571
519
  - lib/aws/sns/client.rb
572
520
  - lib/aws/sns/config.rb
573
521
  - lib/aws/sns/errors.rb
@@ -580,7 +528,7 @@ files:
580
528
  - lib/aws/sns/topic.rb
581
529
  - lib/aws/sns/topic_collection.rb
582
530
  - lib/aws/sns/topic_subscription_collection.rb
583
- - lib/aws/sqs.rb
531
+ - lib/aws/sns.rb
584
532
  - lib/aws/sqs/client.rb
585
533
  - lib/aws/sqs/config.rb
586
534
  - lib/aws/sqs/errors.rb
@@ -589,23 +537,74 @@ files:
589
537
  - lib/aws/sqs/queue_collection.rb
590
538
  - lib/aws/sqs/received_message.rb
591
539
  - lib/aws/sqs/received_sns_message.rb
592
- - lib/aws/storage_gateway.rb
540
+ - lib/aws/sqs.rb
593
541
  - lib/aws/storage_gateway/client.rb
594
542
  - lib/aws/storage_gateway/config.rb
595
543
  - lib/aws/storage_gateway/errors.rb
596
- - lib/aws/sts.rb
544
+ - lib/aws/storage_gateway.rb
597
545
  - lib/aws/sts/client.rb
598
546
  - lib/aws/sts/config.rb
599
547
  - lib/aws/sts/errors.rb
600
548
  - lib/aws/sts/federated_session.rb
601
549
  - lib/aws/sts/policy.rb
602
550
  - lib/aws/sts/session.rb
603
- - lib/aws/support.rb
551
+ - lib/aws/sts.rb
604
552
  - lib/aws/support/client.rb
605
553
  - lib/aws/support/config.rb
606
554
  - lib/aws/support/errors.rb
555
+ - lib/aws/support.rb
607
556
  - lib/aws/version.rb
608
- - rails/init.rb
557
+ - lib/aws-sdk-v1.rb
558
+ - lib/aws.rb
559
+ - lib/aws/api_config/AutoScaling-2011-01-01.yml
560
+ - lib/aws/api_config/CloudFormation-2010-05-15.yml
561
+ - lib/aws/api_config/CloudFront-2013-05-12.yml
562
+ - lib/aws/api_config/CloudFront-2013-08-26.yml
563
+ - lib/aws/api_config/CloudFront-2013-09-27.yml
564
+ - lib/aws/api_config/CloudFront-2013-11-11.yml
565
+ - lib/aws/api_config/CloudFront-2013-11-22.yml
566
+ - lib/aws/api_config/CloudFront-2014-01-31.yml
567
+ - lib/aws/api_config/CloudFront-2014-05-31.yml
568
+ - lib/aws/api_config/CloudSearch-2011-02-01.yml
569
+ - lib/aws/api_config/CloudSearch-2013-01-01.yml
570
+ - lib/aws/api_config/CloudTrail-2013-11-01.yml
571
+ - lib/aws/api_config/CloudWatch-2010-08-01.yml
572
+ - lib/aws/api_config/DataPipeline-2012-10-29.yml
573
+ - lib/aws/api_config/DirectConnect-2012-10-25.yml
574
+ - lib/aws/api_config/DynamoDB-2011-12-05.yml
575
+ - lib/aws/api_config/DynamoDB-2012-08-10.yml
576
+ - lib/aws/api_config/EC2-2013-08-15.yml
577
+ - lib/aws/api_config/EC2-2013-10-01.yml
578
+ - lib/aws/api_config/EC2-2013-10-15.yml
579
+ - lib/aws/api_config/EC2-2014-02-01.yml
580
+ - lib/aws/api_config/EC2-2014-05-01.yml
581
+ - lib/aws/api_config/ElastiCache-2013-06-15.yml
582
+ - lib/aws/api_config/ElastiCache-2014-03-24.yml
583
+ - lib/aws/api_config/ElastiCache-2014-07-15.yml
584
+ - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
585
+ - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
586
+ - lib/aws/api_config/ELB-2012-06-01.yml
587
+ - lib/aws/api_config/EMR-2009-03-31.yml
588
+ - lib/aws/api_config/Glacier-2012-06-01.yml
589
+ - lib/aws/api_config/IAM-2010-05-08.yml
590
+ - lib/aws/api_config/ImportExport-2010-06-01.yml
591
+ - lib/aws/api_config/Kinesis-2013-12-02.yml
592
+ - lib/aws/api_config/OpsWorks-2013-02-18.yml
593
+ - lib/aws/api_config/RDS-2013-05-15.yml
594
+ - lib/aws/api_config/RDS-2013-09-09.yml
595
+ - lib/aws/api_config/Redshift-2012-12-01.yml
596
+ - lib/aws/api_config/Route53-2012-12-12.yml
597
+ - lib/aws/api_config/Route53-2013-04-01.yml
598
+ - lib/aws/api_config/SimpleDB-2009-04-15.yml
599
+ - lib/aws/api_config/SimpleEmailService-2010-12-01.yml
600
+ - lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
601
+ - lib/aws/api_config/SNS-2010-03-31.yml
602
+ - lib/aws/api_config/SQS-2012-11-05.yml
603
+ - lib/aws/api_config/StorageGateway-2012-06-30.yml
604
+ - lib/aws/api_config/StorageGateway-2013-06-30.yml
605
+ - lib/aws/api_config/STS-2011-06-15.yml
606
+ - lib/aws/api_config/Support-2013-04-15.yml
607
+ - bin/aws-rb
609
608
  homepage: http://aws.amazon.com/sdkforruby
610
609
  licenses:
611
610
  - Apache 2.0
@@ -616,17 +615,17 @@ require_paths:
616
615
  - lib
617
616
  required_ruby_version: !ruby/object:Gem::Requirement
618
617
  requirements:
619
- - - ">="
618
+ - - '>='
620
619
  - !ruby/object:Gem::Version
621
620
  version: '0'
622
621
  required_rubygems_version: !ruby/object:Gem::Requirement
623
622
  requirements:
624
- - - ">="
623
+ - - '>='
625
624
  - !ruby/object:Gem::Version
626
625
  version: '0'
627
626
  requirements: []
628
627
  rubyforge_project:
629
- rubygems_version: 2.2.2
628
+ rubygems_version: 2.1.11
630
629
  signing_key:
631
630
  specification_version: 4
632
631
  summary: AWS SDK for Ruby V1
@@ -1 +0,0 @@
1
- require 'aws-sdk-v1'