aws-sdk 1.6.9 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/README.rdoc +1 -1
  2. data/lib/aws.rb +8 -0
  3. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  4. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +4 -0
  5. data/lib/aws/api_config/EMR-2009-03-31.yml +18 -0
  6. data/lib/aws/api_config/ElastiCache-2012-03-09.yml +777 -0
  7. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +823 -0
  8. data/lib/aws/api_config/RDS-2012-07-31.yml +1621 -0
  9. data/lib/aws/cloud_search.rb +31 -0
  10. data/lib/aws/cloud_search/client.rb +558 -0
  11. data/lib/aws/cloud_search/config.rb +18 -0
  12. data/lib/aws/cloud_search/errors.rb +22 -0
  13. data/lib/aws/cloud_search/request.rb +23 -0
  14. data/lib/aws/cloud_watch/alarm.rb +1 -1
  15. data/lib/aws/cloud_watch/metric.rb +3 -3
  16. data/lib/aws/core.rb +18 -3
  17. data/lib/aws/core/configuration.rb +11 -0
  18. data/lib/aws/core/inflection.rb +1 -0
  19. data/lib/aws/core/service_interface.rb +1 -1
  20. data/lib/aws/dynamo_db/batch_get.rb +19 -12
  21. data/lib/aws/dynamo_db/client.rb +27 -1
  22. data/lib/aws/dynamo_db/config.rb +2 -0
  23. data/lib/aws/dynamo_db/item_collection.rb +2 -2
  24. data/lib/aws/dynamo_db/table.rb +8 -2
  25. data/lib/aws/ec2/reserved_instances.rb +3 -0
  26. data/lib/aws/ec2/reserved_instances_offering.rb +3 -1
  27. data/lib/aws/elastic_beanstalk.rb +48 -0
  28. data/lib/aws/elastic_beanstalk/client.rb +867 -0
  29. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  30. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  31. data/lib/aws/elastic_beanstalk/request.rb +23 -0
  32. data/lib/aws/elasticache.rb +48 -0
  33. data/lib/aws/elasticache/client.rb +758 -0
  34. data/lib/aws/elasticache/config.rb +18 -0
  35. data/lib/aws/elasticache/errors.rb +22 -0
  36. data/lib/aws/elasticache/request.rb +23 -0
  37. data/lib/aws/emr/client.rb +30 -6
  38. data/lib/aws/emr/job_flow.rb +10 -0
  39. data/lib/aws/rds.rb +69 -0
  40. data/lib/aws/rds/client.rb +1592 -0
  41. data/lib/aws/rds/config.rb +18 -0
  42. data/lib/aws/rds/db_instance.rb +201 -0
  43. data/lib/aws/rds/db_instance_collection.rb +75 -0
  44. data/lib/aws/rds/db_snapshot.rb +163 -0
  45. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  46. data/lib/aws/rds/errors.rb +22 -0
  47. data/lib/aws/rds/request.rb +23 -0
  48. data/lib/aws/s3/bucket_tag_collection.rb +1 -1
  49. data/lib/aws/s3/client.rb +4 -2
  50. data/lib/aws/s3/errors.rb +0 -1
  51. data/lib/aws/s3/object_collection.rb +40 -22
  52. data/lib/aws/s3/object_version.rb +7 -2
  53. data/lib/aws/s3/request.rb +1 -1
  54. data/lib/aws/s3/s3_object.rb +35 -11
  55. data/lib/aws/version.rb +1 -1
  56. metadata +33 -2
@@ -66,6 +66,8 @@
66
66
  AttributesToGet:
67
67
  - :list:
68
68
  - :string
69
+ ConsistentRead:
70
+ - :boolean
69
71
  - :required
70
72
  :outputs:
71
73
  Responses:
@@ -132,6 +134,8 @@
132
134
  :type: :blob
133
135
  AttributesToGet:
134
136
  :type: :string
137
+ ConsistentRead:
138
+ :type: :boolean
135
139
  - :name: BatchWriteItem
136
140
  :method: :batch_write_item
137
141
  :inputs:
@@ -205,6 +205,8 @@
205
205
  member:
