aws-sdk 1.9.5 → 1.10.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.
- data/lib/aws/api_config/DynamoDB-2012-08-10.yml +4 -0
- data/lib/aws/api_config/EC2-2013-02-01.yml +1 -1
- data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +948 -19
- data/lib/aws/api_config/OpsWorks-2013-02-18.yml +83 -2
- data/lib/aws/auto_scaling/client.rb +15 -0
- data/lib/aws/cloud_formation/client.rb +11 -0
- data/lib/aws/cloud_front/client.rb +58 -40
- data/lib/aws/cloud_search/client.rb +20 -0
- data/lib/aws/cloud_watch/client.rb +5 -0
- data/lib/aws/core.rb +5 -4
- data/lib/aws/core/configuration.rb +3 -1
- data/lib/aws/core/policy.rb +27 -1
- data/lib/aws/data_pipeline/client.rb +12 -0
- data/lib/aws/direct_connect/client.rb +11 -0
- data/lib/aws/dynamo_db/client.rb +17 -0
- data/lib/aws/dynamo_db/client_v2.rb +905 -417
- data/lib/aws/ec2.rb +1 -1
- data/lib/aws/ec2/client.rb +88 -0
- data/lib/aws/ec2/instance.rb +3 -1
- data/lib/aws/ec2/security_group.rb +1 -1
- data/lib/aws/elastic_beanstalk/client.rb +21 -0
- data/lib/aws/elastic_transcoder/client.rb +681 -114
- data/lib/aws/elasticache/client.rb +23 -0
- data/lib/aws/elb/client.rb +13 -0
- data/lib/aws/emr/client.rb +3 -0
- data/lib/aws/glacier/client.rb +7 -0
- data/lib/aws/iam/client.rb +35 -0
- data/lib/aws/import_export/client.rb +5 -0
- data/lib/aws/ops_works/client.rb +718 -238
- data/lib/aws/rds/client.rb +46 -0
- data/lib/aws/redshift/client.rb +30 -0
- data/lib/aws/route_53/client.rb +10 -0
- data/lib/aws/s3.rb +1 -1
- data/lib/aws/s3/client.rb +42 -27
- data/lib/aws/s3/client/xml.rb +10 -0
- data/lib/aws/s3/multipart_upload.rb +43 -16
- data/lib/aws/s3/s3_object.rb +61 -26
- data/lib/aws/s3/uploaded_part.rb +3 -1
- data/lib/aws/s3/uploaded_part_collection.rb +1 -1
- data/lib/aws/simple_db/client.rb +10 -0
- data/lib/aws/simple_email_service/client.rb +11 -0
- data/lib/aws/simple_workflow/client.rb +18 -0
- data/lib/aws/sns/client.rb +9 -0
- data/lib/aws/sqs/client.rb +9 -0
- data/lib/aws/storage_gateway/client.rb +72 -37
- data/lib/aws/sts/client.rb +3 -0
- data/lib/aws/version.rb +1 -1
- metadata +17 -9
- checksums.yaml +0 -7
@@ -47,7 +47,7 @@ module AWS
|
|
47
47
|
protected
|
48
48
|
def each_member_in_page(page, &block)
|
49
49
|
page.parts.each do |part_info|
|
50
|
-
part = UploadedPart.new(upload, part_info.part_number)
|
50
|
+
part = UploadedPart.new(upload, part_info.part_number, :etag => part_info.etag)
|
51
51
|
yield(part)
|
52
52
|
end
|
53
53
|
end
|
data/lib/aws/simple_db/client.rb
CHANGED
@@ -68,6 +68,7 @@ module AWS
|
|
68
68
|
# @return [Core::Response]
|
69
69
|
# The #data method of the response object returns
|
70
70
|
# a hash with the following structure:
|
71
|
+
#
|
71
72
|
# * `:response_metadata` - (Hash)
|
72
73
|
# * `:box_usage` - (Numeric)
|
73
74
|
# * `:response_id` - (String)
|
@@ -92,6 +93,7 @@ module AWS
|
|
92
93
|
# @return [Core::Response]
|
93
94
|
# The #data method of the response object returns
|
94
95
|
# a hash with the following structure:
|
96
|
+
#
|
95
97
|
# * `:response_metadata` - (Hash)
|
96
98
|
# * `:box_usage` - (Numeric)
|
97
99
|
# * `:response_id` - (String)
|
@@ -105,6 +107,7 @@ module AWS
|
|
105
107
|
# @return [Core::Response]
|
106
108
|
# The #data method of the response object returns
|
107
109
|
# a hash with the following structure:
|
110
|
+
#
|
108
111
|
# * `:response_metadata` - (Hash)
|
109
112
|
# * `:box_usage` - (Numeric)
|
110
113
|
# * `:response_id` - (String)
|
@@ -139,6 +142,7 @@ module AWS
|
|
139
142
|
# @return [Core::Response]
|
140
143
|
# The #data method of the response object returns
|
141
144
|
# a hash with the following structure:
|
145
|
+
#
|
142
146
|
# * `:response_metadata` - (Hash)
|
143
147
|
# * `:box_usage` - (Numeric)
|
144
148
|
# * `:response_id` - (String)
|
@@ -151,6 +155,7 @@ module AWS
|
|
151
155
|
# @return [Core::Response]
|
152
156
|
# The #data method of the response object returns
|
153
157
|
# a hash with the following structure:
|
158
|
+
#
|
154
159
|
# * `:response_metadata` - (Hash)
|
155
160
|
# * `:box_usage` - (Numeric)
|
156
161
|
# * `:response_id` - (String)
|
@@ -163,6 +168,7 @@ module AWS
|
|
163
168
|
# @return [Core::Response]
|
164
169
|
# The #data method of the response object returns
|
165
170
|
# a hash with the following structure:
|
171
|
+
#
|
166
172
|
# * `:item_count` - (Integer)
|
167
173
|
# * `:item_names_size_bytes` - (Integer)
|
168
174
|
# * `:attribute_name_count` - (Integer)
|
@@ -189,6 +195,7 @@ module AWS
|
|
189
195
|
# @return [Core::Response]
|
190
196
|
# The #data method of the response object returns
|
191
197
|
# a hash with the following structure:
|
198
|
+
#
|
192
199
|
# * `:attributes` - (Array<Hash>)
|
193
200
|
# * `:name` - (String)
|
194
201
|
# * `:alternate_name_encoding` - (String)
|
@@ -209,6 +216,7 @@ module AWS
|
|
209
216
|
# @return [Core::Response]
|
210
217
|
# The #data method of the response object returns
|
211
218
|
# a hash with the following structure:
|
219
|
+
#
|
212
220
|
# * `:domain_names` - (Array<String>)
|
213
221
|
# * `:next_token` - (String)
|
214
222
|
# * `:response_metadata` - (Hash)
|
@@ -246,6 +254,7 @@ module AWS
|
|
246
254
|
# @return [Core::Response]
|
247
255
|
# The #data method of the response object returns
|
248
256
|
# a hash with the following structure:
|
257
|
+
#
|
249
258
|
# * `:response_metadata` - (Hash)
|
250
259
|
# * `:box_usage` - (Numeric)
|
251
260
|
# * `:response_id` - (String)
|
@@ -265,6 +274,7 @@ module AWS
|
|
265
274
|
# @return [Core::Response]
|
266
275
|
# The #data method of the response object returns
|
267
276
|
# a hash with the following structure:
|
277
|
+
#
|
268
278
|
# * `:items` - (Array<Hash>)
|
269
279
|
# * `:name` - (String)
|
270
280
|
# * `:alternate_name_encoding` - (String)
|
@@ -46,6 +46,7 @@ module AWS
|
|
46
46
|
# @return [Core::Response]
|
47
47
|
# The #data method of the response object returns
|
48
48
|
# a hash with the following structure:
|
49
|
+
#
|
49
50
|
# * `:dkim_attributes` - (Hash<String,Hash>)
|
50
51
|
# * `:dkim_enabled` - (Boolean)
|
51
52
|
# * `:dkim_verification_status` - (String)
|
@@ -59,6 +60,7 @@ module AWS
|
|
59
60
|
# @return [Core::Response]
|
60
61
|
# The #data method of the response object returns
|
61
62
|
# a hash with the following structure:
|
63
|
+
#
|
62
64
|
# * `:notification_attributes` - (Hash<String,Hash>)
|
63
65
|
# * `:bounce_topic` - (String)
|
64
66
|
# * `:complaint_topic` - (String)
|
@@ -71,6 +73,7 @@ module AWS
|
|
71
73
|
# @return [Core::Response]
|
72
74
|
# The #data method of the response object returns
|
73
75
|
# a hash with the following structure:
|
76
|
+
#
|
74
77
|
# * `:verification_attributes` - (Hash<String,Hash>)
|
75
78
|
# * `:verification_status` - (String)
|
76
79
|
# * `:verification_token` - (String)
|
@@ -81,6 +84,7 @@ module AWS
|
|
81
84
|
# @return [Core::Response]
|
82
85
|
# The #data method of the response object returns
|
83
86
|
# a hash with the following structure:
|
87
|
+
#
|
84
88
|
# * `:max_24_hour_send` - (Numeric)
|
85
89
|
# * `:max_send_rate` - (Numeric)
|
86
90
|
# * `:sent_last_24_hours` - (Numeric)
|
@@ -91,6 +95,7 @@ module AWS
|
|
91
95
|
# @return [Core::Response]
|
92
96
|
# The #data method of the response object returns
|
93
97
|
# a hash with the following structure:
|
98
|
+
#
|
94
99
|
# * `:send_data_points` - (Array<Hash>)
|
95
100
|
# * `:timestamp` - (Time)
|
96
101
|
# * `:delivery_attempts` - (Integer)
|
@@ -113,6 +118,7 @@ module AWS
|
|
113
118
|
# @return [Core::Response]
|
114
119
|
# The #data method of the response object returns
|
115
120
|
# a hash with the following structure:
|
121
|
+
#
|
116
122
|
# * `:identities` - (Array<String>)
|
117
123
|
# * `:next_token` - (String)
|
118
124
|
|
@@ -122,6 +128,7 @@ module AWS
|
|
122
128
|
# @return [Core::Response]
|
123
129
|
# The #data method of the response object returns
|
124
130
|
# a hash with the following structure:
|
131
|
+
#
|
125
132
|
# * `:verified_email_addresses` - (Array<String>)
|
126
133
|
|
127
134
|
# @!method send_email(options = {})
|
@@ -168,6 +175,7 @@ module AWS
|
|
168
175
|
# @return [Core::Response]
|
169
176
|
# The #data method of the response object returns
|
170
177
|
# a hash with the following structure:
|
178
|
+
#
|
171
179
|
# * `:message_id` - (String)
|
172
180
|
|
173
181
|
# @!method send_raw_email(options = {})
|
@@ -196,6 +204,7 @@ module AWS
|
|
196
204
|
# @return [Core::Response]
|
197
205
|
# The #data method of the response object returns
|
198
206
|
# a hash with the following structure:
|
207
|
+
#
|
199
208
|
# * `:message_id` - (String)
|
200
209
|
|
201
210
|
# @!method set_identity_dkim_enabled(options = {})
|
@@ -248,6 +257,7 @@ module AWS
|
|
248
257
|
# @return [Core::Response]
|
249
258
|
# The #data method of the response object returns
|
250
259
|
# a hash with the following structure:
|
260
|
+
#
|
251
261
|
# * `:dkim_tokens` - (Array<String>)
|
252
262
|
|
253
263
|
# @!method verify_domain_identity(options = {})
|
@@ -257,6 +267,7 @@ module AWS
|
|
257
267
|
# @return [Core::Response]
|
258
268
|
# The #data method of the response object returns
|
259
269
|
# a hash with the following structure:
|
270
|
+
#
|
260
271
|
# * `:verification_token` - (String)
|
261
272
|
|
262
273
|
# @!method verify_email_address(options = {})
|
@@ -66,6 +66,7 @@ module AWS
|
|
66
66
|
# @return [Core::Response]
|
67
67
|
# The #data method of the response object returns
|
68
68
|
# a hash with the following structure:
|
69
|
+
#
|
69
70
|
# * `count` - (Integer)
|
70
71
|
# * `truncated` - (Boolean)
|
71
72
|
|
@@ -86,6 +87,7 @@ module AWS
|
|
86
87
|
# @return [Core::Response]
|
87
88
|
# The #data method of the response object returns
|
88
89
|
# a hash with the following structure:
|
90
|
+
#
|
89
91
|
# * `count` - (Integer)
|
90
92
|
# * `truncated` - (Boolean)
|
91
93
|
|
@@ -98,6 +100,7 @@ module AWS
|
|
98
100
|
# @return [Core::Response]
|
99
101
|
# The #data method of the response object returns
|
100
102
|
# a hash with the following structure:
|
103
|
+
#
|
101
104
|
# * `count` - (Integer)
|
102
105
|
# * `truncated` - (Boolean)
|
103
106
|
|
@@ -110,6 +113,7 @@ module AWS
|
|
110
113
|
# @return [Core::Response]
|
111
114
|
# The #data method of the response object returns
|
112
115
|
# a hash with the following structure:
|
116
|
+
#
|
113
117
|
# * `count` - (Integer)
|
114
118
|
# * `truncated` - (Boolean)
|
115
119
|
|
@@ -147,6 +151,7 @@ module AWS
|
|
147
151
|
# @return [Core::Response]
|
148
152
|
# The #data method of the response object returns
|
149
153
|
# a hash with the following structure:
|
154
|
+
#
|
150
155
|
# * `typeInfo` - (Hash)
|
151
156
|
# * `activityType` - (Hash)
|
152
157
|
# * `name` - (String)
|
@@ -170,6 +175,7 @@ module AWS
|
|
170
175
|
# @return [Core::Response]
|
171
176
|
# The #data method of the response object returns
|
172
177
|
# a hash with the following structure:
|
178
|
+
#
|
173
179
|
# * `domainInfo` - (Hash)
|
174
180
|
# * `name` - (String)
|
175
181
|
# * `status` - (String)
|
@@ -187,6 +193,7 @@ module AWS
|
|
187
193
|
# @return [Core::Response]
|
188
194
|
# The #data method of the response object returns
|
189
195
|
# a hash with the following structure:
|
196
|
+
#
|
190
197
|
# * `executionInfo` - (Hash)
|
191
198
|
# * `execution` - (Hash)
|
192
199
|
# * `workflowId` - (String)
|
@@ -227,6 +234,7 @@ module AWS
|
|
227
234
|
# @return [Core::Response]
|
228
235
|
# The #data method of the response object returns
|
229
236
|
# a hash with the following structure:
|
237
|
+
#
|
230
238
|
# * `typeInfo` - (Hash)
|
231
239
|
# * `workflowType` - (Hash)
|
232
240
|
# * `name` - (String)
|
@@ -255,6 +263,7 @@ module AWS
|
|
255
263
|
# @return [Core::Response]
|
256
264
|
# The #data method of the response object returns
|
257
265
|
# a hash with the following structure:
|
266
|
+
#
|
258
267
|
# * `events` - (Array<Hash>)
|
259
268
|
# * `eventTimestamp` - (Time)
|
260
269
|
# * `eventType` - (String)
|
@@ -551,6 +560,7 @@ module AWS
|
|
551
560
|
# @return [Core::Response]
|
552
561
|
# The #data method of the response object returns
|
553
562
|
# a hash with the following structure:
|
563
|
+
#
|
554
564
|
# * `typeInfos` - (Array<Hash>)
|
555
565
|
# * `activityType` - (Hash)
|
556
566
|
# * `name` - (String)
|
@@ -592,6 +602,7 @@ module AWS
|
|
592
602
|
# @return [Core::Response]
|
593
603
|
# The #data method of the response object returns
|
594
604
|
# a hash with the following structure:
|
605
|
+
#
|
595
606
|
# * `executionInfos` - (Array<Hash>)
|
596
607
|
# * `execution` - (Hash)
|
597
608
|
# * `workflowId` - (String)
|
@@ -623,6 +634,7 @@ module AWS
|
|
623
634
|
# @return [Core::Response]
|
624
635
|
# The #data method of the response object returns
|
625
636
|
# a hash with the following structure:
|
637
|
+
#
|
626
638
|
# * `domainInfos` - (Array<Hash>)
|
627
639
|
# * `name` - (String)
|
628
640
|
# * `status` - (String)
|
@@ -649,6 +661,7 @@ module AWS
|
|
649
661
|
# @return [Core::Response]
|
650
662
|
# The #data method of the response object returns
|
651
663
|
# a hash with the following structure:
|
664
|
+
#
|
652
665
|
# * `executionInfos` - (Array<Hash>)
|
653
666
|
# * `execution` - (Hash)
|
654
667
|
# * `workflowId` - (String)
|
@@ -682,6 +695,7 @@ module AWS
|
|
682
695
|
# @return [Core::Response]
|
683
696
|
# The #data method of the response object returns
|
684
697
|
# a hash with the following structure:
|
698
|
+
#
|
685
699
|
# * `typeInfos` - (Array<Hash>)
|
686
700
|
# * `workflowType` - (Hash)
|
687
701
|
# * `name` - (String)
|
@@ -702,6 +716,7 @@ module AWS
|
|
702
716
|
# @return [Core::Response]
|
703
717
|
# The #data method of the response object returns
|
704
718
|
# a hash with the following structure:
|
719
|
+
#
|
705
720
|
# * `taskToken` - (String)
|
706
721
|
# * `activityId` - (String)
|
707
722
|
# * `startedEventId` - (Integer)
|
@@ -726,6 +741,7 @@ module AWS
|
|
726
741
|
# @return [Core::Response]
|
727
742
|
# The #data method of the response object returns
|
728
743
|
# a hash with the following structure:
|
744
|
+
#
|
729
745
|
# * `taskToken` - (String)
|
730
746
|
# * `startedEventId` - (Integer)
|
731
747
|
# * `workflowExecution` - (Hash)
|
@@ -1024,6 +1040,7 @@ module AWS
|
|
1024
1040
|
# @return [Core::Response]
|
1025
1041
|
# The #data method of the response object returns
|
1026
1042
|
# a hash with the following structure:
|
1043
|
+
#
|
1027
1044
|
# * `cancelRequested` - (Boolean)
|
1028
1045
|
|
1029
1046
|
# @!method register_activity_type(options = {})
|
@@ -1217,6 +1234,7 @@ module AWS
|
|
1217
1234
|
# @return [Core::Response]
|
1218
1235
|
# The #data method of the response object returns
|
1219
1236
|
# a hash with the following structure:
|
1237
|
+
#
|
1220
1238
|
# * `runId` - (String)
|
1221
1239
|
|
1222
1240
|
# @!method terminate_workflow_execution(options = {})
|
data/lib/aws/sns/client.rb
CHANGED
@@ -53,6 +53,7 @@ module AWS
|
|
53
53
|
# @return [Core::Response]
|
54
54
|
# The #data method of the response object returns
|
55
55
|
# a hash with the following structure:
|
56
|
+
#
|
56
57
|
# * `:subscription_arn` - (String)
|
57
58
|
|
58
59
|
# @!method create_topic(options = {})
|
@@ -65,6 +66,7 @@ module AWS
|
|
65
66
|
# @return [Core::Response]
|
66
67
|
# The #data method of the response object returns
|
67
68
|
# a hash with the following structure:
|
69
|
+
#
|
68
70
|
# * `:topic_arn` - (String)
|
69
71
|
|
70
72
|
# @!method delete_topic(options = {})
|
@@ -92,6 +94,7 @@ module AWS
|
|
92
94
|
# @return [Core::Response]
|
93
95
|
# The #data method of the response object returns
|
94
96
|
# a hash with the following structure:
|
97
|
+
#
|
95
98
|
# * `:attributes` - (Hash<String,String>)
|
96
99
|
|
97
100
|
# @!method get_topic_attributes(options = {})
|
@@ -102,6 +105,7 @@ module AWS
|
|
102
105
|
# @return [Core::Response]
|
103
106
|
# The #data method of the response object returns
|
104
107
|
# a hash with the following structure:
|
108
|
+
#
|
105
109
|
# * `:attributes` - (Hash<String,String>)
|
106
110
|
|
107
111
|
# @!method list_subscriptions(options = {})
|
@@ -112,6 +116,7 @@ module AWS
|
|
112
116
|
# @return [Core::Response]
|
113
117
|
# The #data method of the response object returns
|
114
118
|
# a hash with the following structure:
|
119
|
+
#
|
115
120
|
# * `:subscriptions` - (Array<Hash>)
|
116
121
|
# * `:subscription_arn` - (String)
|
117
122
|
# * `:owner` - (String)
|
@@ -130,6 +135,7 @@ module AWS
|
|
130
135
|
# @return [Core::Response]
|
131
136
|
# The #data method of the response object returns
|
132
137
|
# a hash with the following structure:
|
138
|
+
#
|
133
139
|
# * `:subscriptions` - (Array<Hash>)
|
134
140
|
# * `:subscription_arn` - (String)
|
135
141
|
# * `:owner` - (String)
|
@@ -146,6 +152,7 @@ module AWS
|
|
146
152
|
# @return [Core::Response]
|
147
153
|
# The #data method of the response object returns
|
148
154
|
# a hash with the following structure:
|
155
|
+
#
|
149
156
|
# * `:topics` - (Array<Hash>)
|
150
157
|
# * `:topic_arn` - (String)
|
151
158
|
# * `:next_token` - (String)
|
@@ -189,6 +196,7 @@ module AWS
|
|
189
196
|
# @return [Core::Response]
|
190
197
|
# The #data method of the response object returns
|
191
198
|
# a hash with the following structure:
|
199
|
+
#
|
192
200
|
# * `:message_id` - (String)
|
193
201
|
|
194
202
|
# @!method remove_permission(options = {})
|
@@ -248,6 +256,7 @@ module AWS
|
|
248
256
|
# @return [Core::Response]
|
249
257
|
# The #data method of the response object returns
|
250
258
|
# a hash with the following structure:
|
259
|
+
#
|
251
260
|
# * `:subscription_arn` - (String)
|
252
261
|
|
253
262
|
# @!method unsubscribe(options = {})
|
data/lib/aws/sqs/client.rb
CHANGED
@@ -67,6 +67,7 @@ module AWS
|
|
67
67
|
# @return [Core::Response]
|
68
68
|
# The #data method of the response object returns
|
69
69
|
# a hash with the following structure:
|
70
|
+
#
|
70
71
|
# * `:successful` - (Array<Hash>)
|
71
72
|
# * `:id` - (String)
|
72
73
|
# * `:failed` - (Array<Hash>)
|
@@ -85,6 +86,7 @@ module AWS
|
|
85
86
|
# @return [Core::Response]
|
86
87
|
# The #data method of the response object returns
|
87
88
|
# a hash with the following structure:
|
89
|
+
#
|
88
90
|
# * `:queue_url` - (String)
|
89
91
|
|
90
92
|
# @!method delete_message(options = {})
|
@@ -110,6 +112,7 @@ module AWS
|
|
110
112
|
# @return [Core::Response]
|
111
113
|
# The #data method of the response object returns
|
112
114
|
# a hash with the following structure:
|
115
|
+
#
|
113
116
|
# * `:successful` - (Array<Hash>)
|
114
117
|
# * `:id` - (String)
|
115
118
|
# * `:failed` - (Array<Hash>)
|
@@ -135,6 +138,7 @@ module AWS
|
|
135
138
|
# @return [Core::Response]
|
136
139
|
# The #data method of the response object returns
|
137
140
|
# a hash with the following structure:
|
141
|
+
#
|
138
142
|
# * `:attributes` - (Hash<String,String>)
|
139
143
|
|
140
144
|
# @!method get_queue_url(options = {})
|
@@ -147,6 +151,7 @@ module AWS
|
|
147
151
|
# @return [Core::Response]
|
148
152
|
# The #data method of the response object returns
|
149
153
|
# a hash with the following structure:
|
154
|
+
#
|
150
155
|
# * `:queue_url` - (String)
|
151
156
|
|
152
157
|
# @!method list_queues(options = {})
|
@@ -158,6 +163,7 @@ module AWS
|
|
158
163
|
# @return [Core::Response]
|
159
164
|
# The #data method of the response object returns
|
160
165
|
# a hash with the following structure:
|
166
|
+
#
|
161
167
|
# * `:queue_urls` - (Array<String>)
|
162
168
|
|
163
169
|
# @!method receive_message(options = {})
|
@@ -183,6 +189,7 @@ module AWS
|
|
183
189
|
# @return [Core::Response]
|
184
190
|
# The #data method of the response object returns
|
185
191
|
# a hash with the following structure:
|
192
|
+
#
|
186
193
|
# * `:messages` - (Array<Hash>)
|
187
194
|
# * `:message_id` - (String)
|
188
195
|
# * `:receipt_handle` - (String)
|
@@ -211,6 +218,7 @@ module AWS
|
|
211
218
|
# @return [Core::Response]
|
212
219
|
# The #data method of the response object returns
|
213
220
|
# a hash with the following structure:
|
221
|
+
#
|
214
222
|
# * `:md5_of_message_body` - (String)
|
215
223
|
# * `:message_id` - (String)
|
216
224
|
|
@@ -230,6 +238,7 @@ module AWS
|
|
230
238
|
# @return [Core::Response]
|
231
239
|
# The #data method of the response object returns
|
232
240
|
# a hash with the following structure:
|
241
|
+
#
|
233
242
|
# * `:successful` - (Array<Hash>)
|
234
243
|
# * `:id` - (String)
|
235
244
|
# * `:message_id` - (String)
|
@@ -42,23 +42,23 @@ module AWS
|
|
42
42
|
# * `GMT-2:00`
|
43
43
|
# * `GMT-1:00`
|
44
44
|
# * `GMT`
|
45
|
-
# * `GMT
|
46
|
-
# * `GMT
|
47
|
-
# * `GMT
|
48
|
-
# * `GMT
|
49
|
-
# * `GMT
|
50
|
-
# * `GMT
|
51
|
-
# * `GMT
|
52
|
-
# * `GMT
|
53
|
-
# * `GMT
|
54
|
-
# * `GMT
|
55
|
-
# * `GMT
|
56
|
-
# * `GMT
|
57
|
-
# * `GMT
|
58
|
-
# * `GMT
|
59
|
-
# * `GMT
|
60
|
-
# * `GMT
|
61
|
-
# * `GMT
|
45
|
+
# * `GMT+1:00`
|
46
|
+
# * `GMT+2:00`
|
47
|
+
# * `GMT+3:00`
|
48
|
+
# * `GMT+3:30`
|
49
|
+
# * `GMT+4:00`
|
50
|
+
# * `GMT+4:30`
|
51
|
+
# * `GMT+5:00`
|
52
|
+
# * `GMT+5:30`
|
53
|
+
# * `GMT+5:45`
|
54
|
+
# * `GMT+6:00`
|
55
|
+
# * `GMT+7:00`
|
56
|
+
# * `GMT+8:00`
|
57
|
+
# * `GMT+9:00`
|
58
|
+
# * `GMT+9:30`
|
59
|
+
# * `GMT+10:00`
|
60
|
+
# * `GMT+11:00`
|
61
|
+
# * `GMT+12:00`
|
62
62
|
# * `:gateway_region` - *required* - (String)
|
63
63
|
# * `:gateway_type` - (String) Valid values include:
|
64
64
|
# * `STORED`
|
@@ -66,6 +66,7 @@ module AWS
|
|
66
66
|
# @return [Core::Response]
|
67
67
|
# The #data method of the response object returns
|
68
68
|
# a hash with the following structure:
|
69
|
+
#
|
69
70
|
# * `:gateway_arn` - (String)
|
70
71
|
|
71
72
|
# @!method add_cache(options = {})
|
@@ -76,6 +77,7 @@ module AWS
|
|
76
77
|
# @return [Core::Response]
|
77
78
|
# The #data method of the response object returns
|
78
79
|
# a hash with the following structure:
|
80
|
+
#
|
79
81
|
# * `:gateway_arn` - (String)
|
80
82
|
|
81
83
|
# @!method add_upload_buffer(options = {})
|
@@ -86,6 +88,7 @@ module AWS
|
|
86
88
|
# @return [Core::Response]
|
87
89
|
# The #data method of the response object returns
|
88
90
|
# a hash with the following structure:
|
91
|
+
#
|
89
92
|
# * `:gateway_arn` - (String)
|
90
93
|
|
91
94
|
# @!method add_working_storage(options = {})
|
@@ -96,6 +99,7 @@ module AWS
|
|
96
99
|
# @return [Core::Response]
|
97
100
|
# The #data method of the response object returns
|
98
101
|
# a hash with the following structure:
|
102
|
+
#
|
99
103
|
# * `:gateway_arn` - (String)
|
100
104
|
|
101
105
|
# @!method create_cachedi_scsi_volume(options = {})
|
@@ -110,6 +114,7 @@ module AWS
|
|
110
114
|
# @return [Core::Response]
|
111
115
|
# The #data method of the response object returns
|
112
116
|
# a hash with the following structure:
|
117
|
+
#
|
113
118
|
# * `:volume_arn` - (String)
|
114
119
|
# * `:target_arn` - (String)
|
115
120
|
|
@@ -121,6 +126,7 @@ module AWS
|
|
121
126
|
# @return [Core::Response]
|
122
127
|
# The #data method of the response object returns
|
123
128
|
# a hash with the following structure:
|
129
|
+
#
|
124
130
|
# * `:volume_arn` - (String)
|
125
131
|
# * `:snapshot_id` - (String)
|
126
132
|
|
@@ -132,6 +138,7 @@ module AWS
|
|
132
138
|
# @return [Core::Response]
|
133
139
|
# The #data method of the response object returns
|
134
140
|
# a hash with the following structure:
|
141
|
+
#
|
135
142
|
# * `:snapshot_id` - (String)
|
136
143
|
# * `:volume_arn` - (String)
|
137
144
|
# * `:volume_recovery_point_time` - (String)
|
@@ -148,6 +155,7 @@ module AWS
|
|
148
155
|
# @return [Core::Response]
|
149
156
|
# The #data method of the response object returns
|
150
157
|
# a hash with the following structure:
|
158
|
+
#
|
151
159
|
# * `:volume_arn` - (String)
|
152
160
|
# * `:volume_size_in_bytes` - (Integer)
|
153
161
|
# * `:target_arn` - (String)
|
@@ -163,6 +171,7 @@ module AWS
|
|
163
171
|
# @return [Core::Response]
|
164
172
|
# The #data method of the response object returns
|
165
173
|
# a hash with the following structure:
|
174
|
+
#
|
166
175
|
# * `:gateway_arn` - (String)
|
167
176
|
|
168
177
|
# @!method delete_chap_credentials(options = {})
|
@@ -173,6 +182,7 @@ module AWS
|
|
173
182
|
# @return [Core::Response]
|
174
183
|
# The #data method of the response object returns
|
175
184
|
# a hash with the following structure:
|
185
|
+
#
|
176
186
|
# * `:target_arn` - (String)
|
177
187
|
# * `:initiator_name` - (String)
|
178
188
|
|
@@ -183,6 +193,7 @@ module AWS
|
|
183
193
|
# @return [Core::Response]
|
184
194
|
# The #data method of the response object returns
|
185
195
|
# a hash with the following structure:
|
196
|
+
#
|
186
197
|
# * `:gateway_arn` - (String)
|
187
198
|
|
188
199
|
# @!method delete_snapshot_schedule(options = {})
|
@@ -192,6 +203,7 @@ module AWS
|
|
192
203
|
# @return [Core::Response]
|
193
204
|
# The #data method of the response object returns
|
194
205
|
# a hash with the following structure:
|
206
|
+
#
|
195
207
|
# * `:volume_arn` - (String)
|
196
208
|
|
197
209
|
# @!method delete_volume(options = {})
|
@@ -201,6 +213,7 @@ module AWS
|
|
201
213
|
# @return [Core::Response]
|
202
214
|
# The #data method of the response object returns
|
203
215
|
# a hash with the following structure:
|
216
|
+
#
|
204
217
|
# * `:volume_arn` - (String)
|
205
218
|
|
206
219
|
# @!method describe_bandwidth_rate_limit(options = {})
|
@@ -210,6 +223,7 @@ module AWS
|
|
210
223
|
# @return [Core::Response]
|
211
224
|
# The #data method of the response object returns
|
212
225
|
# a hash with the following structure:
|
226
|
+
#
|
213
227
|
# * `:gateway_arn` - (String)
|
214
228
|
# * `:average_upload_rate_limit_in_bits_per_sec` - (Integer)
|
215
229
|
# * `:average_download_rate_limit_in_bits_per_sec` - (Integer)
|
@@ -221,6 +235,7 @@ module AWS
|
|
221
235
|
# @return [Core::Response]
|
222
236
|
# The #data method of the response object returns
|
223
237
|
# a hash with the following structure:
|
238
|
+
#
|
224
239
|
# * `:gateway_arn` - (String)
|
225
240
|
# * `:disk_ids` - (Array<String>)
|
226
241
|
# * `:cache_allocated_in_bytes` - (Integer)
|
@@ -236,6 +251,7 @@ module AWS
|
|
236
251
|
# @return [Core::Response]
|
237
252
|
# The #data method of the response object returns
|
238
253
|
# a hash with the following structure:
|
254
|
+
#
|
239
255
|
# * `:cachedi_scsi_volumes` - (Array<Hash>)
|
240
256
|
# * `:volume_arn` - (String)
|
241
257
|
# * `:volume_id` - (String)
|
@@ -258,6 +274,7 @@ module AWS
|
|
258
274
|
# @return [Core::Response]
|
259
275
|
# The #data method of the response object returns
|
260
276
|
# a hash with the following structure:
|
277
|
+
#
|
261
278
|
# * `:chap_credentials` - (Array<Hash>)
|
262
279
|
# * `:target_arn` - (String)
|
263
280
|
# * `:secret_to_authenticate_initiator` - (String)
|
@@ -271,6 +288,7 @@ module AWS
|
|
271
288
|
# @return [Core::Response]
|
272
289
|
# The #data method of the response object returns
|
273
290
|
# a hash with the following structure:
|
291
|
+
#
|
274
292
|
# * `:gateway_arn` - (String)
|
275
293
|
# * `:gateway_id` - (String)
|
276
294
|
# * `:gateway_timezone` - (String)
|
@@ -289,6 +307,7 @@ module AWS
|
|
289
307
|
# @return [Core::Response]
|
290
308
|
# The #data method of the response object returns
|
291
309
|
# a hash with the following structure:
|
310
|
+
#
|
292
311
|
# * `:gateway_arn` - (String)
|
293
312
|
# * `:hour_of_day` - (Integer)
|
294
313
|
# * `:minute_of_hour` - (Integer)
|
@@ -302,6 +321,7 @@ module AWS
|
|
302
321
|
# @return [Core::Response]
|
303
322
|
# The #data method of the response object returns
|
304
323
|
# a hash with the following structure:
|
324
|
+
#
|
305
325
|
# * `:volume_arn` - (String)
|
306
326
|
# * `:start_at` - (Integer)
|
307
327
|
# * `:recurrence_in_hours` - (Integer)
|
@@ -315,6 +335,7 @@ module AWS
|
|
315
335
|
# @return [Core::Response]
|
316
336
|
# The #data method of the response object returns
|
317
337
|
# a hash with the following structure:
|
338
|
+
#
|
318
339
|
# * `:storedi_scsi_volumes` - (Array<Hash>)
|
319
340
|
# * `:volume_arn` - (String)
|
320
341
|
# * `:volume_id` - (String)
|
@@ -339,6 +360,7 @@ module AWS
|
|
339
360
|
# @return [Core::Response]
|
340
361
|
# The #data method of the response object returns
|
341
362
|
# a hash with the following structure:
|
363
|
+
#
|
342
364
|
# * `:gateway_arn` - (String)
|
343
365
|
# * `:disk_ids` - (Array<String>)
|
344
366
|
# * `:upload_buffer_used_in_bytes` - (Integer)
|
@@ -351,6 +373,7 @@ module AWS
|
|
351
373
|
# @return [Core::Response]
|
352
374
|
# The #data method of the response object returns
|
353
375
|
# a hash with the following structure:
|
376
|
+
#
|
354
377
|
# * `:gateway_arn` - (String)
|
355
378
|
# * `:disk_ids` - (Array<String>)
|
356
379
|
# * `:working_storage_used_in_bytes` - (Integer)
|
@@ -364,6 +387,7 @@ module AWS
|
|
364
387
|
# @return [Core::Response]
|
365
388
|
# The #data method of the response object returns
|
366
389
|
# a hash with the following structure:
|
390
|
+
#
|
367
391
|
# * `:gateways` - (Array<Hash>)
|
368
392
|
# * `:gateway_arn` - (String)
|
369
393
|
# * `:marker` - (String)
|
@@ -375,6 +399,7 @@ module AWS
|
|
375
399
|
# @return [Core::Response]
|
376
400
|
# The #data method of the response object returns
|
377
401
|
# a hash with the following structure:
|
402
|
+
#
|
378
403
|
# * `:gateway_arn` - (String)
|
379
404
|
# * `:disks` - (Array<Hash>)
|
380
405
|
# * `:disk_id` - (String)
|
@@ -391,6 +416,7 @@ module AWS
|
|
391
416
|
# @return [Core::Response]
|
392
417
|
# The #data method of the response object returns
|
393
418
|
# a hash with the following structure:
|
419
|
+
#
|
394
420
|
# * `:gateway_arn` - (String)
|
395
421
|
# * `:volume_recovery_point_infos` - (Array<Hash>)
|
396
422
|
# * `:volume_arn` - (String)
|
@@ -407,6 +433,7 @@ module AWS
|
|
407
433
|
# @return [Core::Response]
|
408
434
|
# The #data method of the response object returns
|
409
435
|
# a hash with the following structure:
|
436
|
+
#
|
410
437
|
# * `:gateway_arn` - (String)
|
411
438
|
# * `:marker` - (String)
|
412
439
|
# * `:volume_infos` - (Array<Hash>)
|
@@ -420,6 +447,7 @@ module AWS
|
|
420
447
|
# @return [Core::Response]
|
421
448
|
# The #data method of the response object returns
|
422
449
|
# a hash with the following structure:
|
450
|
+
#
|
423
451
|
# * `:gateway_arn` - (String)
|
424
452
|
|
425
453
|
# @!method start_gateway(options = {})
|
@@ -429,6 +457,7 @@ module AWS
|
|
429
457
|
# @return [Core::Response]
|
430
458
|
# The #data method of the response object returns
|
431
459
|
# a hash with the following structure:
|
460
|
+
#
|
432
461
|
# * `:gateway_arn` - (String)
|
433
462
|
|
434
463
|
# @!method update_bandwidth_rate_limit(options = {})
|
@@ -440,6 +469,7 @@ module AWS
|
|
440
469
|
# @return [Core::Response]
|
441
470
|
# The #data method of the response object returns
|
442
471
|
# a hash with the following structure:
|
472
|
+
#
|
443
473
|
# * `:gateway_arn` - (String)
|
444
474
|
|
445
475
|
# @!method update_chap_credentials(options = {})
|
@@ -452,6 +482,7 @@ module AWS
|
|
452
482
|
# @return [Core::Response]
|
453
483
|
# The #data method of the response object returns
|
454
484
|
# a hash with the following structure:
|
485
|
+
#
|
455
486
|
# * `:target_arn` - (String)
|
456
487
|
# * `:initiator_name` - (String)
|
457
488
|
|
@@ -475,26 +506,27 @@ module AWS
|
|
475
506
|
# * `GMT-2:00`
|
476
507
|
# * `GMT-1:00`
|
477
508
|
# * `GMT`
|
478
|
-
# * `GMT
|
479
|
-
# * `GMT
|
480
|
-
# * `GMT
|
481
|
-
# * `GMT
|
482
|
-
# * `GMT
|
483
|
-
# * `GMT
|
484
|
-
# * `GMT
|
485
|
-
# * `GMT
|
486
|
-
# * `GMT
|
487
|
-
# * `GMT
|
488
|
-
# * `GMT
|
489
|
-
# * `GMT
|
490
|
-
# * `GMT
|
491
|
-
# * `GMT
|
492
|
-
# * `GMT
|
493
|
-
# * `GMT
|
494
|
-
# * `GMT
|
495
|
-
# @return [Core::Response]
|
496
|
-
# The #data method of the response object returns
|
497
|
-
# a hash with the following structure:
|
509
|
+
# * `GMT+1:00`
|
510
|
+
# * `GMT+2:00`
|
511
|
+
# * `GMT+3:00`
|
512
|
+
# * `GMT+3:30`
|
513
|
+
# * `GMT+4:00`
|
514
|
+
# * `GMT+4:30`
|
515
|
+
# * `GMT+5:00`
|
516
|
+
# * `GMT+5:30`
|
517
|
+
# * `GMT+5:45`
|
518
|
+
# * `GMT+6:00`
|
519
|
+
# * `GMT+7:00`
|
520
|
+
# * `GMT+8:00`
|
521
|
+
# * `GMT+9:00`
|
522
|
+
# * `GMT+9:30`
|
523
|
+
# * `GMT+10:00`
|
524
|
+
# * `GMT+11:00`
|
525
|
+
# * `GMT+12:00`
|
526
|
+
# @return [Core::Response]
|
527
|
+
# The #data method of the response object returns
|
528
|
+
# a hash with the following structure:
|
529
|
+
#
|
498
530
|
# * `:gateway_arn` - (String)
|
499
531
|
|
500
532
|
# @!method update_gateway_software_now(options = {})
|
@@ -504,6 +536,7 @@ module AWS
|
|
504
536
|
# @return [Core::Response]
|
505
537
|
# The #data method of the response object returns
|
506
538
|
# a hash with the following structure:
|
539
|
+
#
|
507
540
|
# * `:gateway_arn` - (String)
|
508
541
|
|
509
542
|
# @!method update_maintenance_start_time(options = {})
|
@@ -516,6 +549,7 @@ module AWS
|
|
516
549
|
# @return [Core::Response]
|
517
550
|
# The #data method of the response object returns
|
518
551
|
# a hash with the following structure:
|
552
|
+
#
|
519
553
|
# * `:gateway_arn` - (String)
|
520
554
|
|
521
555
|
# @!method update_snapshot_schedule(options = {})
|
@@ -528,6 +562,7 @@ module AWS
|
|
528
562
|
# @return [Core::Response]
|
529
563
|
# The #data method of the response object returns
|
530
564
|
# a hash with the following structure:
|
565
|
+
#
|
531
566
|
# * `:volume_arn` - (String)
|
532
567
|
|
533
568
|
# end client methods #
|