aws-sdk 1.41.0 → 1.42.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/api_config/CloudSearch-2013-01-01.yml +6 -0
- data/lib/aws/s3/bucket_lifecycle_configuration.rb +19 -2
- data/lib/aws/s3/client/xml.rb +7 -0
- data/lib/aws/version.rb +1 -1
- metadata +110 -110
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 940e64d05caf004bcba55c932b3883e2c59345ec
|
4
|
+
data.tar.gz: 5754c408bd60709a58cdcc4101e8827068695825
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b80c0b94d3075dafafb31ceda05119a6f8b73e3c45ace8775d8c495cb013e1a6fc20073c50fccae64de5084ab60112a5a993fa8015c53a6fbfa39b5fc14d9687
|
7
|
+
data.tar.gz: cad2a37370a9f6d81485a147e31f4ea8d30d208c6b73423af43d7fd61b257c5ba735ede7881a224f8daa20ba46fc7e5797afa20a98e4b68058809e95ec2c28c8
|
@@ -966,6 +966,8 @@
|
|
966
966
|
:children:
|
967
967
|
DesiredReplicationCount:
|
968
968
|
:type: :integer
|
969
|
+
DesiredPartitionCount:
|
970
|
+
:type: :integer
|
969
971
|
Status:
|
970
972
|
:children:
|
971
973
|
CreationDate:
|
@@ -1108,6 +1110,8 @@
|
|
1108
1110
|
- :string
|
1109
1111
|
DesiredReplicationCount:
|
1110
1112
|
- :integer
|
1113
|
+
DesiredPartitionCount:
|
1114
|
+
- :integer
|
1111
1115
|
- :required
|
1112
1116
|
:outputs:
|
1113
1117
|
:children:
|
@@ -1120,6 +1124,8 @@
|
|
1120
1124
|
:children:
|
1121
1125
|
DesiredReplicationCount:
|
1122
1126
|
:type: :integer
|
1127
|
+
DesiredPartitionCount:
|
1128
|
+
:type: :integer
|
1123
1129
|
Status:
|
1124
1130
|
:children:
|
1125
1131
|
CreationDate:
|
@@ -168,7 +168,9 @@ module AWS
|
|
168
168
|
opts = {
|
169
169
|
:status => options[:disabled] == true ? 'Disabled' : 'Enabled',
|
170
170
|
:expiration_time => options[:expiration_time],
|
171
|
-
:glacier_transition_time => options[:glacier_transition_time]
|
171
|
+
:glacier_transition_time => options[:glacier_transition_time],
|
172
|
+
:noncurrent_version_transition_days => options[:noncurrent_version_transition_days],
|
173
|
+
:noncurrent_version_expiration_days => options[:noncurrent_version_expiration_days]
|
172
174
|
}
|
173
175
|
rule = Rule.new(self, id, prefix, opts)
|
174
176
|
self.rules << rule
|
@@ -304,6 +306,13 @@ module AWS
|
|
304
306
|
xml.Date "#{date}T00:00:00Z"
|
305
307
|
end
|
306
308
|
end if rule.glacier_transition_time
|
309
|
+
xml.NoncurrentVersionTransition do
|
310
|
+
xml.StorageClass 'GLACIER'
|
311
|
+
xml.NoncurrentDays rule.noncurrent_version_transition_days
|
312
|
+
end if rule.noncurrent_version_transition_days
|
313
|
+
xml.NoncurrentVersionExpiration do
|
314
|
+
xml.NoncurrentDays rule.noncurrent_version_expiration_days
|
315
|
+
end if rule.noncurrent_version_expiration_days
|
307
316
|
end
|
308
317
|
end
|
309
318
|
end
|
@@ -384,6 +393,12 @@ module AWS
|
|
384
393
|
@glacier_transition_time = convert_time_value(value)
|
385
394
|
end
|
386
395
|
|
396
|
+
# @return [Integer]
|
397
|
+
attr_accessor :noncurrent_version_transition_days
|
398
|
+
|
399
|
+
# @return [Integer]
|
400
|
+
attr_accessor :noncurrent_version_expiration_days
|
401
|
+
|
387
402
|
# @return [String] Returns the rule status, 'Enabled' or 'Disabled'
|
388
403
|
attr_accessor :status
|
389
404
|
|
@@ -411,7 +426,9 @@ module AWS
|
|
411
426
|
other.prefix == prefix and
|
412
427
|
other.expiration_time == expiration_time and
|
413
428
|
other.glacier_transition_time == glacier_transition_time and
|
414
|
-
other.status == status
|
429
|
+
other.status == status and
|
430
|
+
other.noncurrent_version_transition_days == noncurrent_version_transition_days and
|
431
|
+
other.noncurrent_version_expiration_days == noncurrent_version_expiration_days
|
415
432
|
end
|
416
433
|
alias_method :==, :eql?
|
417
434
|
|
data/lib/aws/s3/client/xml.rb
CHANGED
@@ -192,6 +192,13 @@ module AWS
|
|
192
192
|
element("Days") { integer_value }
|
193
193
|
element("Date") { datetime_value }
|
194
194
|
end
|
195
|
+
element("NoncurrentVersionTransition") do
|
196
|
+
element("NoncurrentDays") { integer_value }
|
197
|
+
element("StorageClass") { string_value }
|
198
|
+
end
|
199
|
+
element("NoncurrentVersionDays") do
|
200
|
+
element("NoncurrentDays") { integer_value }
|
201
|
+
end
|
195
202
|
end
|
196
203
|
end
|
197
204
|
|
data/lib/aws/version.rb
CHANGED
metadata
CHANGED
@@ -1,41 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.42.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-05-
|
11
|
+
date: 2014-05-29 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: AWS SDK for Ruby
|
@@ -45,12 +45,61 @@ executables:
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".yardopts"
|
49
|
+
- LICENSE.txt
|
50
|
+
- README.md
|
51
|
+
- bin/aws-rb
|
48
52
|
- ca-bundle.crt
|
49
|
-
- rails/init.rb
|
50
53
|
- endpoints.json
|
51
|
-
- .
|
52
|
-
-
|
53
|
-
-
|
54
|
+
- lib/aws-sdk.rb
|
55
|
+
- lib/aws.rb
|
56
|
+
- lib/aws/api_config/AutoScaling-2011-01-01.yml
|
57
|
+
- lib/aws/api_config/CloudFormation-2010-05-15.yml
|
58
|
+
- lib/aws/api_config/CloudFront-2013-05-12.yml
|
59
|
+
- lib/aws/api_config/CloudFront-2013-08-26.yml
|
60
|
+
- lib/aws/api_config/CloudFront-2013-09-27.yml
|
61
|
+
- lib/aws/api_config/CloudFront-2013-11-11.yml
|
62
|
+
- lib/aws/api_config/CloudFront-2013-11-22.yml
|
63
|
+
- lib/aws/api_config/CloudFront-2014-01-31.yml
|
64
|
+
- lib/aws/api_config/CloudSearch-2011-02-01.yml
|
65
|
+
- lib/aws/api_config/CloudSearch-2013-01-01.yml
|
66
|
+
- lib/aws/api_config/CloudTrail-2013-11-01.yml
|
67
|
+
- lib/aws/api_config/CloudWatch-2010-08-01.yml
|
68
|
+
- lib/aws/api_config/DataPipeline-2012-10-29.yml
|
69
|
+
- lib/aws/api_config/DirectConnect-2012-10-25.yml
|
70
|
+
- lib/aws/api_config/DynamoDB-2011-12-05.yml
|
71
|
+
- lib/aws/api_config/DynamoDB-2012-08-10.yml
|
72
|
+
- lib/aws/api_config/EC2-2013-08-15.yml
|
73
|
+
- lib/aws/api_config/EC2-2013-10-01.yml
|
74
|
+
- lib/aws/api_config/EC2-2013-10-15.yml
|
75
|
+
- lib/aws/api_config/EC2-2014-02-01.yml
|
76
|
+
- lib/aws/api_config/EC2-2014-05-01.yml
|
77
|
+
- lib/aws/api_config/ELB-2012-06-01.yml
|
78
|
+
- lib/aws/api_config/EMR-2009-03-31.yml
|
79
|
+
- lib/aws/api_config/ElastiCache-2013-06-15.yml
|
80
|
+
- lib/aws/api_config/ElastiCache-2014-03-24.yml
|
81
|
+
- lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
|
82
|
+
- lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
|
83
|
+
- lib/aws/api_config/Glacier-2012-06-01.yml
|
84
|
+
- lib/aws/api_config/IAM-2010-05-08.yml
|
85
|
+
- lib/aws/api_config/ImportExport-2010-06-01.yml
|
86
|
+
- lib/aws/api_config/Kinesis-2013-12-02.yml
|
87
|
+
- lib/aws/api_config/OpsWorks-2013-02-18.yml
|
88
|
+
- lib/aws/api_config/RDS-2013-05-15.yml
|
89
|
+
- lib/aws/api_config/RDS-2013-09-09.yml
|
90
|
+
- lib/aws/api_config/Redshift-2012-12-01.yml
|
91
|
+
- lib/aws/api_config/Route53-2012-12-12.yml
|
92
|
+
- lib/aws/api_config/Route53-2013-04-01.yml
|
93
|
+
- lib/aws/api_config/SNS-2010-03-31.yml
|
94
|
+
- lib/aws/api_config/SQS-2012-11-05.yml
|
95
|
+
- lib/aws/api_config/STS-2011-06-15.yml
|
96
|
+
- lib/aws/api_config/SimpleDB-2009-04-15.yml
|
97
|
+
- lib/aws/api_config/SimpleEmailService-2010-12-01.yml
|
98
|
+
- lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
|
99
|
+
- lib/aws/api_config/StorageGateway-2012-06-30.yml
|
100
|
+
- lib/aws/api_config/StorageGateway-2013-06-30.yml
|
101
|
+
- lib/aws/api_config/Support-2013-04-15.yml
|
102
|
+
- lib/aws/auto_scaling.rb
|
54
103
|
- lib/aws/auto_scaling/activity.rb
|
55
104
|
- lib/aws/auto_scaling/activity_collection.rb
|
56
105
|
- lib/aws/auto_scaling/client.rb
|
@@ -72,7 +121,7 @@ files:
|
|
72
121
|
- lib/aws/auto_scaling/scheduled_action_collection.rb
|
73
122
|
- lib/aws/auto_scaling/tag.rb
|
74
123
|
- lib/aws/auto_scaling/tag_collection.rb
|
75
|
-
- lib/aws/
|
124
|
+
- lib/aws/cloud_formation.rb
|
76
125
|
- lib/aws/cloud_formation/client.rb
|
77
126
|
- lib/aws/cloud_formation/config.rb
|
78
127
|
- lib/aws/cloud_formation/errors.rb
|
@@ -86,19 +135,19 @@ files:
|
|
86
135
|
- lib/aws/cloud_formation/stack_resource_collection.rb
|
87
136
|
- lib/aws/cloud_formation/stack_resource_summary_collection.rb
|
88
137
|
- lib/aws/cloud_formation/stack_summary_collection.rb
|
89
|
-
- lib/aws/
|
138
|
+
- lib/aws/cloud_front.rb
|
90
139
|
- lib/aws/cloud_front/client.rb
|
91
140
|
- lib/aws/cloud_front/config.rb
|
92
141
|
- lib/aws/cloud_front/errors.rb
|
93
|
-
- lib/aws/
|
142
|
+
- lib/aws/cloud_search.rb
|
94
143
|
- lib/aws/cloud_search/client.rb
|
95
144
|
- lib/aws/cloud_search/config.rb
|
96
145
|
- lib/aws/cloud_search/errors.rb
|
97
|
-
- lib/aws/
|
146
|
+
- lib/aws/cloud_trail.rb
|
98
147
|
- lib/aws/cloud_trail/client.rb
|
99
148
|
- lib/aws/cloud_trail/config.rb
|
100
149
|
- lib/aws/cloud_trail/errors.rb
|
101
|
-
- lib/aws/
|
150
|
+
- lib/aws/cloud_watch.rb
|
102
151
|
- lib/aws/cloud_watch/alarm.rb
|
103
152
|
- lib/aws/cloud_watch/alarm_collection.rb
|
104
153
|
- lib/aws/cloud_watch/alarm_history_item.rb
|
@@ -110,14 +159,14 @@ files:
|
|
110
159
|
- lib/aws/cloud_watch/metric_alarm_collection.rb
|
111
160
|
- lib/aws/cloud_watch/metric_collection.rb
|
112
161
|
- lib/aws/cloud_watch/metric_statistics.rb
|
113
|
-
- lib/aws/
|
162
|
+
- lib/aws/core.rb
|
114
163
|
- lib/aws/core/async_handle.rb
|
115
164
|
- lib/aws/core/cacheable.rb
|
116
165
|
- lib/aws/core/client.rb
|
166
|
+
- lib/aws/core/collection.rb
|
117
167
|
- lib/aws/core/collection/simple.rb
|
118
168
|
- lib/aws/core/collection/with_limit_and_next_token.rb
|
119
169
|
- lib/aws/core/collection/with_next_token.rb
|
120
|
-
- lib/aws/core/collection.rb
|
121
170
|
- lib/aws/core/configuration.rb
|
122
171
|
- lib/aws/core/credential_providers.rb
|
123
172
|
- lib/aws/core/data.rb
|
@@ -171,8 +220,8 @@ files:
|
|
171
220
|
- lib/aws/core/signers/version_2.rb
|
172
221
|
- lib/aws/core/signers/version_3.rb
|
173
222
|
- lib/aws/core/signers/version_3_https.rb
|
174
|
-
- lib/aws/core/signers/version_4/chunk_signed_stream.rb
|
175
223
|
- lib/aws/core/signers/version_4.rb
|
224
|
+
- lib/aws/core/signers/version_4/chunk_signed_stream.rb
|
176
225
|
- lib/aws/core/uri_escape.rb
|
177
226
|
- lib/aws/core/xml/frame.rb
|
178
227
|
- lib/aws/core/xml/frame_stack.rb
|
@@ -184,22 +233,22 @@ files:
|
|
184
233
|
- lib/aws/core/xml/sax_handlers/ox.rb
|
185
234
|
- lib/aws/core/xml/sax_handlers/rexml.rb
|
186
235
|
- lib/aws/core/xml/stub.rb
|
187
|
-
- lib/aws/
|
236
|
+
- lib/aws/data_pipeline.rb
|
188
237
|
- lib/aws/data_pipeline/client.rb
|
189
238
|
- lib/aws/data_pipeline/config.rb
|
190
239
|
- lib/aws/data_pipeline/errors.rb
|
191
|
-
- lib/aws/
|
240
|
+
- lib/aws/direct_connect.rb
|
192
241
|
- lib/aws/direct_connect/client.rb
|
193
242
|
- lib/aws/direct_connect/config.rb
|
194
243
|
- lib/aws/direct_connect/errors.rb
|
195
|
-
- lib/aws/
|
244
|
+
- lib/aws/dynamo_db.rb
|
196
245
|
- lib/aws/dynamo_db/attribute_collection.rb
|
197
246
|
- lib/aws/dynamo_db/batch_get.rb
|
198
247
|
- lib/aws/dynamo_db/batch_write.rb
|
199
248
|
- lib/aws/dynamo_db/binary.rb
|
249
|
+
- lib/aws/dynamo_db/client.rb
|
200
250
|
- lib/aws/dynamo_db/client/v20111205.rb
|
201
251
|
- lib/aws/dynamo_db/client/v20120810.rb
|
202
|
-
- lib/aws/dynamo_db/client.rb
|
203
252
|
- lib/aws/dynamo_db/client_v2.rb
|
204
253
|
- lib/aws/dynamo_db/config.rb
|
205
254
|
- lib/aws/dynamo_db/errors.rb
|
@@ -213,7 +262,7 @@ files:
|
|
213
262
|
- lib/aws/dynamo_db/table.rb
|
214
263
|
- lib/aws/dynamo_db/table_collection.rb
|
215
264
|
- lib/aws/dynamo_db/types.rb
|
216
|
-
- lib/aws/
|
265
|
+
- lib/aws/ec2.rb
|
217
266
|
- lib/aws/ec2/attachment.rb
|
218
267
|
- lib/aws/ec2/attachment_collection.rb
|
219
268
|
- lib/aws/ec2/availability_zone.rb
|
@@ -237,17 +286,17 @@ files:
|
|
237
286
|
- lib/aws/ec2/image_collection.rb
|
238
287
|
- lib/aws/ec2/instance.rb
|
239
288
|
- lib/aws/ec2/instance_collection.rb
|
240
|
-
- lib/aws/ec2/internet_gateway/attachment.rb
|
241
289
|
- lib/aws/ec2/internet_gateway.rb
|
290
|
+
- lib/aws/ec2/internet_gateway/attachment.rb
|
242
291
|
- lib/aws/ec2/internet_gateway_collection.rb
|
243
292
|
- lib/aws/ec2/key_pair.rb
|
244
293
|
- lib/aws/ec2/key_pair_collection.rb
|
294
|
+
- lib/aws/ec2/network_acl.rb
|
245
295
|
- lib/aws/ec2/network_acl/association.rb
|
246
296
|
- lib/aws/ec2/network_acl/entry.rb
|
247
|
-
- lib/aws/ec2/network_acl.rb
|
248
297
|
- lib/aws/ec2/network_acl_collection.rb
|
249
|
-
- lib/aws/ec2/network_interface/attachment.rb
|
250
298
|
- lib/aws/ec2/network_interface.rb
|
299
|
+
- lib/aws/ec2/network_interface/attachment.rb
|
251
300
|
- lib/aws/ec2/network_interface_collection.rb
|
252
301
|
- lib/aws/ec2/permission_collection.rb
|
253
302
|
- lib/aws/ec2/region.rb
|
@@ -258,13 +307,13 @@ files:
|
|
258
307
|
- lib/aws/ec2/reserved_instances_offering_collection.rb
|
259
308
|
- lib/aws/ec2/resource.rb
|
260
309
|
- lib/aws/ec2/resource_tag_collection.rb
|
310
|
+
- lib/aws/ec2/route_table.rb
|
261
311
|
- lib/aws/ec2/route_table/association.rb
|
262
312
|
- lib/aws/ec2/route_table/route.rb
|
263
|
-
- lib/aws/ec2/route_table.rb
|
264
313
|
- lib/aws/ec2/route_table_collection.rb
|
314
|
+
- lib/aws/ec2/security_group.rb
|
265
315
|
- lib/aws/ec2/security_group/ip_permission.rb
|
266
316
|
- lib/aws/ec2/security_group/ip_permission_collection.rb
|
267
|
-
- lib/aws/ec2/security_group.rb
|
268
317
|
- lib/aws/ec2/security_group_collection.rb
|
269
318
|
- lib/aws/ec2/snapshot.rb
|
270
319
|
- lib/aws/ec2/snapshot_collection.rb
|
@@ -278,25 +327,25 @@ files:
|
|
278
327
|
- lib/aws/ec2/volume_collection.rb
|
279
328
|
- lib/aws/ec2/vpc.rb
|
280
329
|
- lib/aws/ec2/vpc_collection.rb
|
281
|
-
- lib/aws/ec2/vpn_connection/telemetry.rb
|
282
330
|
- lib/aws/ec2/vpn_connection.rb
|
331
|
+
- lib/aws/ec2/vpn_connection/telemetry.rb
|
283
332
|
- lib/aws/ec2/vpn_connection_collection.rb
|
284
|
-
- lib/aws/ec2/vpn_gateway/attachment.rb
|
285
333
|
- lib/aws/ec2/vpn_gateway.rb
|
334
|
+
- lib/aws/ec2/vpn_gateway/attachment.rb
|
286
335
|
- lib/aws/ec2/vpn_gateway_collection.rb
|
287
|
-
- lib/aws/
|
336
|
+
- lib/aws/elastic_beanstalk.rb
|
288
337
|
- lib/aws/elastic_beanstalk/client.rb
|
289
338
|
- lib/aws/elastic_beanstalk/config.rb
|
290
339
|
- lib/aws/elastic_beanstalk/errors.rb
|
291
|
-
- lib/aws/
|
340
|
+
- lib/aws/elastic_transcoder.rb
|
292
341
|
- lib/aws/elastic_transcoder/client.rb
|
293
342
|
- lib/aws/elastic_transcoder/config.rb
|
294
343
|
- lib/aws/elastic_transcoder/errors.rb
|
295
|
-
- lib/aws/
|
344
|
+
- lib/aws/elasticache.rb
|
296
345
|
- lib/aws/elasticache/client.rb
|
297
346
|
- lib/aws/elasticache/config.rb
|
298
347
|
- lib/aws/elasticache/errors.rb
|
299
|
-
- lib/aws/
|
348
|
+
- lib/aws/elb.rb
|
300
349
|
- lib/aws/elb/availability_zone_collection.rb
|
301
350
|
- lib/aws/elb/backend_server_policy_collection.rb
|
302
351
|
- lib/aws/elb/client.rb
|
@@ -310,7 +359,7 @@ files:
|
|
310
359
|
- lib/aws/elb/load_balancer_collection.rb
|
311
360
|
- lib/aws/elb/load_balancer_policy.rb
|
312
361
|
- lib/aws/elb/load_balancer_policy_collection.rb
|
313
|
-
- lib/aws/
|
362
|
+
- lib/aws/emr.rb
|
314
363
|
- lib/aws/emr/client.rb
|
315
364
|
- lib/aws/emr/config.rb
|
316
365
|
- lib/aws/emr/errors.rb
|
@@ -318,8 +367,8 @@ files:
|
|
318
367
|
- lib/aws/emr/instance_group_collection.rb
|
319
368
|
- lib/aws/emr/job_flow.rb
|
320
369
|
- lib/aws/emr/job_flow_collection.rb
|
321
|
-
- lib/aws/emr.rb
|
322
370
|
- lib/aws/errors.rb
|
371
|
+
- lib/aws/glacier.rb
|
323
372
|
- lib/aws/glacier/archive.rb
|
324
373
|
- lib/aws/glacier/archive_collection.rb
|
325
374
|
- lib/aws/glacier/client.rb
|
@@ -329,7 +378,7 @@ files:
|
|
329
378
|
- lib/aws/glacier/vault.rb
|
330
379
|
- lib/aws/glacier/vault_collection.rb
|
331
380
|
- lib/aws/glacier/vault_notification_configuration.rb
|
332
|
-
- lib/aws/
|
381
|
+
- lib/aws/iam.rb
|
333
382
|
- lib/aws/iam/access_key.rb
|
334
383
|
- lib/aws/iam/access_key_collection.rb
|
335
384
|
- lib/aws/iam/account_alias_collection.rb
|
@@ -358,20 +407,20 @@ files:
|
|
358
407
|
- lib/aws/iam/user_policy_collection.rb
|
359
408
|
- lib/aws/iam/virtual_mfa_device.rb
|
360
409
|
- lib/aws/iam/virtual_mfa_device_collection.rb
|
361
|
-
- lib/aws/
|
410
|
+
- lib/aws/import_export.rb
|
362
411
|
- lib/aws/import_export/client.rb
|
363
412
|
- lib/aws/import_export/config.rb
|
364
413
|
- lib/aws/import_export/errors.rb
|
365
|
-
- lib/aws/
|
414
|
+
- lib/aws/kinesis.rb
|
366
415
|
- lib/aws/kinesis/client.rb
|
367
416
|
- lib/aws/kinesis/config.rb
|
368
417
|
- lib/aws/kinesis/errors.rb
|
369
|
-
- lib/aws/
|
418
|
+
- lib/aws/ops_works.rb
|
370
419
|
- lib/aws/ops_works/client.rb
|
371
420
|
- lib/aws/ops_works/config.rb
|
372
421
|
- lib/aws/ops_works/errors.rb
|
373
|
-
- lib/aws/ops_works.rb
|
374
422
|
- lib/aws/rails.rb
|
423
|
+
- lib/aws/rds.rb
|
375
424
|
- lib/aws/rds/client.rb
|
376
425
|
- lib/aws/rds/config.rb
|
377
426
|
- lib/aws/rds/db_instance.rb
|
@@ -379,21 +428,21 @@ files:
|
|
379
428
|
- lib/aws/rds/db_snapshot.rb
|
380
429
|
- lib/aws/rds/db_snapshot_collection.rb
|
381
430
|
- lib/aws/rds/errors.rb
|
382
|
-
- lib/aws/
|
431
|
+
- lib/aws/record.rb
|
383
432
|
- lib/aws/record/abstract_base.rb
|
384
433
|
- lib/aws/record/attributes.rb
|
385
434
|
- lib/aws/record/conversion.rb
|
386
435
|
- lib/aws/record/dirty_tracking.rb
|
387
436
|
- lib/aws/record/errors.rb
|
388
437
|
- lib/aws/record/exceptions.rb
|
438
|
+
- lib/aws/record/hash_model.rb
|
389
439
|
- lib/aws/record/hash_model/attributes.rb
|
390
440
|
- lib/aws/record/hash_model/finder_methods.rb
|
391
441
|
- lib/aws/record/hash_model/scope.rb
|
392
|
-
- lib/aws/record/
|
442
|
+
- lib/aws/record/model.rb
|
393
443
|
- lib/aws/record/model/attributes.rb
|
394
444
|
- lib/aws/record/model/finder_methods.rb
|
395
445
|
- lib/aws/record/model/scope.rb
|
396
|
-
- lib/aws/record/model.rb
|
397
446
|
- lib/aws/record/naming.rb
|
398
447
|
- lib/aws/record/scope.rb
|
399
448
|
- lib/aws/record/validations.rb
|
@@ -409,11 +458,11 @@ files:
|
|
409
458
|
- lib/aws/record/validators/method.rb
|
410
459
|
- lib/aws/record/validators/numericality.rb
|
411
460
|
- lib/aws/record/validators/presence.rb
|
412
|
-
- lib/aws/
|
461
|
+
- lib/aws/redshift.rb
|
413
462
|
- lib/aws/redshift/client.rb
|
414
463
|
- lib/aws/redshift/config.rb
|
415
464
|
- lib/aws/redshift/errors.rb
|
416
|
-
- lib/aws/
|
465
|
+
- lib/aws/route_53.rb
|
417
466
|
- lib/aws/route_53/change_batch.rb
|
418
467
|
- lib/aws/route_53/change_info.rb
|
419
468
|
- lib/aws/route_53/client.rb
|
@@ -423,7 +472,7 @@ files:
|
|
423
472
|
- lib/aws/route_53/hosted_zone_collection.rb
|
424
473
|
- lib/aws/route_53/resource_record_set.rb
|
425
474
|
- lib/aws/route_53/resource_record_set_collection.rb
|
426
|
-
- lib/aws/
|
475
|
+
- lib/aws/s3.rb
|
427
476
|
- lib/aws/s3/access_control_list.rb
|
428
477
|
- lib/aws/s3/acl_object.rb
|
429
478
|
- lib/aws/s3/acl_options.rb
|
@@ -433,8 +482,8 @@ files:
|
|
433
482
|
- lib/aws/s3/bucket_tag_collection.rb
|
434
483
|
- lib/aws/s3/bucket_version_collection.rb
|
435
484
|
- lib/aws/s3/cipher_io.rb
|
436
|
-
- lib/aws/s3/client/xml.rb
|
437
485
|
- lib/aws/s3/client.rb
|
486
|
+
- lib/aws/s3/client/xml.rb
|
438
487
|
- lib/aws/s3/config.rb
|
439
488
|
- lib/aws/s3/cors_rule.rb
|
440
489
|
- lib/aws/s3/cors_rule_collection.rb
|
@@ -456,16 +505,16 @@ files:
|
|
456
505
|
- lib/aws/s3/presigned_post.rb
|
457
506
|
- lib/aws/s3/request.rb
|
458
507
|
- lib/aws/s3/s3_object.rb
|
508
|
+
- lib/aws/s3/tree.rb
|
459
509
|
- lib/aws/s3/tree/branch_node.rb
|
460
510
|
- lib/aws/s3/tree/child_collection.rb
|
461
511
|
- lib/aws/s3/tree/leaf_node.rb
|
462
512
|
- lib/aws/s3/tree/node.rb
|
463
513
|
- lib/aws/s3/tree/parent.rb
|
464
|
-
- lib/aws/s3/tree.rb
|
465
514
|
- lib/aws/s3/uploaded_part.rb
|
466
515
|
- lib/aws/s3/uploaded_part_collection.rb
|
467
516
|
- lib/aws/s3/website_configuration.rb
|
468
|
-
- lib/aws/
|
517
|
+
- lib/aws/simple_db.rb
|
469
518
|
- lib/aws/simple_db/attribute.rb
|
470
519
|
- lib/aws/simple_db/attribute_collection.rb
|
471
520
|
- lib/aws/simple_db/client.rb
|
@@ -481,7 +530,7 @@ files:
|
|
481
530
|
- lib/aws/simple_db/item_collection.rb
|
482
531
|
- lib/aws/simple_db/item_data.rb
|
483
532
|
- lib/aws/simple_db/put_attributes.rb
|
484
|
-
- lib/aws/
|
533
|
+
- lib/aws/simple_email_service.rb
|
485
534
|
- lib/aws/simple_email_service/client.rb
|
486
535
|
- lib/aws/simple_email_service/config.rb
|
487
536
|
- lib/aws/simple_email_service/email_address_collection.rb
|
@@ -489,7 +538,7 @@ files:
|
|
489
538
|
- lib/aws/simple_email_service/identity.rb
|
490
539
|
- lib/aws/simple_email_service/identity_collection.rb
|
491
540
|
- lib/aws/simple_email_service/quotas.rb
|
492
|
-
- lib/aws/
|
541
|
+
- lib/aws/simple_workflow.rb
|
493
542
|
- lib/aws/simple_workflow/activity_task.rb
|
494
543
|
- lib/aws/simple_workflow/activity_task_collection.rb
|
495
544
|
- lib/aws/simple_workflow/activity_type.rb
|
@@ -512,7 +561,7 @@ files:
|
|
512
561
|
- lib/aws/simple_workflow/workflow_execution_collection.rb
|
513
562
|
- lib/aws/simple_workflow/workflow_type.rb
|
514
563
|
- lib/aws/simple_workflow/workflow_type_collection.rb
|
515
|
-
- lib/aws/
|
564
|
+
- lib/aws/sns.rb
|
516
565
|
- lib/aws/sns/client.rb
|
517
566
|
- lib/aws/sns/config.rb
|
518
567
|
- lib/aws/sns/errors.rb
|
@@ -525,7 +574,7 @@ files:
|
|
525
574
|
- lib/aws/sns/topic.rb
|
526
575
|
- lib/aws/sns/topic_collection.rb
|
527
576
|
- lib/aws/sns/topic_subscription_collection.rb
|
528
|
-
- lib/aws/
|
577
|
+
- lib/aws/sqs.rb
|
529
578
|
- lib/aws/sqs/client.rb
|
530
579
|
- lib/aws/sqs/config.rb
|
531
580
|
- lib/aws/sqs/errors.rb
|
@@ -534,72 +583,23 @@ files:
|
|
534
583
|
- lib/aws/sqs/queue_collection.rb
|
535
584
|
- lib/aws/sqs/received_message.rb
|
536
585
|
- lib/aws/sqs/received_sns_message.rb
|
537
|
-
- lib/aws/
|
586
|
+
- lib/aws/storage_gateway.rb
|
538
587
|
- lib/aws/storage_gateway/client.rb
|
539
588
|
- lib/aws/storage_gateway/config.rb
|
540
589
|
- lib/aws/storage_gateway/errors.rb
|
541
|
-
- lib/aws/
|
590
|
+
- lib/aws/sts.rb
|
542
591
|
- lib/aws/sts/client.rb
|
543
592
|
- lib/aws/sts/config.rb
|
544
593
|
- lib/aws/sts/errors.rb
|
545
594
|
- lib/aws/sts/federated_session.rb
|
546
595
|
- lib/aws/sts/policy.rb
|
547
596
|
- lib/aws/sts/session.rb
|
548
|
-
- lib/aws/
|
597
|
+
- lib/aws/support.rb
|
549
598
|
- lib/aws/support/client.rb
|
550
599
|
- lib/aws/support/config.rb
|
551
600
|
- lib/aws/support/errors.rb
|
552
|
-
- lib/aws/support.rb
|
553
601
|
- lib/aws/version.rb
|
554
|
-
-
|
555
|
-
- lib/aws.rb
|
556
|
-
- lib/aws/api_config/AutoScaling-2011-01-01.yml
|
557
|
-
- lib/aws/api_config/CloudFormation-2010-05-15.yml
|
558
|
-
- lib/aws/api_config/CloudFront-2013-05-12.yml
|
559
|
-
- lib/aws/api_config/CloudFront-2013-08-26.yml
|
560
|
-
- lib/aws/api_config/CloudFront-2013-09-27.yml
|
561
|
-
- lib/aws/api_config/CloudFront-2013-11-11.yml
|
562
|
-
- lib/aws/api_config/CloudFront-2013-11-22.yml
|
563
|
-
- lib/aws/api_config/CloudFront-2014-01-31.yml
|
564
|
-
- lib/aws/api_config/CloudSearch-2011-02-01.yml
|
565
|
-
- lib/aws/api_config/CloudSearch-2013-01-01.yml
|
566
|
-
- lib/aws/api_config/CloudTrail-2013-11-01.yml
|
567
|
-
- lib/aws/api_config/CloudWatch-2010-08-01.yml
|
568
|
-
- lib/aws/api_config/DataPipeline-2012-10-29.yml
|
569
|
-
- lib/aws/api_config/DirectConnect-2012-10-25.yml
|
570
|
-
- lib/aws/api_config/DynamoDB-2011-12-05.yml
|
571
|
-
- lib/aws/api_config/DynamoDB-2012-08-10.yml
|
572
|
-
- lib/aws/api_config/EC2-2013-08-15.yml
|
573
|
-
- lib/aws/api_config/EC2-2013-10-01.yml
|
574
|
-
- lib/aws/api_config/EC2-2013-10-15.yml
|
575
|
-
- lib/aws/api_config/EC2-2014-02-01.yml
|
576
|
-
- lib/aws/api_config/EC2-2014-05-01.yml
|
577
|
-
- lib/aws/api_config/ElastiCache-2013-06-15.yml
|
578
|
-
- lib/aws/api_config/ElastiCache-2014-03-24.yml
|
579
|
-
- lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
|
580
|
-
- lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
|
581
|
-
- lib/aws/api_config/ELB-2012-06-01.yml
|
582
|
-
- lib/aws/api_config/EMR-2009-03-31.yml
|
583
|
-
- lib/aws/api_config/Glacier-2012-06-01.yml
|
584
|
-
- lib/aws/api_config/IAM-2010-05-08.yml
|
585
|
-
- lib/aws/api_config/ImportExport-2010-06-01.yml
|
586
|
-
- lib/aws/api_config/Kinesis-2013-12-02.yml
|
587
|
-
- lib/aws/api_config/OpsWorks-2013-02-18.yml
|
588
|
-
- lib/aws/api_config/RDS-2013-05-15.yml
|
589
|
-
- lib/aws/api_config/RDS-2013-09-09.yml
|
590
|
-
- lib/aws/api_config/Redshift-2012-12-01.yml
|
591
|
-
- lib/aws/api_config/Route53-2012-12-12.yml
|
592
|
-
- lib/aws/api_config/Route53-2013-04-01.yml
|
593
|
-
- lib/aws/api_config/SimpleDB-2009-04-15.yml
|
594
|
-
- lib/aws/api_config/SimpleEmailService-2010-12-01.yml
|
595
|
-
- lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
|
596
|
-
- lib/aws/api_config/SNS-2010-03-31.yml
|
597
|
-
- lib/aws/api_config/SQS-2012-11-05.yml
|
598
|
-
- lib/aws/api_config/StorageGateway-2012-06-30.yml
|
599
|
-
- lib/aws/api_config/StorageGateway-2013-06-30.yml
|
600
|
-
- lib/aws/api_config/STS-2011-06-15.yml
|
601
|
-
- lib/aws/api_config/Support-2013-04-15.yml
|
602
|
-
- bin/aws-rb
|
602
|
+
- rails/init.rb
|
603
603
|
homepage: http://aws.amazon.com/sdkforruby
|
604
604
|
licenses:
|
605
605
|
- Apache 2.0
|
@@ -610,17 +610,17 @@ require_paths:
|
|
610
610
|
- lib
|
611
611
|
required_ruby_version: !ruby/object:Gem::Requirement
|
612
612
|
requirements:
|
613
|
-
- -
|
613
|
+
- - ">="
|
614
614
|
- !ruby/object:Gem::Version
|
615
615
|
version: '0'
|
616
616
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
617
617
|
requirements:
|
618
|
-
- -
|
618
|
+
- - ">="
|
619
619
|
- !ruby/object:Gem::Version
|
620
620
|
version: '0'
|
621
621
|
requirements: []
|
622
622
|
rubyforge_project:
|
623
|
-
rubygems_version: 2.
|
623
|
+
rubygems_version: 2.2.2
|
624
624
|
signing_key:
|
625
625
|
specification_version: 4
|
626
626
|
summary: AWS SDK for Ruby
|