206
206
  :rename: :supported_products
207
207
  :list: true
208
+ VisibleToAllUsers:
209
+ :type: :boolean
208
210
  - :name: ModifyInstanceGroups
209
211
  :method: :modify_instance_groups
210
212
  :inputs:
@@ -319,6 +321,8 @@
319
321
  SupportedProducts:
320
322
  - :membered_list:
321
323
  - :string
324
+ VisibleToAllUsers:
325
+ - :boolean
322
326
  :outputs:
323
327
  :children:
324
328
  RunJobFlowResult:
@@ -337,6 +341,20 @@
337
341
  :children:
338
342
  SetTerminationProtectionResult:
339
343
  :ignore: true
344
+ - :name: SetVisibleToAllUsers
345
+ :method: :set_visible_to_all_users
346
+ :inputs:
347
+ JobFlowIds:
348
+ - :membered_list:
349
+ - :string
350
+ - :required
351
+ VisibleToAllUsers:
352
+ - :boolean
353
+ - :required
354
+ :outputs:
355
+ :children:
356
+ SetVisibleToAllUsersResult:
357
+ :ignore: true
340
358
  - :name: TerminateJobFlows
341
359
  :method: :terminate_job_flows
342
360
  :inputs:
@@ -0,0 +1,777 @@
1
+ # Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :api_version: '2012-03-09'
16
+ :operations:
17
+ - :name: AuthorizeCacheSecurityGroupIngress
18
+ :method: :authorize_cache_security_group_ingress
19
+ :inputs:
20
+ CacheSecurityGroupName:
21
+ - :string
22
+ - :required
23
+ EC2SecurityGroupName:
24
+ - :string
25
+ - :required
26
+ EC2SecurityGroupOwnerId:
27
+ - :string
28
+ - :required
29
+ :outputs:
30
+ :children:
31
+ AuthorizeCacheSecurityGroupIngressResult:
32
+ :ignore: true
33
+ :children:
34
+ EC2SecurityGroups:
35
+ :ignore: true
36
+ :children:
37
+ EC2SecurityGroup:
38
+ :rename: :ec2_security_groups
39
+ :list: true
40
+ - :name: CreateCacheCluster
41
+ :method: :create_cache_cluster
42
+ :inputs:
43
+ CacheClusterId:
44
+ - :string
45
+ - :required
46
+ NumCacheNodes:
47
+ - :integer
48
+ - :required
49
+ CacheNodeType:
50
+ - :string
51
+ - :required
52
+ Engine:
53
+ - :string
54
+ - :required
55
+ EngineVersion:
56
+ - :string
57
+ CacheParameterGroupName:
58
+ - :string
59
+ CacheSecurityGroupNames:
60
+ - :membered_list:
61
+ - :string
62
+ - :required
63
+ PreferredAvailabilityZone:
64
+ - :string
65
+ PreferredMaintenanceWindow:
66
+ - :string
67
+ Port:
68
+ - :integer
69
+ NotificationTopicArn:
70
+ - :string
71
+ AutoMinorVersionUpgrade:
72
+ - :boolean
73
+ :outputs:
74
+ :children:
75
+ CreateCacheClusterResult:
76
+ :ignore: true
77
+ :children:
78
+ NumCacheNodes:
79
+ :type: :integer
80
+ CacheClusterCreateTime:
81
+ :type: :time
82
+ PendingModifiedValues:
83
+ :children:
84
+ NumCacheNodes:
85
+ :type: :integer
86
+ CacheNodeIdsToRemove:
87
+ :ignore: true
88
+ :children:
89
+ CacheNodeId:
90
+ :rename: :cache_node_ids_to_remove
91
+ :list: true
92
+ CacheSecurityGroups:
93
+ :ignore: true
94
+ :children:
95
+ CacheSecurityGroup:
96
+ :rename: :cache_security_groups
97
+ :list: true
98
+ CacheParameterGroup:
99
+ :children:
100
+ CacheNodeIdsToReboot:
101
+ :ignore: true
102
+ :children:
103
+ CacheNodeId:
104
+ :rename: :cache_node_ids_to_reboot
105
+ :list: true
106
+ CacheNodes:
107
+ :ignore: true
108
+ :children:
109
+ CacheNode:
110
+ :rename: :cache_nodes
111
+ :list: true
112
+ :children:
113
+ CacheNodeCreateTime:
114
+ :type: :time
115
+ Endpoint:
116
+ :children:
117
+ Port:
118
+ :type: :integer
119
+ AutoMinorVersionUpgrade:
120
+ :type: :boolean
121
+ - :name: CreateCacheParameterGroup
122
+ :method: :create_cache_parameter_group
123
+ :inputs:
124
+ CacheParameterGroupName:
125
+ - :string
126
+ - :required
127
+ CacheParameterGroupFamily:
128
+ - :string
129
+ - :required
130
+ Description:
131
+ - :string
132
+ - :required
133
+ :outputs:
134
+ :children:
135
+ CreateCacheParameterGroupResult:
136
+ :ignore: true
137
+ - :name: CreateCacheSecurityGroup
138
+ :method: :create_cache_security_group
139
+ :inputs:
140
+ CacheSecurityGroupName:
141
+ - :string
142
+ - :required
143
+ Description:
144
+ - :string
145
+ - :required
146
+ :outputs:
147
+ :children:
148
+ CreateCacheSecurityGroupResult:
149
+ :ignore: true
150
+ :children:
151
+ EC2SecurityGroups:
152
+ :ignore: true
153
+ :children:
154
+ EC2SecurityGroup:
155
+ :rename: :ec2_security_groups
156
+ :list: true
157
+ - :name: DeleteCacheCluster
158
+ :method: :delete_cache_cluster
159
+ :inputs:
160
+ CacheClusterId:
161
+ - :string
162
+ - :required
163
+ :outputs:
164
+ :children:
165
+ DeleteCacheClusterResult:
166
+ :ignore: true
167
+ :children:
168
+ NumCacheNodes:
169
+ :type: :integer
170
+ CacheClusterCreateTime:
171
+ :type: :time
172
+ PendingModifiedValues:
173
+ :children:
174
+ NumCacheNodes:
175
+ :type: :integer
176
+ CacheNodeIdsToRemove:
177
+ :ignore: true
178
+ :children:
179
+ CacheNodeId:
180
+ :rename: :cache_node_ids_to_remove
181
+ :list: true
182
+ CacheSecurityGroups:
183
+ :ignore: true
184
+ :children:
185
+ CacheSecurityGroup:
186
+ :rename: :cache_security_groups
187
+ :list: true
188
+ CacheParameterGroup:
189
+ :children:
190
+ CacheNodeIdsToReboot:
191
+ :ignore: true
192
+ :children:
193
+ CacheNodeId:
194
+ :rename: :cache_node_ids_to_reboot
195
+ :list: true
196
+ CacheNodes:
197
+ :ignore: true
198
+ :children:
199
+ CacheNode:
200
+ :rename: :cache_nodes
201
+ :list: true
202
+ :children:
203
+ CacheNodeCreateTime:
204
+ :type: :time
205
+ Endpoint:
206
+ :children:
207
+ Port:
208
+ :type: :integer
209
+ AutoMinorVersionUpgrade:
210
+ :type: :boolean
211
+ - :name: DeleteCacheParameterGroup
212
+ :method: :delete_cache_parameter_group
213
+ :inputs:
214
+ CacheParameterGroupName:
215
+ - :string
216
+ - :required
217
+ :outputs:
218
+ :children:
219
+ DeleteCacheParameterGroupResult:
220
+ :ignore: true
221
+ - :name: DeleteCacheSecurityGroup
222
+ :method: :delete_cache_security_group
223
+ :inputs:
224
+ CacheSecurityGroupName:
225
+ - :string
226
+ - :required
227
+ :outputs:
228
+ :children:
229
+ DeleteCacheSecurityGroupResult:
230
+ :ignore: true
231
+ - :name: DescribeCacheClusters
232
+ :method: :describe_cache_clusters
233
+ :inputs:
234
+ CacheClusterId:
235
+ - :string
236
+ MaxRecords:
237
+ - :integer
238
+ Marker:
239
+ - :string
240
+ ShowCacheNodeInfo:
241
+ - :boolean
242
+ :outputs:
243
+ :children:
244
+ DescribeCacheClustersResult:
245
+ :ignore: true
246
+ :children:
247
+ CacheClusters:
248
+ :ignore: true
249
+ :children:
250
+ CacheCluster:
251
+ :rename: :cache_clusters
252
+ :list: true
253
+ :children:
254
+ NumCacheNodes:
255
+ :type: :integer
256
+ CacheClusterCreateTime:
257
+ :type: :time
258
+ PendingModifiedValues:
259
+ :children:
260
+ NumCacheNodes:
261
+ :type: :integer
262
+ CacheNodeIdsToRemove:
263
+ :ignore: true
264
+ :children:
265
+ CacheNodeId:
266
+ :rename: :cache_node_ids_to_remove
267
+ :list: true
268
+ CacheSecurityGroups:
269
+ :ignore: true
270
+ :children:
271
+ CacheSecurityGroup:
272
+ :rename: :cache_security_groups
273
+ :list: true
274
+ CacheParameterGroup:
275
+ :children:
276
+ CacheNodeIdsToReboot:
277
+ :ignore: true
278
+ :children:
279
+ CacheNodeId:
280
+ :rename: :cache_node_ids_to_reboot
281
+ :list: true
282
+ CacheNodes:
283
+ :ignore: true
284
+ :children:
285
+ CacheNode:
286
+ :rename: :cache_nodes
287
+ :list: true
288
+ :children:
289
+ CacheNodeCreateTime:
290
+ :type: :time
291
+ Endpoint:
292
+ :children:
293
+ Port:
294
+ :type: :integer
295
+ AutoMinorVersionUpgrade:
296
+ :type: :boolean
297
+ - :name: DescribeCacheParameterGroups
298
+ :method: :describe_cache_parameter_groups
299
+ :inputs:
300
+ CacheParameterGroupName:
301
+ - :string
302
+ MaxRecords:
303
+ - :integer
304
+ Marker:
305
+ - :string
306
+ :outputs:
307
+ :children:
308
+ DescribeCacheParameterGroupsResult:
309
+ :ignore: true
310
+ :children:
311
+ CacheParameterGroups:
312
+ :ignore: true
313
+ :children:
314
+ CacheParameterGroup:
315
+ :rename: :cache_parameter_groups
316
+ :list: true
317
+ - :name: DescribeCacheParameters
318
+ :method: :describe_cache_parameters
319
+ :inputs:
320
+ CacheParameterGroupName:
321
+ - :string
322
+ - :required
323
+ Source:
324
+ - :string
325
+ MaxRecords:
326
+ - :integer
327
+ Marker:
328
+ - :string
329
+ :outputs:
330
+ :children:
331
+ DescribeCacheParametersResult:
332
+ :ignore: true
333
+ :children:
334
+ Parameters:
335
+ :ignore: true
336
+ :children:
337
+ Parameter:
338
+ :rename: :parameters
339
+ :list: true
340
+ :children:
341
+ IsModifiable:
342
+ :type: :boolean
343
+ CacheNodeTypeSpecificParameters:
344
+ :ignore: true
345
+ :children:
346
+ CacheNodeTypeSpecificParameter:
347
+ :rename: :cache_node_type_specific_parameters
348
+ :list: true
349
+ :children:
350
+ IsModifiable:
351
+ :type: :boolean
352
+ CacheNodeTypeSpecificValues:
353
+ :ignore: true
354
+ :children:
355
+ CacheNodeTypeSpecificValue:
356
+ :rename: :cache_node_type_specific_values
357
+ :list: true
358
+ - :name: DescribeCacheSecurityGroups
359
+ :method: :describe_cache_security_groups
360
+ :inputs:
361
+ CacheSecurityGroupName:
362
+ - :string
363
+ MaxRecords:
364
+ - :integer
365
+ Marker:
366
+ - :string
367
+ :outputs:
368
+ :children:
369
+ DescribeCacheSecurityGroupsResult:
370
+ :ignore: true
371
+ :children:
372
+ CacheSecurityGroups:
373
+ :ignore: true
374
+ :children:
375
+ CacheSecurityGroup:
376
+ :rename: :cache_security_groups
377
+ :list: true
378
+ :children:
379
+ EC2SecurityGroups:
380
+ :ignore: true
381
+ :children:
382
+ EC2SecurityGroup:
383
+ :rename: :ec2_security_groups
384
+ :list: true
385
+ - :name: DescribeEngineDefaultParameters
386
+ :method: :describe_engine_default_parameters
387
+ :inputs:
388
+ CacheParameterGroupFamily:
389
+ - :string
390
+ - :required
391
+ MaxRecords:
392
+ - :integer
393
+ Marker:
394
+ - :string
395
+ :outputs:
396
+ :children:
397
+ DescribeEngineDefaultParametersResult:
398
+ :ignore: true
399
+ :children:
400
+ Parameters:
401
+ :ignore: true
402
+ :children:
403
+ Parameter:
404
+ :rename: :parameters
405
+ :list: true
406
+ :children:
407
+ IsModifiable:
408
+ :type: :boolean
409
+ CacheNodeTypeSpecificParameters:
410
+ :ignore: true
411
+ :children:
412
+ CacheNodeTypeSpecificParameter:
413
+ :rename: :cache_node_type_specific_parameters
414
+ :list: true
415
+ :children:
416
+ IsModifiable:
417
+ :type: :boolean
418
+ CacheNodeTypeSpecificValues:
419
+ :ignore: true
420
+ :children:
421
+ CacheNodeTypeSpecificValue:
422
+ :rename: :cache_node_type_specific_values
423
+ :list: true
424
+ - :name: DescribeEvents
425
+ :method: :describe_events
426
+ :inputs:
427
+ SourceIdentifier:
428
+ - :string
429
+ SourceType:
430
+ - :string
431
+ StartTime:
432
+ - :timestamp
433
+ EndTime:
434
+ - :timestamp
435
+ Duration:
436
+ - :integer
437
+ MaxRecords:
438
+ - :integer
439
+ Marker:
440
+ - :string
441
+ :outputs:
442
+ :children:
443
+ DescribeEventsResult:
444
+ :ignore: true
445
+ :children:
446
+ Events:
447
+ :ignore: true
448
+ :children:
449
+ Event:
450
+ :rename: :events
451
+ :list: true
452
+ :children:
453
+ Date:
454
+ :type: :time
455
+ - :name: DescribeReservedCacheNodes
456
+ :method: :describe_reserved_cache_nodes
457
+ :inputs:
458
+ ReservedCacheNodeId:
459
+ - :string
460
+ ReservedCacheNodesOfferingId:
461
+ - :string
462
+ CacheNodeType:
463
+ - :string
464
+ Duration:
465
+ - :string
466
+ ProductDescription:
467
+ - :string
468
+ OfferingType:
469
+ - :string
470
+ MaxRecords:
471
+ - :integer
472
+ Marker:
473
+ - :string
474
+ :outputs:
475
+ :children:
476
+ DescribeReservedCacheNodesResult:
477
+ :ignore: true
478
+ :children:
479
+ ReservedCacheNodes:
480
+ :ignore: true
481
+ :children:
482
+ ReservedCacheNode:
483
+ :rename: :reserved_cache_nodes
484
+ :list: true
485
+ :children:
486
+ StartTime:
487
+ :type: :time
488
+ Duration:
489
+ :type: :integer
490
+ FixedPrice:
491
+ :type: :float
492
+ UsagePrice:
493
+ :type: :float
494
+ CacheNodeCount:
495
+ :type: :integer
496
+ RecurringCharges:
497
+ :ignore: true
498
+ :children:
499
+ RecurringCharge:
500
+ :rename: :recurring_charges
501
+ :list: true
502
+ :children:
503
+ RecurringChargeAmount:
504
+ :type: :float
505
+ - :name: DescribeReservedCacheNodesOfferings
506
+ :method: :describe_reserved_cache_nodes_offerings
507
+ :inputs:
508
+ ReservedCacheNodesOfferingId:
509
+ - :string
510
+ CacheNodeType:
511
+ - :string
512
+ Duration:
513
+ - :string
514
+ ProductDescription:
515
+ - :string
516
+ OfferingType:
517
+ - :string
518
+ MaxRecords:
519
+ - :integer
520
+ Marker:
521
+ - :string
522
+ :outputs:
523
+ :children:
524
+ DescribeReservedCacheNodesOfferingsResult:
525
+ :ignore: true
526
+ :children:
527
+ ReservedCacheNodesOfferings:
528
+ :ignore: true
529
+ :children:
530
+ ReservedCacheNodesOffering:
531
+ :rename: :reserved_cache_nodes_offerings
532
+ :list: true
533
+ :children:
534
+ Duration:
535
+ :type: :integer
536
+ FixedPrice:
537
+ :type: :float
538
+ UsagePrice:
539
+ :type: :float
540
+ RecurringCharges:
541
+ :ignore: true
542
+ :children:
543
+ RecurringCharge:
544
+ :rename: :recurring_charges
545
+ :list: true
546
+ :children:
547
+ RecurringChargeAmount:
548
+ :type: :float
549
+ - :name: ModifyCacheCluster
550
+ :method: :modify_cache_cluster
551
+ :inputs:
552
+ CacheClusterId:
553
+ - :string
554
+ - :required
555
+ NumCacheNodes:
556
+ - :integer
557
+ CacheNodeIdsToRemove:
558
+ - :membered_list:
559
+ - :string
560
+ CacheSecurityGroupNames:
561
+ - :membered_list:
562
+ - :string
563
+ PreferredMaintenanceWindow:
564
+ - :string
565
+ NotificationTopicArn:
566
+ - :string
567
+ CacheParameterGroupName:
568
+ - :string
569
+ NotificationTopicStatus:
570
+ - :string
571
+ ApplyImmediately:
572
+ - :boolean
573
+ EngineVersion:
574
+ - :string
575
+ AutoMinorVersionUpgrade:
576
+ - :boolean
577
+ :outputs:
578
+ :children:
579
+ ModifyCacheClusterResult:
580
+ :ignore: true
581
+ :children:
582
+ NumCacheNodes:
583
+ :type: :integer
584
+ CacheClusterCreateTime:
585
+ :type: :time
586
+ PendingModifiedValues:
587
+ :children:
588
+ NumCacheNodes:
589
+ :type: :integer
590
+ CacheNodeIdsToRemove:
591
+ :ignore: true
592
+ :children:
593
+ CacheNodeId:
594
+ :rename: :cache_node_ids_to_remove
595
+ :list: true
596
+ CacheSecurityGroups:
597
+ :ignore: true
598
+ :children:
599
+ CacheSecurityGroup:
600
+ :rename: :cache_security_groups
601
+ :list: true
602
+ CacheParameterGroup:
603
+ :children:
604
+ CacheNodeIdsToReboot:
605
+ :ignore: true
606
+ :children:
607
+ CacheNodeId:
608
+ :rename: :cache_node_ids_to_reboot
609
+ :list: true
610
+ CacheNodes:
611
+ :ignore: true
612
+ :children:
613
+ CacheNode:
614
+ :rename: :cache_nodes
615
+ :list: true
616
+ :children:
617
+ CacheNodeCreateTime:
618
+ :type: :time
619
+ Endpoint:
620
+ :children:
621
+ Port:
622
+ :type: :integer
623
+ AutoMinorVersionUpgrade:
624
+ :type: :boolean
625
+ - :name: ModifyCacheParameterGroup
626
+ :method: :modify_cache_parameter_group
627
+ :inputs:
628
+ CacheParameterGroupName:
629
+ - :string
630
+ - :required
631
+ ParameterNameValues:
632
+ - :membered_list:
633
+ - :structure:
634
+ ParameterName:
635
+ - :string
636
+ ParameterValue:
637
+ - :string
638
+ - :required
639
+ :outputs:
640
+ :children:
641
+ ModifyCacheParameterGroupResult:
642
+ :ignore: true
643
+ - :name: PurchaseReservedCacheNodesOffering
644
+ :method: :purchase_reserved_cache_nodes_offering
645
+ :inputs:
646
+ ReservedCacheNodesOfferingId:
647
+ - :string
648
+ - :required
649
+ ReservedCacheNodeId:
650
+ - :string
651
+ CacheNodeCount:
652
+ - :integer
653
+ :outputs:
654
+ :children:
655
+ PurchaseReservedCacheNodesOfferingResult:
656
+ :ignore: true
657
+ :children:
658
+ StartTime:
659
+ :type: :time
660
+ Duration:
661
+ :type: :integer
662
+ FixedPrice:
663
+ :type: :float
664
+ UsagePrice:
665
+ :type: :float
666
+ CacheNodeCount:
667
+ :type: :integer
668
+ RecurringCharges:
669
+ :ignore: true
670
+ :children:
671
+ RecurringCharge:
672
+ :rename: :recurring_charges
673
+ :list: true
674
+ :children:
675
+ RecurringChargeAmount:
676
+ :type: :float
677
+ - :name: RebootCacheCluster
678
+ :method: :reboot_cache_cluster
679
+ :inputs:
680
+ CacheClusterId:
681
+ - :string
682
+ - :required
683
+ CacheNodeIdsToReboot:
684
+ - :membered_list:
685
+ - :string
686
+ - :required
687
+ :outputs:
688
+ :children:
689
+ RebootCacheClusterResult:
690
+ :ignore: true
691
+ :children:
692
+ NumCacheNodes:
693
+ :type: :integer
694
+ CacheClusterCreateTime:
695
+ :type: :time
696
+ PendingModifiedValues:
697
+ :children:
698
+ NumCacheNodes:
699
+ :type: :integer
700
+ CacheNodeIdsToRemove:
701
+ :ignore: true
702
+ :children:
703
+ CacheNodeId:
704
+ :rename: :cache_node_ids_to_remove
705
+ :list: true
706
+ CacheSecurityGroups:
707
+ :ignore: true
708
+ :children:
709
+ CacheSecurityGroup:
710
+ :rename: :cache_security_groups
711
+ :list: true
712
+ CacheParameterGroup:
713
+ :children:
714
+ CacheNodeIdsToReboot:
715
+ :ignore: true
716
+ :children:
717
+ CacheNodeId:
718
+ :rename: :cache_node_ids_to_reboot
719
+ :list: true
720
+ CacheNodes:
721
+ :ignore: true
722
+ :children:
723
+ CacheNode:
724
+ :rename: :cache_nodes
725
+ :list: true
726
+ :children:
727
+ CacheNodeCreateTime:
728
+ :type: :time
729
+ Endpoint:
730
+ :children:
731
+ Port:
732
+ :type: :integer
733
+ AutoMinorVersionUpgrade:
734
+ :type: :boolean
735
+ - :name: ResetCacheParameterGroup
736
+ :method: :reset_cache_parameter_group
737
+ :inputs:
738
+ CacheParameterGroupName:
739
+ - :string
740
+ - :required
741
+ ResetAllParameters:
742
+ - :boolean
743
+ ParameterNameValues:
744
+ - :membered_list:
745
+ - :structure:
746
+ ParameterName:
747
+ - :string
748
+ ParameterValue:
749
+ - :string
750
+ - :required
751
+ :outputs:
752
+ :children:
753
+ ResetCacheParameterGroupResult:
754
+ :ignore: true
755
+ - :name: RevokeCacheSecurityGroupIngress
756
+ :method: :revoke_cache_security_group_ingress
757
+ :inputs:
758
+ CacheSecurityGroupName:
759
+ - :string
760
+ - :required
761
+ EC2SecurityGroupName:
762
+ - :string
763
+ - :required
764
+ EC2SecurityGroupOwnerId:
765
+ - :string
766
+ - :required
767
+ :outputs:
768
+ :children:
769
+ RevokeCacheSecurityGroupIngressResult:
770
+ :ignore: true
771
+ :children:
772
+ EC2SecurityGroups:
773
+ :ignore: true
774
+ :children:
775
+ EC2SecurityGroup:
776
+ :rename: :ec2_security_groups
777
+ :list: true