aws-sdk 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. data/.yardopts +0 -1
  2. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +772 -544
  3. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +284 -185
  4. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +458 -738
  5. data/lib/aws/api_config/EC2-2011-12-15.yml +3502 -2653
  6. data/lib/aws/api_config/ELB-2011-08-15.yml +484 -352
  7. data/lib/aws/api_config/IAM-2010-05-08.yml +899 -711
  8. data/lib/aws/api_config/SNS-2010-03-31.yml +235 -167
  9. data/lib/aws/api_config/SQS-2011-10-01.yml +290 -251
  10. data/lib/aws/api_config/STS-2011-06-15.yml +35 -41
  11. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +290 -263
  12. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +144 -130
  13. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +697 -1139
  14. data/lib/aws/auto_scaling/activity_collection.rb +1 -1
  15. data/lib/aws/auto_scaling/client.rb +724 -9
  16. data/lib/aws/auto_scaling/errors.rb +1 -5
  17. data/lib/aws/auto_scaling/group.rb +1 -1
  18. data/lib/aws/auto_scaling/group_collection.rb +1 -1
  19. data/lib/aws/auto_scaling/instance_collection.rb +1 -1
  20. data/lib/aws/auto_scaling/launch_configuration.rb +1 -1
  21. data/lib/aws/auto_scaling/launch_configuration_collection.rb +1 -1
  22. data/lib/aws/auto_scaling/notification_configuration_collection.rb +1 -1
  23. data/lib/aws/auto_scaling/request.rb +1 -2
  24. data/lib/aws/auto_scaling/scaling_policy_collection.rb +1 -1
  25. data/lib/aws/auto_scaling/scheduled_action_collection.rb +3 -3
  26. data/lib/aws/auto_scaling/tag_collection.rb +1 -1
  27. data/lib/aws/cloud_formation.rb +1 -18
  28. data/lib/aws/cloud_formation/client.rb +314 -8
  29. data/lib/aws/cloud_formation/errors.rb +1 -5
  30. data/lib/aws/cloud_formation/request.rb +1 -2
  31. data/lib/aws/cloud_formation/stack.rb +4 -3
  32. data/lib/aws/cloud_formation/stack_collection.rb +2 -2
  33. data/lib/aws/cloud_formation/stack_resource_collection.rb +1 -1
  34. data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +2 -2
  35. data/lib/aws/cloud_formation/stack_summary_collection.rb +1 -1
  36. data/lib/aws/core.rb +29 -14
  37. data/lib/aws/core/async_handle.rb +11 -12
  38. data/lib/aws/core/client.rb +112 -102
  39. data/lib/aws/core/client/query_json.rb +110 -0
  40. data/lib/aws/core/client/query_xml.rb +122 -0
  41. data/lib/aws/core/data.rb +242 -0
  42. data/lib/aws/core/http/request.rb +7 -4
  43. data/lib/aws/core/lazy_error_classes.rb +60 -38
  44. data/lib/aws/core/option_grammar.rb +1 -0
  45. data/lib/aws/core/policy.rb +2 -1
  46. data/lib/aws/core/resource.rb +38 -33
  47. data/lib/aws/core/response.rb +109 -44
  48. data/lib/aws/core/signature/version_2.rb +42 -0
  49. data/lib/aws/core/signature/version_3.rb +73 -0
  50. data/lib/aws/core/signature/version_3_http.rb +72 -0
  51. data/lib/aws/core/signature/version_4.rb +138 -0
  52. data/lib/aws/core/uri_escape.rb +6 -9
  53. data/lib/aws/core/xml/frame.rb +242 -0
  54. data/lib/aws/core/xml/frame_stack.rb +85 -0
  55. data/lib/aws/core/xml/grammar.rb +299 -0
  56. data/lib/aws/core/xml/parser.rb +70 -0
  57. data/lib/aws/core/xml/root_frame.rb +65 -0
  58. data/lib/aws/core/{configured_xml_grammars.rb → xml/sax_handlers/libxml.rb} +22 -20
  59. data/lib/aws/core/xml/sax_handlers/nokogiri.rb +55 -0
  60. data/lib/aws/core/{authorize_with_session_token.rb → xml/sax_handlers/ox.rb} +19 -7
  61. data/lib/aws/core/{configured_option_grammars.rb → xml/sax_handlers/rexml.rb} +22 -23
  62. data/lib/aws/core/xml/stub.rb +123 -0
  63. data/lib/aws/dynamo_db/batch_get.rb +1 -1
  64. data/lib/aws/dynamo_db/client.rb +796 -14
  65. data/lib/aws/dynamo_db/errors.rb +1 -38
  66. data/lib/aws/dynamo_db/item_collection.rb +29 -28
  67. data/lib/aws/dynamo_db/request.rb +3 -53
  68. data/lib/aws/dynamo_db/table.rb +6 -2
  69. data/lib/aws/ec2/attachment.rb +1 -1
  70. data/lib/aws/ec2/client.rb +3954 -9
  71. data/lib/aws/ec2/dhcp_options.rb +3 -3
  72. data/lib/aws/ec2/errors.rb +10 -4
  73. data/lib/aws/ec2/instance.rb +7 -6
  74. data/lib/aws/ec2/instance_collection.rb +2 -2
  75. data/lib/aws/ec2/key_pair_collection.rb +3 -3
  76. data/lib/aws/ec2/network_acl.rb +4 -2
  77. data/lib/aws/ec2/network_acl/entry.rb +10 -10
  78. data/lib/aws/ec2/network_interface.rb +2 -3
  79. data/lib/aws/ec2/network_interface/attachment.rb +8 -8
  80. data/lib/aws/ec2/permission_collection.rb +3 -3
  81. data/lib/aws/ec2/request.rb +1 -3
  82. data/lib/aws/ec2/resource_tag_collection.rb +4 -8
  83. data/lib/aws/ec2/route_table.rb +3 -2
  84. data/lib/aws/ec2/route_table/route.rb +7 -7
  85. data/lib/aws/ec2/security_group.rb +2 -2
  86. data/lib/aws/ec2/security_group/egress_ip_permission_collection.rb +16 -5
  87. data/lib/aws/ec2/security_group/ingress_ip_permission_collection.rb +4 -3
  88. data/lib/aws/ec2/security_group/ip_permission.rb +1 -2
  89. data/lib/aws/ec2/snapshot_collection.rb +6 -3
  90. data/lib/aws/ec2/subnet.rb +1 -1
  91. data/lib/aws/ec2/volume.rb +1 -3
  92. data/lib/aws/ec2/volume_collection.rb +2 -0
  93. data/lib/aws/elb/availability_zone_collection.rb +2 -2
  94. data/lib/aws/elb/backend_server_policy_collection.rb +1 -1
  95. data/lib/aws/elb/client.rb +513 -9
  96. data/lib/aws/elb/errors.rb +2 -6
  97. data/lib/aws/elb/instance_collection.rb +2 -2
  98. data/lib/aws/elb/request.rb +1 -1
  99. data/lib/aws/errors.rb +61 -74
  100. data/lib/aws/iam.rb +2 -3
  101. data/lib/aws/iam/client.rb +1178 -10
  102. data/lib/aws/iam/collection.rb +2 -1
  103. data/lib/aws/iam/errors.rb +1 -6
  104. data/lib/aws/iam/group.rb +8 -9
  105. data/lib/aws/iam/request.rb +1 -1
  106. data/lib/aws/iam/server_certificate_collection.rb +8 -5
  107. data/lib/aws/iam/signing_certificate.rb +1 -1
  108. data/lib/aws/iam/user.rb +2 -2
  109. data/lib/aws/iam/user_policy.rb +3 -2
  110. data/lib/aws/rails.rb +1 -2
  111. data/lib/aws/record.rb +3 -3
  112. data/lib/aws/record/abstract_base.rb +0 -3
  113. data/lib/aws/record/attributes.rb +7 -7
  114. data/lib/aws/record/model.rb +19 -19
  115. data/lib/aws/record/model/finder_methods.rb +7 -7
  116. data/lib/aws/s3/bucket.rb +7 -2
  117. data/lib/aws/s3/client.rb +391 -398
  118. data/lib/aws/s3/client/xml.rb +44 -71
  119. data/lib/aws/s3/data_options.rb +3 -2
  120. data/lib/aws/s3/errors.rb +8 -11
  121. data/lib/aws/s3/multipart_upload_collection.rb +1 -3
  122. data/lib/aws/s3/object_collection.rb +2 -1
  123. data/lib/aws/s3/object_metadata.rb +2 -2
  124. data/lib/aws/s3/paginated_collection.rb +2 -2
  125. data/lib/aws/s3/prefix_and_delimiter_collection.rb +1 -1
  126. data/lib/aws/s3/presigned_post.rb +18 -17
  127. data/lib/aws/s3/request.rb +4 -3
  128. data/lib/aws/s3/s3_object.rb +8 -10
  129. data/lib/aws/simple_db/attribute.rb +2 -2
  130. data/lib/aws/simple_db/attribute_collection.rb +14 -4
  131. data/lib/aws/simple_db/client.rb +313 -14
  132. data/lib/aws/simple_db/domain.rb +1 -1
  133. data/lib/aws/simple_db/domain_collection.rb +4 -4
  134. data/lib/aws/simple_db/domain_metadata.rb +1 -1
  135. data/lib/aws/simple_db/errors.rb +14 -2
  136. data/lib/aws/simple_db/expect_condition_option.rb +1 -1
  137. data/lib/aws/simple_db/item.rb +1 -1
  138. data/lib/aws/simple_db/item_collection.rb +9 -9
  139. data/lib/aws/simple_db/item_data.rb +9 -6
  140. data/lib/aws/simple_db/request.rb +1 -1
  141. data/lib/aws/simple_email_service.rb +8 -7
  142. data/lib/aws/simple_email_service/client.rb +174 -9
  143. data/lib/aws/simple_email_service/email_address_collection.rb +0 -1
  144. data/lib/aws/simple_email_service/errors.rb +1 -5
  145. data/lib/aws/simple_email_service/quotas.rb +8 -6
  146. data/lib/aws/simple_email_service/request.rb +7 -1
  147. data/lib/aws/simple_workflow/client.rb +1383 -6
  148. data/lib/aws/simple_workflow/decision_task.rb +1 -3
  149. data/lib/aws/simple_workflow/errors.rb +1 -38
  150. data/lib/aws/simple_workflow/history_event_collection.rb +2 -2
  151. data/lib/aws/simple_workflow/request.rb +5 -49
  152. data/lib/aws/simple_workflow/type.rb +1 -1
  153. data/lib/aws/simple_workflow/type_collection.rb +4 -3
  154. data/lib/aws/simple_workflow/workflow_execution_collection.rb +2 -2
  155. data/lib/aws/sns/client.rb +345 -9
  156. data/lib/aws/sns/errors.rb +1 -5
  157. data/lib/aws/sns/request.rb +1 -2
  158. data/lib/aws/sns/subscription_collection.rb +2 -2
  159. data/lib/aws/sns/topic.rb +15 -14
  160. data/lib/aws/sns/topic_collection.rb +1 -1
  161. data/lib/aws/sqs/client.rb +334 -9
  162. data/lib/aws/sqs/errors.rb +1 -6
  163. data/lib/aws/sqs/queue.rb +20 -21
  164. data/lib/aws/sqs/queue_collection.rb +3 -3
  165. data/lib/aws/sqs/request.rb +2 -2
  166. data/lib/aws/sts.rb +8 -10
  167. data/lib/aws/sts/client.rb +67 -10
  168. data/lib/aws/sts/errors.rb +1 -5
  169. data/lib/aws/sts/request.rb +1 -1
  170. data/lib/user.rb +49 -0
  171. metadata +21 -28
  172. data/lib/aws/auto_scaling/client/xml.rb +0 -32
  173. data/lib/aws/cloud_formation/client/xml.rb +0 -32
  174. data/lib/aws/core/api_config.rb +0 -44
  175. data/lib/aws/core/authorize_v2.rb +0 -39
  176. data/lib/aws/core/authorize_v3.rb +0 -38
  177. data/lib/aws/core/authorize_v4.rb +0 -149
  178. data/lib/aws/core/configured_client_methods.rb +0 -76
  179. data/lib/aws/core/configured_grammars.rb +0 -63
  180. data/lib/aws/core/configured_json_client_methods.rb +0 -74
  181. data/lib/aws/core/ignore_result_element.rb +0 -34
  182. data/lib/aws/core/json_client.rb +0 -41
  183. data/lib/aws/core/xml_grammar.rb +0 -957
  184. data/lib/aws/ec2/client/xml.rb +0 -175
  185. data/lib/aws/elb/client/xml.rb +0 -33
  186. data/lib/aws/elb/listener_spec.rb +0 -14
  187. data/lib/aws/iam/client/xml.rb +0 -34
  188. data/lib/aws/simple_db/client/options.rb +0 -32
  189. data/lib/aws/simple_db/client/xml.rb +0 -63
  190. data/lib/aws/simple_email_service/client/xml.rb +0 -34
  191. data/lib/aws/sns/client/xml.rb +0 -34
  192. data/lib/aws/sqs/client/xml.rb +0 -33
  193. data/lib/aws/sts/client/xml.rb +0 -34
data/.yardopts CHANGED
@@ -1,5 +1,4 @@
1
1
  --no-private
2
- --files guides/*
3
2
  --files NOTICE.txt
4
3
  --files LICENSE.txt
5
4
  --exclude '~$'
@@ -13,551 +13,779 @@
13
13
 
14
14
  ---
15
15
  :operations:
16
- CreateAutoScalingGroup:
17
- :input:
18
- AutoScalingGroupName:
19
- - :string
20
- - :required
21
- LaunchConfigurationName:
22
- - :string
23
- - :required
24
- MinSize:
25
- - :integer
26
- - :required
27
- MaxSize:
28
- - :integer
29
- - :required
30
- DesiredCapacity:
31
- - :integer
32
- DefaultCooldown:
33
- - :integer
34
- AvailabilityZones:
35
- - :membered_list:
36
- - :string
37
- - :required
38
- LoadBalancerNames:
39
- - :membered_list:
40
- - :string
41
- HealthCheckType:
42
- - :string
43
- HealthCheckGracePeriod:
44
- - :integer
45
- PlacementGroup:
46
- - :string
47
- VPCZoneIdentifier:
48
- - :string
49
- Tags:
50
- - :membered_list:
51
- - :structure:
52
- ResourceId:
53
- - :string
54
- ResourceType:
55
- - :string
56
- Key:
57
- - :string
58
- - :required
59
- Value:
60
- - :string
61
- PropagateAtLaunch:
62
- - :boolean
63
- :output: []
64
- DeleteAutoScalingGroup:
65
- :input:
66
- AutoScalingGroupName:
67
- - :string
68
- - :required
69
- ForceDelete:
70
- - :boolean
71
- :output: []
72
- DescribeAutoScalingGroups:
73
- :input:
74
- AutoScalingGroupNames:
75
- - :membered_list:
76
- - :string
77
- NextToken:
78
- - :string
79
- MaxRecords:
80
- - :integer
81
- :output:
82
- - AutoScalingGroups:
83
- - :list: member
84
- - member:
85
- - MinSize:
86
- - :integer
87
- - MaxSize:
88
- - :integer
89
- - DesiredCapacity:
90
- - :integer
91
- - DefaultCooldown:
92
- - :integer
93
- - AvailabilityZones:
94
- - :list: member
95
- - LoadBalancerNames:
96
- - :list: member
97
- - HealthCheckGracePeriod:
98
- - :integer
99
- - Instances:
100
- - :list: member
101
- - CreatedTime:
102
- - :timestamp
103
- - SuspendedProcesses:
104
- - :list: member
105
- - EnabledMetrics:
106
- - :list: member
107
- - Tags:
108
- - :list: member
109
- - member:
110
- - PropagateAtLaunch:
111
- - :boolean
112
- UpdateAutoScalingGroup:
113
- :input:
114
- AutoScalingGroupName:
115
- - :string
116
- - :required
117
- LaunchConfigurationName:
118
- - :string
119
- MinSize:
120
- - :integer
121
- MaxSize:
122
- - :integer
123
- DesiredCapacity:
124
- - :integer
125
- DefaultCooldown:
126
- - :integer
127
- AvailabilityZones:
128
- - :membered_list:
129
- - :string
130
- HealthCheckType:
131
- - :string
132
- HealthCheckGracePeriod:
133
- - :integer
134
- PlacementGroup:
135
- - :string
136
- VPCZoneIdentifier:
137
- - :string
138
- :output: []
139
- DescribeAutoScalingInstances:
140
- :input:
141
- InstanceIds:
142
- - :membered_list:
143
- - :string
144
- MaxRecords:
145
- - :integer
146
- NextToken:
147
- - :string
148
- :output:
149
- - AutoScalingInstances:
150
- - :list: member
151
- DescribeScalingProcessTypes:
152
- :input: {}
153
- :output:
154
- - Processes:
155
- - :list: member
156
- SuspendProcesses:
157
- :input:
158
- AutoScalingGroupName:
159
- - :string
160
- - :required
161
- ScalingProcesses:
162
- - :membered_list:
163
- - :string
164
- :output: []
165
- ResumeProcesses:
166
- :input:
167
- AutoScalingGroupName:
168
- - :string
169
- - :required
170
- ScalingProcesses:
171
- - :membered_list:
172
- - :string
173
- :output: []
174
- SetDesiredCapacity:
175
- :input:
176
- AutoScalingGroupName:
177
- - :string
178
- - :required
179
- DesiredCapacity:
180
- - :integer
181
- - :required
182
- HonorCooldown:
183
- - :boolean
184
- :output: []
185
- SetInstanceHealth:
186
- :input:
187
- InstanceId:
188
- - :string
189
- - :required
190
- HealthStatus:
191
- - :string
192
- - :required
193
- ShouldRespectGracePeriod:
194
- - :boolean
195
- :output: []
196
- PutScheduledUpdateGroupAction:
197
- :input:
198
- AutoScalingGroupName:
199
- - :string
200
- - :required
201
- ScheduledActionName:
202
- - :string
203
- - :required
204
- Time:
205
- - :timestamp
206
- StartTime:
207
- - :timestamp
208
- EndTime:
209
- - :timestamp
210
- Recurrence:
211
- - :string
212
- MinSize:
213
- - :integer
214
- MaxSize:
215
- - :integer
216
- DesiredCapacity:
217
- - :integer
218
- :output: []
219
- DescribeScheduledActions:
220
- :input:
221
- AutoScalingGroupName:
222
- - :string
223
- ScheduledActionNames:
224
- - :membered_list:
225
- - :string
226
- StartTime:
227
- - :timestamp
228
- EndTime:
229
- - :timestamp
230
- NextToken:
231
- - :string
232
- MaxRecords:
233
- - :integer
234
- :output:
235
- - ScheduledUpdateGroupActions:
236
- - :list: member
237
- - member:
238
- - Time:
239
- - :timestamp
240
- - StartTime:
241
- - :timestamp
242
- - EndTime:
243
- - :timestamp
244
- - MinSize:
245
- - :integer
246
- - MaxSize:
247
- - :integer
248
- - DesiredCapacity:
249
- - :integer
250
- DeleteScheduledAction:
251
- :input:
252
- AutoScalingGroupName:
253
- - :string
254
- ScheduledActionName:
255
- - :string
256
- - :required
257
- :output: []
258
- DescribeAdjustmentTypes:
259
- :input: {}
260
- :output:
261
- - AdjustmentTypes:
262
- - :list: member
263
- PutScalingPolicy:
264
- :input:
265
- AutoScalingGroupName:
266
- - :string
267
- - :required
268
- PolicyName:
269
- - :string
270
- - :required
271
- ScalingAdjustment:
272
- - :integer
273
- - :required
274
- AdjustmentType:
275
- - :string
276
- - :required
277
- Cooldown:
278
- - :integer
279
- MinAdjustmentMagnitude:
280
- - :integer
281
- :output: []
282
- DescribePolicies:
283
- :input:
284
- AutoScalingGroupName:
285
- - :string
286
- PolicyNames:
287
- - :membered_list:
288
- - :string
289
- NextToken:
290
- - :string
291
- MaxRecords:
292
- - :integer
293
- :output:
294
- - ScalingPolicies:
295
- - :list: member
296
- - member:
297
- - ScalingAdjustment:
298
- - :integer
299
- - Cooldown:
300
- - :integer
301
- - Alarms:
302
- - :list: member
303
- - MinAdjustmentMagnitude:
304
- - :integer
305
- DeletePolicy:
306
- :input:
307
- AutoScalingGroupName:
308
- - :string
309
- PolicyName:
310
- - :string
311
- - :required
312
- :output: []
313
- ExecutePolicy:
314
- :input:
315
- AutoScalingGroupName:
316
- - :string
317
- PolicyName:
318
- - :string
319
- - :required
320
- HonorCooldown:
321
- - :boolean
322
- :output: []
323
- DescribeMetricCollectionTypes:
324
- :input: {}
325
- :output:
326
- - Metrics:
327
- - :list: member
328
- - Granularities:
329
- - :list: member
330
- EnableMetricsCollection:
331
- :input:
332
- AutoScalingGroupName:
333
- - :string
334
- - :required
335
- Metrics:
336
- - :membered_list:
337
- - :string
338
- Granularity:
339
- - :string
340
- - :required
341
- :output: []
342
- DisableMetricsCollection:
343
- :input:
344
- AutoScalingGroupName:
345
- - :string
346
- - :required
347
- Metrics:
348
- - :membered_list:
349
- - :string
350
- :output: []
351
- CreateLaunchConfiguration:
352
- :input:
353
- LaunchConfigurationName:
354
- - :string
355
- - :required
356
- ImageId:
357
- - :string
358
- - :required
359
- KeyName:
360
- - :string
361
- SecurityGroups:
362
- - :membered_list:
363
- - :string
364
- UserData:
365
- - :string
366
- InstanceType:
367
- - :string
368
- - :required
369
- KernelId:
370
- - :string
371
- RamdiskId:
372
- - :string
373
- BlockDeviceMappings:
374
- - :membered_list:
375
- - :structure:
376
- VirtualName:
377
- - :string
378
- DeviceName:
379
- - :string
380
- - :required
381
- Ebs:
382
- - :structure:
383
- SnapshotId:
384
- - :string
385
- VolumeSize:
386
- - :integer
387
- InstanceMonitoring:
16
+ - :name: CreateAutoScalingGroup
17
+ :method: :create_auto_scaling_group
18
+ :inputs:
19
+ AutoScalingGroupName:
20
+ - :string
21
+ - :required
22
+ LaunchConfigurationName:
23
+ - :string
24
+ - :required
25
+ MinSize:
26
+ - :integer
27
+ - :required
28
+ MaxSize:
29
+ - :integer
30
+ - :required
31
+ DesiredCapacity:
32
+ - :integer
33
+ DefaultCooldown:
34
+ - :integer
35
+ AvailabilityZones:
36
+ - :membered_list:
37
+ - :string
38
+ - :required
39
+ LoadBalancerNames:
40
+ - :membered_list:
41
+ - :string
42
+ HealthCheckType:
43
+ - :string
44
+ HealthCheckGracePeriod:
45
+ - :integer
46
+ PlacementGroup:
47
+ - :string
48
+ VPCZoneIdentifier:
49
+ - :string
50
+ Tags:
51
+ - :membered_list:
388
52
  - :structure:
389
- Enabled:
53
+ ResourceId:
54
+ - :string
55
+ ResourceType:
56
+ - :string
57
+ Key:
58
+ - :string
59
+ - :required
60
+ Value:
61
+ - :string
62
+ PropagateAtLaunch:
390
63
  - :boolean
391
- :output: []
392
- DescribeLaunchConfigurations:
393
- :input:
394
- LaunchConfigurationNames:
395
- - :membered_list:
396
- - :string
397
- NextToken:
398
- - :string
399
- MaxRecords:
400
- - :integer
401
- :output:
402
- - LaunchConfigurations:
403
- - :list: member
404
- - member:
405
- - SecurityGroups:
406
- - :list: member
407
- - BlockDeviceMappings:
408
- - :list: member
409
- - member:
410
- - Ebs:
411
- - VolumeSize:
412
- - :integer
413
- - InstanceMonitoring:
414
- - Enabled:
415
- - :boolean
416
- - CreatedTime:
417
- - :timestamp
418
- DeleteLaunchConfiguration:
419
- :input:
420
- LaunchConfigurationName:
421
- - :string
422
- - :required
423
- :output: []
424
- DescribeScalingActivities:
425
- :input:
426
- ActivityIds:
427
- - :membered_list:
428
- - :string
429
- AutoScalingGroupName:
430
- - :string
431
- MaxRecords:
432
- - :integer
433
- NextToken:
434
- - :string
435
- :output:
436
- - Activities:
437
- - :list: member
438
- - member:
439
- - StartTime:
440
- - :timestamp
441
- - EndTime:
442
- - :timestamp
443
- - Progress:
444
- - :integer
445
- TerminateInstanceInAutoScalingGroup:
446
- :input:
447
- InstanceId:
448
- - :string
449
- - :required
450
- ShouldDecrementDesiredCapacity:
451
- - :boolean
452
- - :required
453
- :output:
454
- - Activity:
455
- - StartTime:
456
- - :timestamp
457
- - EndTime:
458
- - :timestamp
459
- - Progress:
460
- - :integer
461
- PutNotificationConfiguration:
462
- :input:
463
- AutoScalingGroupName:
464
- - :string
465
- - :required
466
- TopicARN:
467
- - :string
468
- - :required
469
- NotificationTypes:
470
- - :membered_list:
471
- - :string
472
- - :required
473
- :output: []
474
- DeleteNotificationConfiguration:
475
- :input:
476
- AutoScalingGroupName:
477
- - :string
478
- - :required
479
- TopicARN:
480
- - :string
481
- - :required
482
- :output: []
483
- DescribeNotificationConfigurations:
484
- :input:
485
- AutoScalingGroupNames:
486
- - :membered_list:
487
- - :string
488
- NextToken:
489
- - :string
490
- MaxRecords:
491
- - :integer
492
- :output:
493
- - NotificationConfigurations:
494
- - :list: member
495
- DescribeAutoScalingNotificationTypes:
496
- :input: {}
497
- :output:
498
- - AutoScalingNotificationTypes:
499
- - :list: member
500
- CreateOrUpdateTags:
501
- :input:
502
- Tags:
503
- - :membered_list:
504
- - :structure:
505
- ResourceId:
506
- - :string
507
- ResourceType:
508
- - :string
509
- Key:
510
- - :string
511
- - :required
512
- Value:
513
- - :string
514
- PropagateAtLaunch:
515
- - :boolean
516
- - :required
517
- :output: []
518
- DeleteTags:
519
- :input:
520
- Tags:
521
- - :membered_list:
522
- - :structure:
523
- ResourceId:
524
- - :string
525
- ResourceType:
526
- - :string
527
- Key:
528
- - :string
529
- - :required
530
- Value:
531
- - :string
532
- PropagateAtLaunch:
533
- - :boolean
534
- - :required
535
- :output: []
536
- DescribeTags:
537
- :input:
538
- Filters:
539
- - :membered_list:
540
- - :structure:
541
- Name:
542
- - :string
543
- Values:
544
- - :membered_list:
64
+ :outputs:
65
+ :children:
66
+ CreateAutoScalingGroupResult:
67
+ :ignore: true
68
+ - :name: CreateLaunchConfiguration
69
+ :method: :create_launch_configuration
70
+ :inputs:
71
+ LaunchConfigurationName:
72
+ - :string
73
+ - :required
74
+ ImageId:
75
+ - :string
76
+ - :required
77
+ KeyName:
78
+ - :string
79
+ SecurityGroups:
80
+ - :membered_list:
81
+ - :string
82
+ UserData:
83
+ - :string
84
+ InstanceType:
85
+ - :string
86
+ - :required
87
+ KernelId:
88
+ - :string
89
+ RamdiskId:
90
+ - :string
91
+ BlockDeviceMappings:
92
+ - :membered_list:
93
+ - :structure:
94
+ VirtualName:
95
+ - :string
96
+ DeviceName:
97
+ - :string
98
+ - :required
99
+ Ebs:
100
+ - :structure:
101
+ SnapshotId:
545
102
  - :string
546
- NextToken:
547
- - :string
548
- MaxRecords:
549
- - :integer
550
- :output:
551
- - Tags:
552
- - :list: member
553
- - member:
554
- - PropagateAtLaunch:
103
+ VolumeSize:
104
+ - :integer
105
+ InstanceMonitoring:
106
+ - :structure:
107
+ Enabled:
108
+ - :boolean
109
+ :outputs:
110
+ :children:
111
+ CreateLaunchConfigurationResult:
112
+ :ignore: true
113
+ - :name: CreateOrUpdateTags
114
+ :method: :create_or_update_tags
115
+ :inputs:
116
+ Tags:
117
+ - :membered_list:
118
+ - :structure:
119
+ ResourceId:
120
+ - :string
121
+ ResourceType:
122
+ - :string
123
+ Key:
124
+ - :string
125
+ - :required
126
+ Value:
127
+ - :string
128
+ PropagateAtLaunch:
555
129
  - :boolean
556
- :client_errors:
557
- ScalingActivityInProgress: []
558
- ResourceInUse: []
559
- AlreadyExists: []
560
- LimitExceeded: []
561
- InvalidNextToken: []
562
- InvalidActivityStep: []
563
- :server_errors: {}
130
+ - :required
131
+ :outputs:
132
+ :children:
133
+ CreateOrUpdateTagsResult:
134
+ :ignore: true
135
+ - :name: DeleteAutoScalingGroup
136
+ :method: :delete_auto_scaling_group
137
+ :inputs:
138
+ AutoScalingGroupName:
139
+ - :string
140
+ - :required
141
+ ForceDelete:
142
+ - :boolean
143
+ :outputs:
144
+ :children:
145
+ DeleteAutoScalingGroupResult:
146
+ :ignore: true
147
+ - :name: DeleteLaunchConfiguration
148
+ :method: :delete_launch_configuration
149
+ :inputs:
150
+ LaunchConfigurationName:
151
+ - :string
152
+ - :required
153
+ :outputs:
154
+ :children:
155
+ DeleteLaunchConfigurationResult:
156
+ :ignore: true
157
+ - :name: DeleteNotificationConfiguration
158
+ :method: :delete_notification_configuration
159
+ :inputs:
160
+ AutoScalingGroupName:
161
+ - :string
162
+ - :required
163
+ TopicARN:
164
+ - :string
165
+ - :required
166
+ :outputs:
167
+ :children:
168
+ DeleteNotificationConfigurationResult:
169
+ :ignore: true
170
+ - :name: DeletePolicy
171
+ :method: :delete_policy
172
+ :inputs:
173
+ AutoScalingGroupName:
174
+ - :string
175
+ PolicyName:
176
+ - :string
177
+ - :required
178
+ :outputs:
179
+ :children:
180
+ DeletePolicyResult:
181
+ :ignore: true
182
+ - :name: DeleteScheduledAction
183
+ :method: :delete_scheduled_action
184
+ :inputs:
185
+ AutoScalingGroupName:
186
+ - :string
187
+ ScheduledActionName:
188
+ - :string
189
+ - :required
190
+ :outputs:
191
+ :children:
192
+ DeleteScheduledActionResult:
193
+ :ignore: true
194
+ - :name: DeleteTags
195
+ :method: :delete_tags
196
+ :inputs:
197
+ Tags:
198
+ - :membered_list:
199
+ - :structure:
200
+ ResourceId:
201
+ - :string
202
+ ResourceType:
203
+ - :string
204
+ Key:
205
+ - :string
206
+ - :required
207
+ Value:
208
+ - :string
209
+ PropagateAtLaunch:
210
+ - :boolean
211
+ - :required
212
+ :outputs:
213
+ :children:
214
+ DeleteTagsResult:
215
+ :ignore: true
216
+ - :name: DescribeAdjustmentTypes
217
+ :method: :describe_adjustment_types
218
+ :inputs: {}
219
+ :outputs:
220
+ :children:
221
+ DescribeAdjustmentTypesResult:
222
+ :ignore: true
223
+ :children:
224
+ AdjustmentTypes:
225
+ :ignore: true
226
+ :children:
227
+ member:
228
+ :rename: :adjustment_types
229
+ :list: true
230
+ - :name: DescribeAutoScalingGroups
231
+ :method: :describe_auto_scaling_groups
232
+ :inputs:
233
+ AutoScalingGroupNames:
234
+ - :membered_list:
235
+ - :string
236
+ NextToken:
237
+ - :string
238
+ MaxRecords:
239
+ - :integer
240
+ :outputs:
241
+ :children:
242
+ DescribeAutoScalingGroupsResult:
243
+ :ignore: true
244
+ :children:
245
+ AutoScalingGroups:
246
+ :ignore: true
247
+ :children:
248
+ member:
249
+ :rename: :auto_scaling_groups
250
+ :list: true
251
+ :children:
252
+ MinSize:
253
+ :type: :integer
254
+ MaxSize:
255
+ :type: :integer
256
+ DesiredCapacity:
257
+ :type: :integer
258
+ DefaultCooldown:
259
+ :type: :integer
260
+ AvailabilityZones:
261
+ :ignore: true
262
+ :children:
263
+ member:
264
+ :rename: :availability_zones
265
+ :list: true
266
+ LoadBalancerNames:
267
+ :ignore: true
268
+ :children:
269
+ member:
270
+ :rename: :load_balancer_names
271
+ :list: true
272
+ HealthCheckGracePeriod:
273
+ :type: :integer
274
+ Instances:
275
+ :ignore: true
276
+ :children:
277
+ member:
278
+ :rename: :instances
279
+ :list: true
280
+ CreatedTime:
281
+ :type: :time
282
+ SuspendedProcesses:
283
+ :ignore: true
284
+ :children:
285
+ member:
286
+ :rename: :suspended_processes
287
+ :list: true
288
+ EnabledMetrics:
289
+ :ignore: true
290
+ :children:
291
+ member:
292
+ :rename: :enabled_metrics
293
+ :list: true
294
+ Tags:
295
+ :ignore: true
296
+ :children:
297
+ member:
298
+ :rename: :tags
299
+ :list: true
300
+ :children:
301
+ PropagateAtLaunch:
302
+ :type: :boolean
303
+ - :name: DescribeAutoScalingInstances
304
+ :method: :describe_auto_scaling_instances
305
+ :inputs:
306
+ InstanceIds:
307
+ - :membered_list:
308
+ - :string
309
+ MaxRecords:
310
+ - :integer
311
+ NextToken:
312
+ - :string
313
+ :outputs:
314
+ :children:
315
+ DescribeAutoScalingInstancesResult:
316
+ :ignore: true
317
+ :children:
318
+ AutoScalingInstances:
319
+ :ignore: true
320
+ :children:
321
+ member:
322
+ :rename: :auto_scaling_instances
323
+ :list: true
324
+ - :name: DescribeAutoScalingNotificationTypes
325
+ :method: :describe_auto_scaling_notification_types
326
+ :inputs: {}
327
+ :outputs:
328
+ :children:
329
+ DescribeAutoScalingNotificationTypesResult:
330
+ :ignore: true
331
+ :children:
332
+ AutoScalingNotificationTypes:
333
+ :ignore: true
334
+ :children:
335
+ member:
336
+ :rename: :auto_scaling_notification_types
337
+ :list: true
338
+ - :name: DescribeLaunchConfigurations
339
+ :method: :describe_launch_configurations
340
+ :inputs:
341
+ LaunchConfigurationNames:
342
+ - :membered_list:
343
+ - :string
344
+ NextToken:
345
+ - :string
346
+ MaxRecords:
347
+ - :integer
348
+ :outputs:
349
+ :children:
350
+ DescribeLaunchConfigurationsResult:
351
+ :ignore: true
352
+ :children:
353
+ LaunchConfigurations:
354
+ :ignore: true
355
+ :children:
356
+ member:
357
+ :rename: :launch_configurations
358
+ :list: true
359
+ :children:
360
+ SecurityGroups:
361
+ :ignore: true
362
+ :children:
363
+ member:
364
+ :rename: :security_groups
365
+ :list: true
366
+ BlockDeviceMappings:
367
+ :ignore: true
368
+ :children:
369
+ member:
370
+ :rename: :block_device_mappings
371
+ :list: true
372
+ :children:
373
+ Ebs:
374
+ :children:
375
+ VolumeSize:
376
+ :type: :integer
377
+ InstanceMonitoring:
378
+ :children:
379
+ Enabled:
380
+ :type: :boolean
381
+ CreatedTime:
382
+ :type: :time
383
+ - :name: DescribeMetricCollectionTypes
384
+ :method: :describe_metric_collection_types
385
+ :inputs: {}
386
+ :outputs:
387
+ :children:
388
+ DescribeMetricCollectionTypesResult:
389
+ :ignore: true
390
+ :children:
391
+ Metrics:
392
+ :ignore: true
393
+ :children:
394
+ member:
395
+ :rename: :metrics
396
+ :list: true
397
+ Granularities:
398
+ :ignore: true
399
+ :children:
400
+ member:
401
+ :rename: :granularities
402
+ :list: true
403
+ - :name: DescribeNotificationConfigurations
404
+ :method: :describe_notification_configurations
405
+ :inputs:
406
+ AutoScalingGroupNames:
407
+ - :membered_list:
408
+ - :string
409
+ NextToken:
410
+ - :string
411
+ MaxRecords:
412
+ - :integer
413
+ :outputs:
414
+ :children:
415
+ DescribeNotificationConfigurationsResult:
416
+ :ignore: true
417
+ :children:
418
+ NotificationConfigurations:
419
+ :ignore: true
420
+ :children:
421
+ member:
422
+ :rename: :notification_configurations
423
+ :list: true
424
+ - :name: DescribePolicies
425
+ :method: :describe_policies
426
+ :inputs:
427
+ AutoScalingGroupName:
428
+ - :string
429
+ PolicyNames:
430
+ - :membered_list:
431
+ - :string
432
+ NextToken:
433
+ - :string
434
+ MaxRecords:
435
+ - :integer
436
+ :outputs:
437
+ :children:
438
+ DescribePoliciesResult:
439
+ :ignore: true
440
+ :children:
441
+ ScalingPolicies:
442
+ :ignore: true
443
+ :children:
444
+ member:
445
+ :rename: :scaling_policies
446
+ :list: true
447
+ :children:
448
+ ScalingAdjustment:
449
+ :type: :integer
450
+ Cooldown:
451
+ :type: :integer
452
+ Alarms:
453
+ :ignore: true
454
+ :children:
455
+ member:
456
+ :rename: :alarms
457
+ :list: true
458
+ MinAdjustmentMagnitude:
459
+ :type: :integer
460
+ - :name: DescribeScalingActivities
461
+ :method: :describe_scaling_activities
462
+ :inputs:
463
+ ActivityIds:
464
+ - :membered_list:
465
+ - :string
466
+ AutoScalingGroupName:
467
+ - :string
468
+ MaxRecords:
469
+ - :integer
470
+ NextToken:
471
+ - :string
472
+ :outputs:
473
+ :children:
474
+ DescribeScalingActivitiesResult:
475
+ :ignore: true
476
+ :children:
477
+ Activities:
478
+ :ignore: true
479
+ :children:
480
+ member:
481
+ :rename: :activities
482
+ :list: true
483
+ :children:
484
+ StartTime:
485
+ :type: :time
486
+ EndTime:
487
+ :type: :time
488
+ Progress:
489
+ :type: :integer
490
+ - :name: DescribeScalingProcessTypes
491
+ :method: :describe_scaling_process_types
492
+ :inputs: {}
493
+ :outputs:
494
+ :children:
495
+ DescribeScalingProcessTypesResult:
496
+ :ignore: true
497
+ :children:
498
+ Processes:
499
+ :ignore: true
500
+ :children:
501
+ member:
502
+ :rename: :processes
503
+ :list: true
504
+ - :name: DescribeScheduledActions
505
+ :method: :describe_scheduled_actions
506
+ :inputs:
507
+ AutoScalingGroupName:
508
+ - :string
509
+ ScheduledActionNames:
510
+ - :membered_list:
511
+ - :string
512
+ StartTime:
513
+ - :timestamp
514
+ EndTime:
515
+ - :timestamp
516
+ NextToken:
517
+ - :string
518
+ MaxRecords:
519
+ - :integer
520
+ :outputs:
521
+ :children:
522
+ DescribeScheduledActionsResult:
523
+ :ignore: true
524
+ :children:
525
+ ScheduledUpdateGroupActions:
526
+ :ignore: true
527
+ :children:
528
+ member:
529
+ :rename: :scheduled_update_group_actions
530
+ :list: true
531
+ :children:
532
+ Time:
533
+ :type: :time
534
+ StartTime:
535
+ :type: :time
536
+ EndTime:
537
+ :type: :time
538
+ MinSize:
539
+ :type: :integer
540
+ MaxSize:
541
+ :type: :integer
542
+ DesiredCapacity:
543
+ :type: :integer
544
+ - :name: DescribeTags
545
+ :method: :describe_tags
546
+ :inputs:
547
+ Filters:
548
+ - :membered_list:
549
+ - :structure:
550
+ Name:
551
+ - :string
552
+ Values:
553
+ - :membered_list:
554
+ - :string
555
+ NextToken:
556
+ - :string
557
+ MaxRecords:
558
+ - :integer
559
+ :outputs:
560
+ :children:
561
+ DescribeTagsResult:
562
+ :ignore: true
563
+ :children:
564
+ Tags:
565
+ :ignore: true
566
+ :children:
567
+ member:
568
+ :rename: :tags
569
+ :list: true
570
+ :children:
571
+ PropagateAtLaunch:
572
+ :type: :boolean
573
+ - :name: DisableMetricsCollection
574
+ :method: :disable_metrics_collection
575
+ :inputs:
576
+ AutoScalingGroupName:
577
+ - :string
578
+ - :required
579
+ Metrics:
580
+ - :membered_list:
581
+ - :string
582
+ :outputs:
583
+ :children:
584
+ DisableMetricsCollectionResult:
585
+ :ignore: true
586
+ - :name: EnableMetricsCollection
587
+ :method: :enable_metrics_collection
588
+ :inputs:
589
+ AutoScalingGroupName:
590
+ - :string
591
+ - :required
592
+ Metrics:
593
+ - :membered_list:
594
+ - :string
595
+ Granularity:
596
+ - :string
597
+ - :required
598
+ :outputs:
599
+ :children:
600
+ EnableMetricsCollectionResult:
601
+ :ignore: true
602
+ - :name: ExecutePolicy
603
+ :method: :execute_policy
604
+ :inputs:
605
+ AutoScalingGroupName:
606
+ - :string
607
+ PolicyName:
608
+ - :string
609
+ - :required
610
+ HonorCooldown:
611
+ - :boolean
612
+ :outputs:
613
+ :children:
614
+ ExecutePolicyResult:
615
+ :ignore: true
616
+ - :name: PutNotificationConfiguration
617
+ :method: :put_notification_configuration
618
+ :inputs:
619
+ AutoScalingGroupName:
620
+ - :string
621
+ - :required
622
+ TopicARN:
623
+ - :string
624
+ - :required
625
+ NotificationTypes:
626
+ - :membered_list:
627
+ - :string
628
+ - :required
629
+ :outputs:
630
+ :children:
631
+ PutNotificationConfigurationResult:
632
+ :ignore: true
633
+ - :name: PutScalingPolicy
634
+ :method: :put_scaling_policy
635
+ :inputs:
636
+ AutoScalingGroupName:
637
+ - :string
638
+ - :required
639
+ PolicyName:
640
+ - :string
641
+ - :required
642
+ ScalingAdjustment:
643
+ - :integer
644
+ - :required
645
+ AdjustmentType:
646
+ - :string
647
+ - :required
648
+ Cooldown:
649
+ - :integer
650
+ MinAdjustmentMagnitude:
651
+ - :integer
652
+ :outputs:
653
+ :children:
654
+ PutScalingPolicyResult:
655
+ :ignore: true
656
+ - :name: PutScheduledUpdateGroupAction
657
+ :method: :put_scheduled_update_group_action
658
+ :inputs:
659
+ AutoScalingGroupName:
660
+ - :string
661
+ - :required
662
+ ScheduledActionName:
663
+ - :string
664
+ - :required
665
+ Time:
666
+ - :timestamp
667
+ StartTime:
668
+ - :timestamp
669
+ EndTime:
670
+ - :timestamp
671
+ Recurrence:
672
+ - :string
673
+ MinSize:
674
+ - :integer
675
+ MaxSize:
676
+ - :integer
677
+ DesiredCapacity:
678
+ - :integer
679
+ :outputs:
680
+ :children:
681
+ PutScheduledUpdateGroupActionResult:
682
+ :ignore: true
683
+ - :name: ResumeProcesses
684
+ :method: :resume_processes
685
+ :inputs:
686
+ AutoScalingGroupName:
687
+ - :string
688
+ - :required
689
+ ScalingProcesses:
690
+ - :membered_list:
691
+ - :string
692
+ :outputs:
693
+ :children:
694
+ ResumeProcessesResult:
695
+ :ignore: true
696
+ - :name: SetDesiredCapacity
697
+ :method: :set_desired_capacity
698
+ :inputs:
699
+ AutoScalingGroupName:
700
+ - :string
701
+ - :required
702
+ DesiredCapacity:
703
+ - :integer
704
+ - :required
705
+ HonorCooldown:
706
+ - :boolean
707
+ :outputs:
708
+ :children:
709
+ SetDesiredCapacityResult:
710
+ :ignore: true
711
+ - :name: SetInstanceHealth
712
+ :method: :set_instance_health
713
+ :inputs:
714
+ InstanceId:
715
+ - :string
716
+ - :required
717
+ HealthStatus:
718
+ - :string
719
+ - :required
720
+ ShouldRespectGracePeriod:
721
+ - :boolean
722
+ :outputs:
723
+ :children:
724
+ SetInstanceHealthResult:
725
+ :ignore: true
726
+ - :name: SuspendProcesses
727
+ :method: :suspend_processes
728
+ :inputs:
729
+ AutoScalingGroupName:
730
+ - :string
731
+ - :required
732
+ ScalingProcesses:
733
+ - :membered_list:
734
+ - :string
735
+ :outputs:
736
+ :children:
737
+ SuspendProcessesResult:
738
+ :ignore: true
739
+ - :name: TerminateInstanceInAutoScalingGroup
740
+ :method: :terminate_instance_in_auto_scaling_group
741
+ :inputs:
742
+ InstanceId:
743
+ - :string
744
+ - :required
745
+ ShouldDecrementDesiredCapacity:
746
+ - :boolean
747
+ - :required
748
+ :outputs:
749
+ :children:
750
+ TerminateInstanceInAutoScalingGroupResult:
751
+ :ignore: true
752
+ :children:
753
+ Activity:
754
+ :children:
755
+ StartTime:
756
+ :type: :time
757
+ EndTime:
758
+ :type: :time
759
+ Progress:
760
+ :type: :integer
761
+ - :name: UpdateAutoScalingGroup
762
+ :method: :update_auto_scaling_group
763
+ :inputs:
764
+ AutoScalingGroupName:
765
+ - :string
766
+ - :required
767
+ LaunchConfigurationName:
768
+ - :string
769
+ MinSize:
770
+ - :integer
771
+ MaxSize:
772
+ - :integer
773
+ DesiredCapacity:
774
+ - :integer
775
+ DefaultCooldown:
776
+ - :integer
777
+ AvailabilityZones:
778
+ - :membered_list:
779
+ - :string
780
+ HealthCheckType:
781
+ - :string
782
+ HealthCheckGracePeriod:
783
+ - :integer
784
+ PlacementGroup:
785
+ - :string
786
+ VPCZoneIdentifier:
787
+ - :string
788
+ :outputs:
789
+ :children:
790
+ UpdateAutoScalingGroupResult:
791
+ :ignore: true