aws-sdk 1.8.2 → 1.8.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/aws-sdk.rb +2 -0
- data/lib/aws/api_config/ElastiCache-2012-11-15.yml +979 -0
- data/lib/aws/api_config/OpsWorks-2013-02-18.yml +1463 -0
- data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
- data/lib/aws/core.rb +4 -0
- data/lib/aws/core/configuration.rb +3 -0
- data/lib/aws/core/options/validator.rb +11 -0
- data/lib/aws/dynamo_db.rb +1 -1
- data/lib/aws/dynamo_db/attribute_collection.rb +7 -6
- data/lib/aws/ec2/instance.rb +41 -7
- data/lib/aws/elasticache/client.rb +166 -3
- data/lib/aws/ops_works.rb +30 -0
- data/lib/aws/ops_works/client.rb +713 -0
- data/lib/aws/ops_works/config.rb +18 -0
- data/lib/aws/ops_works/errors.rb +20 -0
- data/lib/aws/ops_works/request.rb +27 -0
- data/lib/aws/record/model.rb +1 -1
- data/lib/aws/route_53/client.rb +124 -1
- data/lib/aws/s3/client.rb +2 -31
- data/lib/aws/s3/website_configuration.rb +30 -1
- data/lib/aws/version.rb +1 -1
- metadata +11 -3
data/lib/aws-sdk.rb
CHANGED
@@ -29,6 +29,7 @@ require 'aws/elb/config'
|
|
29
29
|
require 'aws/iam/config'
|
30
30
|
require 'aws/import_export/config'
|
31
31
|
require 'aws/glacier/config'
|
32
|
+
require 'aws/ops_works/config'
|
32
33
|
require 'aws/redshift/config'
|
33
34
|
require 'aws/rds/config'
|
34
35
|
require 'aws/route_53/config'
|
@@ -59,6 +60,7 @@ module AWS
|
|
59
60
|
autoload :IAM, 'iam'
|
60
61
|
autoload :ImportExport, 'import_export'
|
61
62
|
autoload :Glacier, 'glacier'
|
63
|
+
autoload :OpsWorks, 'ops_works'
|
62
64
|
autoload :Redshift, 'redshift'
|
63
65
|
autoload :RDS, 'rds'
|
64
66
|
autoload :Route53, 'route_53'
|
@@ -0,0 +1,979 @@
|
|
1
|
+
# Copyright 2011-2013 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-11-15'
|
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
|
+
CacheSecurityGroup:
|
35
|
+
:children:
|
36
|
+
EC2SecurityGroups:
|
37
|
+
:ignore: true
|
38
|
+
:children:
|
39
|
+
EC2SecurityGroup:
|
40
|
+
:rename: :ec2_security_groups
|
41
|
+
:list: true
|
42
|
+
:ignore: true
|
43
|
+
- :name: CreateCacheCluster
|
44
|
+
:method: :create_cache_cluster
|
45
|
+
:inputs:
|
46
|
+
CacheClusterId:
|
47
|
+
- :string
|
48
|
+
- :required
|
49
|
+
NumCacheNodes:
|
50
|
+
- :integer
|
51
|
+
- :required
|
52
|
+
CacheNodeType:
|
53
|
+
- :string
|
54
|
+
- :required
|
55
|
+
Engine:
|
56
|
+
- :string
|
57
|
+
- :required
|
58
|
+
EngineVersion:
|
59
|
+
- :string
|
60
|
+
CacheParameterGroupName:
|
61
|
+
- :string
|
62
|
+
CacheSubnetGroupName:
|
63
|
+
- :string
|
64
|
+
CacheSecurityGroupNames:
|
65
|
+
- :membered_list:
|
66
|
+
- :string
|
67
|
+
SecurityGroupIds:
|
68
|
+
- :membered_list:
|
69
|
+
- :string
|
70
|
+
PreferredAvailabilityZone:
|
71
|
+
- :string
|
72
|
+
PreferredMaintenanceWindow:
|
73
|
+
- :string
|
74
|
+
Port:
|
75
|
+
- :integer
|
76
|
+
NotificationTopicArn:
|
77
|
+
- :string
|
78
|
+
AutoMinorVersionUpgrade:
|
79
|
+
- :boolean
|
80
|
+
:outputs:
|
81
|
+
:children:
|
82
|
+
CreateCacheClusterResult:
|
83
|
+
:ignore: true
|
84
|
+
:children:
|
85
|
+
CacheCluster:
|
86
|
+
:children:
|
87
|
+
ConfigurationEndpoint:
|
88
|
+
:children:
|
89
|
+
Port:
|
90
|
+
:type: :integer
|
91
|
+
NumCacheNodes:
|
92
|
+
:type: :integer
|
93
|
+
CacheClusterCreateTime:
|
94
|
+
:type: :time
|
95
|
+
PendingModifiedValues:
|
96
|
+
:children:
|
97
|
+
NumCacheNodes:
|
98
|
+
:type: :integer
|
99
|
+
CacheNodeIdsToRemove:
|
100
|
+
:ignore: true
|
101
|
+
:children:
|
102
|
+
CacheNodeId:
|
103
|
+
:rename: :cache_node_ids_to_remove
|
104
|
+
:list: true
|
105
|
+
CacheSecurityGroups:
|
106
|
+
:ignore: true
|
107
|
+
:children:
|
108
|
+
CacheSecurityGroup:
|
109
|
+
:rename: :cache_security_groups
|
110
|
+
:list: true
|
111
|
+
CacheParameterGroup:
|
112
|
+
:children:
|
113
|
+
CacheNodeIdsToReboot:
|
114
|
+
:ignore: true
|
115
|
+
:children:
|
116
|
+
CacheNodeId:
|
117
|
+
:rename: :cache_node_ids_to_reboot
|
118
|
+
:list: true
|
119
|
+
CacheNodes:
|
120
|
+
:ignore: true
|
121
|
+
:children:
|
122
|
+
CacheNode:
|
123
|
+
:rename: :cache_nodes
|
124
|
+
:list: true
|
125
|
+
:children:
|
126
|
+
CacheNodeCreateTime:
|
127
|
+
:type: :time
|
128
|
+
Endpoint:
|
129
|
+
:children:
|
130
|
+
Port:
|
131
|
+
:type: :integer
|
132
|
+
AutoMinorVersionUpgrade:
|
133
|
+
:type: :boolean
|
134
|
+
SecurityGroups:
|
135
|
+
:ignore: true
|
136
|
+
:children:
|
137
|
+
member:
|
138
|
+
:rename: :security_groups
|
139
|
+
:list: true
|
140
|
+
:ignore: true
|
141
|
+
- :name: CreateCacheParameterGroup
|
142
|
+
:method: :create_cache_parameter_group
|
143
|
+
:inputs:
|
144
|
+
CacheParameterGroupName:
|
145
|
+
- :string
|
146
|
+
- :required
|
147
|
+
CacheParameterGroupFamily:
|
148
|
+
- :string
|
149
|
+
- :required
|
150
|
+
Description:
|
151
|
+
- :string
|
152
|
+
- :required
|
153
|
+
:outputs:
|
154
|
+
:children:
|
155
|
+
CreateCacheParameterGroupResult:
|
156
|
+
:ignore: true
|
157
|
+
:children:
|
158
|
+
CacheParameterGroup:
|
159
|
+
:ignore: true
|
160
|
+
- :name: CreateCacheSecurityGroup
|
161
|
+
:method: :create_cache_security_group
|
162
|
+
:inputs:
|
163
|
+
CacheSecurityGroupName:
|
164
|
+
- :string
|
165
|
+
- :required
|
166
|
+
Description:
|
167
|
+
- :string
|
168
|
+
- :required
|
169
|
+
:outputs:
|
170
|
+
:children:
|
171
|
+
CreateCacheSecurityGroupResult:
|
172
|
+
:ignore: true
|
173
|
+
:children:
|
174
|
+
CacheSecurityGroup:
|
175
|
+
:children:
|
176
|
+
EC2SecurityGroups:
|
177
|
+
:ignore: true
|
178
|
+
:children:
|
179
|
+
EC2SecurityGroup:
|
180
|
+
:rename: :ec2_security_groups
|
181
|
+
:list: true
|
182
|
+
:ignore: true
|
183
|
+
- :name: CreateCacheSubnetGroup
|
184
|
+
:method: :create_cache_subnet_group
|
185
|
+
:inputs:
|
186
|
+
CacheSubnetGroupName:
|
187
|
+
- :string
|
188
|
+
- :required
|
189
|
+
CacheSubnetGroupDescription:
|
190
|
+
- :string
|
191
|
+
- :required
|
192
|
+
SubnetIds:
|
193
|
+
- :membered_list:
|
194
|
+
- :string
|
195
|
+
- :required
|
196
|
+
:outputs:
|
197
|
+
:children:
|
198
|
+
CreateCacheSubnetGroupResult:
|
199
|
+
:ignore: true
|
200
|
+
:children:
|
201
|
+
CacheSubnetGroup:
|
202
|
+
:children:
|
203
|
+
Subnets:
|
204
|
+
:ignore: true
|
205
|
+
:children:
|
206
|
+
Subnet:
|
207
|
+
:rename: :subnets
|
208
|
+
:list: true
|
209
|
+
:ignore: true
|
210
|
+
- :name: DeleteCacheCluster
|
211
|
+
:method: :delete_cache_cluster
|
212
|
+
:inputs:
|
213
|
+
CacheClusterId:
|
214
|
+
- :string
|
215
|
+
- :required
|
216
|
+
:outputs:
|
217
|
+
:children:
|
218
|
+
DeleteCacheClusterResult:
|
219
|
+
:ignore: true
|
220
|
+
:children:
|
221
|
+
CacheCluster:
|
222
|
+
:children:
|
223
|
+
ConfigurationEndpoint:
|
224
|
+
:children:
|
225
|
+
Port:
|
226
|
+
:type: :integer
|
227
|
+
NumCacheNodes:
|
228
|
+
:type: :integer
|
229
|
+
CacheClusterCreateTime:
|
230
|
+
:type: :time
|
231
|
+
PendingModifiedValues:
|
232
|
+
:children:
|
233
|
+
NumCacheNodes:
|
234
|
+
:type: :integer
|
235
|
+
CacheNodeIdsToRemove:
|
236
|
+
:ignore: true
|
237
|
+
:children:
|
238
|
+
CacheNodeId:
|
239
|
+
:rename: :cache_node_ids_to_remove
|
240
|
+
:list: true
|
241
|
+
CacheSecurityGroups:
|
242
|
+
:ignore: true
|
243
|
+
:children:
|
244
|
+
CacheSecurityGroup:
|
245
|
+
:rename: :cache_security_groups
|
246
|
+
:list: true
|
247
|
+
CacheParameterGroup:
|
248
|
+
:children:
|
249
|
+
CacheNodeIdsToReboot:
|
250
|
+
:ignore: true
|
251
|
+
:children:
|
252
|
+
CacheNodeId:
|
253
|
+
:rename: :cache_node_ids_to_reboot
|
254
|
+
:list: true
|
255
|
+
CacheNodes:
|
256
|
+
:ignore: true
|
257
|
+
:children:
|
258
|
+
CacheNode:
|
259
|
+
:rename: :cache_nodes
|
260
|
+
:list: true
|
261
|
+
:children:
|
262
|
+
CacheNodeCreateTime:
|
263
|
+
:type: :time
|
264
|
+
Endpoint:
|
265
|
+
:children:
|
266
|
+
Port:
|
267
|
+
:type: :integer
|
268
|
+
AutoMinorVersionUpgrade:
|
269
|
+
:type: :boolean
|
270
|
+
SecurityGroups:
|
271
|
+
:ignore: true
|
272
|
+
:children:
|
273
|
+
member:
|
274
|
+
:rename: :security_groups
|
275
|
+
:list: true
|
276
|
+
:ignore: true
|
277
|
+
- :name: DeleteCacheParameterGroup
|
278
|
+
:method: :delete_cache_parameter_group
|
279
|
+
:inputs:
|
280
|
+
CacheParameterGroupName:
|
281
|
+
- :string
|
282
|
+
- :required
|
283
|
+
:outputs:
|
284
|
+
:children:
|
285
|
+
DeleteCacheParameterGroupResult:
|
286
|
+
:ignore: true
|
287
|
+
- :name: DeleteCacheSecurityGroup
|
288
|
+
:method: :delete_cache_security_group
|
289
|
+
:inputs:
|
290
|
+
CacheSecurityGroupName:
|
291
|
+
- :string
|
292
|
+
- :required
|
293
|
+
:outputs:
|
294
|
+
:children:
|
295
|
+
DeleteCacheSecurityGroupResult:
|
296
|
+
:ignore: true
|
297
|
+
- :name: DeleteCacheSubnetGroup
|
298
|
+
:method: :delete_cache_subnet_group
|
299
|
+
:inputs:
|
300
|
+
CacheSubnetGroupName:
|
301
|
+
- :string
|
302
|
+
- :required
|
303
|
+
:outputs:
|
304
|
+
:children:
|
305
|
+
DeleteCacheSubnetGroupResult:
|
306
|
+
:ignore: true
|
307
|
+
- :name: DescribeCacheClusters
|
308
|
+
:method: :describe_cache_clusters
|
309
|
+
:inputs:
|
310
|
+
CacheClusterId:
|
311
|
+
- :string
|
312
|
+
MaxRecords:
|
313
|
+
- :integer
|
314
|
+
Marker:
|
315
|
+
- :string
|
316
|
+
ShowCacheNodeInfo:
|
317
|
+
- :boolean
|
318
|
+
:outputs:
|
319
|
+
:children:
|
320
|
+
DescribeCacheClustersResult:
|
321
|
+
:ignore: true
|
322
|
+
:children:
|
323
|
+
CacheClusters:
|
324
|
+
:ignore: true
|
325
|
+
:children:
|
326
|
+
CacheCluster:
|
327
|
+
:rename: :cache_clusters
|
328
|
+
:list: true
|
329
|
+
:children:
|
330
|
+
ConfigurationEndpoint:
|
331
|
+
:children:
|
332
|
+
Port:
|
333
|
+
:type: :integer
|
334
|
+
NumCacheNodes:
|
335
|
+
:type: :integer
|
336
|
+
CacheClusterCreateTime:
|
337
|
+
:type: :time
|
338
|
+
PendingModifiedValues:
|
339
|
+
:children:
|
340
|
+
NumCacheNodes:
|
341
|
+
:type: :integer
|
342
|
+
CacheNodeIdsToRemove:
|
343
|
+
:ignore: true
|
344
|
+
:children:
|
345
|
+
CacheNodeId:
|
346
|
+
:rename: :cache_node_ids_to_remove
|
347
|
+
:list: true
|
348
|
+
CacheSecurityGroups:
|
349
|
+
:ignore: true
|
350
|
+
:children:
|
351
|
+
CacheSecurityGroup:
|
352
|
+
:rename: :cache_security_groups
|
353
|
+
:list: true
|
354
|
+
CacheParameterGroup:
|
355
|
+
:children:
|
356
|
+
CacheNodeIdsToReboot:
|
357
|
+
:ignore: true
|
358
|
+
:children:
|
359
|
+
CacheNodeId:
|
360
|
+
:rename: :cache_node_ids_to_reboot
|
361
|
+
:list: true
|
362
|
+
CacheNodes:
|
363
|
+
:ignore: true
|
364
|
+
:children:
|
365
|
+
CacheNode:
|
366
|
+
:rename: :cache_nodes
|
367
|
+
:list: true
|
368
|
+
:children:
|
369
|
+
CacheNodeCreateTime:
|
370
|
+
:type: :time
|
371
|
+
Endpoint:
|
372
|
+
:children:
|
373
|
+
Port:
|
374
|
+
:type: :integer
|
375
|
+
AutoMinorVersionUpgrade:
|
376
|
+
:type: :boolean
|
377
|
+
SecurityGroups:
|
378
|
+
:ignore: true
|
379
|
+
:children:
|
380
|
+
member:
|
381
|
+
:rename: :security_groups
|
382
|
+
:list: true
|
383
|
+
- :name: DescribeCacheEngineVersions
|
384
|
+
:method: :describe_cache_engine_versions
|
385
|
+
:inputs:
|
386
|
+
Engine:
|
387
|
+
- :string
|
388
|
+
EngineVersion:
|
389
|
+
- :string
|
390
|
+
CacheParameterGroupFamily:
|
391
|
+
- :string
|
392
|
+
MaxRecords:
|
393
|
+
- :integer
|
394
|
+
Marker:
|
395
|
+
- :string
|
396
|
+
DefaultOnly:
|
397
|
+
- :boolean
|
398
|
+
:outputs:
|
399
|
+
:children:
|
400
|
+
DescribeCacheEngineVersionsResult:
|
401
|
+
:ignore: true
|
402
|
+
:children:
|
403
|
+
CacheEngineVersions:
|
404
|
+
:ignore: true
|
405
|
+
:children:
|
406
|
+
CacheEngineVersion:
|
407
|
+
:rename: :cache_engine_versions
|
408
|
+
:list: true
|
409
|
+
- :name: DescribeCacheParameterGroups
|
410
|
+
:method: :describe_cache_parameter_groups
|
411
|
+
:inputs:
|
412
|
+
CacheParameterGroupName:
|
413
|
+
- :string
|
414
|
+
MaxRecords:
|
415
|
+
- :integer
|
416
|
+
Marker:
|
417
|
+
- :string
|
418
|
+
:outputs:
|
419
|
+
:children:
|
420
|
+
DescribeCacheParameterGroupsResult:
|
421
|
+
:ignore: true
|
422
|
+
:children:
|
423
|
+
CacheParameterGroups:
|
424
|
+
:ignore: true
|
425
|
+
:children:
|
426
|
+
CacheParameterGroup:
|
427
|
+
:rename: :cache_parameter_groups
|
428
|
+
:list: true
|
429
|
+
- :name: DescribeCacheParameters
|
430
|
+
:method: :describe_cache_parameters
|
431
|
+
:inputs:
|
432
|
+
CacheParameterGroupName:
|
433
|
+
- :string
|
434
|
+
- :required
|
435
|
+
Source:
|
436
|
+
- :string
|
437
|
+
MaxRecords:
|
438
|
+
- :integer
|
439
|
+
Marker:
|
440
|
+
- :string
|
441
|
+
:outputs:
|
442
|
+
:children:
|
443
|
+
DescribeCacheParametersResult:
|
444
|
+
:ignore: true
|
445
|
+
:children:
|
446
|
+
Parameters:
|
447
|
+
:ignore: true
|
448
|
+
:children:
|
449
|
+
Parameter:
|
450
|
+
:rename: :parameters
|
451
|
+
:list: true
|
452
|
+
:children:
|
453
|
+
IsModifiable:
|
454
|
+
:type: :boolean
|
455
|
+
CacheNodeTypeSpecificParameters:
|
456
|
+
:ignore: true
|
457
|
+
:children:
|
458
|
+
CacheNodeTypeSpecificParameter:
|
459
|
+
:rename: :cache_node_type_specific_parameters
|
460
|
+
:list: true
|
461
|
+
:children:
|
462
|
+
IsModifiable:
|
463
|
+
:type: :boolean
|
464
|
+
CacheNodeTypeSpecificValues:
|
465
|
+
:ignore: true
|
466
|
+
:children:
|
467
|
+
CacheNodeTypeSpecificValue:
|
468
|
+
:rename: :cache_node_type_specific_values
|
469
|
+
:list: true
|
470
|
+
- :name: DescribeCacheSecurityGroups
|
471
|
+
:method: :describe_cache_security_groups
|
472
|
+
:inputs:
|
473
|
+
CacheSecurityGroupName:
|
474
|
+
- :string
|
475
|
+
MaxRecords:
|
476
|
+
- :integer
|
477
|
+
Marker:
|
478
|
+
- :string
|
479
|
+
:outputs:
|
480
|
+
:children:
|
481
|
+
DescribeCacheSecurityGroupsResult:
|
482
|
+
:ignore: true
|
483
|
+
:children:
|
484
|
+
CacheSecurityGroups:
|
485
|
+
:ignore: true
|
486
|
+
:children:
|
487
|
+
CacheSecurityGroup:
|
488
|
+
:rename: :cache_security_groups
|
489
|
+
:list: true
|
490
|
+
:children:
|
491
|
+
EC2SecurityGroups:
|
492
|
+
:ignore: true
|
493
|
+
:children:
|
494
|
+
EC2SecurityGroup:
|
495
|
+
:rename: :ec2_security_groups
|
496
|
+
:list: true
|
497
|
+
- :name: DescribeCacheSubnetGroups
|
498
|
+
:method: :describe_cache_subnet_groups
|
499
|
+
:inputs:
|
500
|
+
CacheSubnetGroupName:
|
501
|
+
- :string
|
502
|
+
MaxRecords:
|
503
|
+
- :integer
|
504
|
+
Marker:
|
505
|
+
- :string
|
506
|
+
:outputs:
|
507
|
+
:children:
|
508
|
+
DescribeCacheSubnetGroupsResult:
|
509
|
+
:ignore: true
|
510
|
+
:children:
|
511
|
+
CacheSubnetGroups:
|
512
|
+
:ignore: true
|
513
|
+
:children:
|
514
|
+
CacheSubnetGroup:
|
515
|
+
:rename: :cache_subnet_groups
|
516
|
+
:list: true
|
517
|
+
:children:
|
518
|
+
Subnets:
|
519
|
+
:ignore: true
|
520
|
+
:children:
|
521
|
+
Subnet:
|
522
|
+
:rename: :subnets
|
523
|
+
:list: true
|
524
|
+
- :name: DescribeEngineDefaultParameters
|
525
|
+
:method: :describe_engine_default_parameters
|
526
|
+
:inputs:
|
527
|
+
CacheParameterGroupFamily:
|
528
|
+
- :string
|
529
|
+
- :required
|
530
|
+
MaxRecords:
|
531
|
+
- :integer
|
532
|
+
Marker:
|
533
|
+
- :string
|
534
|
+
:outputs:
|
535
|
+
:children:
|
536
|
+
DescribeEngineDefaultParametersResult:
|
537
|
+
:ignore: true
|
538
|
+
:children:
|
539
|
+
EngineDefaults:
|
540
|
+
:children:
|
541
|
+
Parameters:
|
542
|
+
:ignore: true
|
543
|
+
:children:
|
544
|
+
Parameter:
|
545
|
+
:rename: :parameters
|
546
|
+
:list: true
|
547
|
+
:children:
|
548
|
+
IsModifiable:
|
549
|
+
:type: :boolean
|
550
|
+
CacheNodeTypeSpecificParameters:
|
551
|
+
:ignore: true
|
552
|
+
:children:
|
553
|
+
CacheNodeTypeSpecificParameter:
|
554
|
+
:rename: :cache_node_type_specific_parameters
|
555
|
+
:list: true
|
556
|
+
:children:
|
557
|
+
IsModifiable:
|
558
|
+
:type: :boolean
|
559
|
+
CacheNodeTypeSpecificValues:
|
560
|
+
:ignore: true
|
561
|
+
:children:
|
562
|
+
CacheNodeTypeSpecificValue:
|
563
|
+
:rename: :cache_node_type_specific_values
|
564
|
+
:list: true
|
565
|
+
:ignore: true
|
566
|
+
- :name: DescribeEvents
|
567
|
+
:method: :describe_events
|
568
|
+
:inputs:
|
569
|
+
SourceIdentifier:
|
570
|
+
- :string
|
571
|
+
SourceType:
|
572
|
+
- :string
|
573
|
+
StartTime:
|
574
|
+
- :timestamp
|
575
|
+
EndTime:
|
576
|
+
- :timestamp
|
577
|
+
Duration:
|
578
|
+
- :integer
|
579
|
+
MaxRecords:
|
580
|
+
- :integer
|
581
|
+
Marker:
|
582
|
+
- :string
|
583
|
+
:outputs:
|
584
|
+
:children:
|
585
|
+
DescribeEventsResult:
|
586
|
+
:ignore: true
|
587
|
+
:children:
|
588
|
+
Events:
|
589
|
+
:ignore: true
|
590
|
+
:children:
|
591
|
+
Event:
|
592
|
+
:rename: :events
|
593
|
+
:list: true
|
594
|
+
:children:
|
595
|
+
Date:
|
596
|
+
:type: :time
|
597
|
+
- :name: DescribeReservedCacheNodes
|
598
|
+
:method: :describe_reserved_cache_nodes
|
599
|
+
:inputs:
|
600
|
+
ReservedCacheNodeId:
|
601
|
+
- :string
|
602
|
+
ReservedCacheNodesOfferingId:
|
603
|
+
- :string
|
604
|
+
CacheNodeType:
|
605
|
+
- :string
|
606
|
+
Duration:
|
607
|
+
- :string
|
608
|
+
ProductDescription:
|
609
|
+
- :string
|
610
|
+
OfferingType:
|
611
|
+
- :string
|
612
|
+
MaxRecords:
|
613
|
+
- :integer
|
614
|
+
Marker:
|
615
|
+
- :string
|
616
|
+
:outputs:
|
617
|
+
:children:
|
618
|
+
DescribeReservedCacheNodesResult:
|
619
|
+
:ignore: true
|
620
|
+
:children:
|
621
|
+
ReservedCacheNodes:
|
622
|
+
:ignore: true
|
623
|
+
:children:
|
624
|
+
ReservedCacheNode:
|
625
|
+
:rename: :reserved_cache_nodes
|
626
|
+
:list: true
|
627
|
+
:children:
|
628
|
+
StartTime:
|
629
|
+
:type: :time
|
630
|
+
Duration:
|
631
|
+
:type: :integer
|
632
|
+
FixedPrice:
|
633
|
+
:type: :float
|
634
|
+
UsagePrice:
|
635
|
+
:type: :float
|
636
|
+
CacheNodeCount:
|
637
|
+
:type: :integer
|
638
|
+
RecurringCharges:
|
639
|
+
:ignore: true
|
640
|
+
:children:
|
641
|
+
RecurringCharge:
|
642
|
+
:rename: :recurring_charges
|
643
|
+
:list: true
|
644
|
+
:children:
|
645
|
+
RecurringChargeAmount:
|
646
|
+
:type: :float
|
647
|
+
- :name: DescribeReservedCacheNodesOfferings
|
648
|
+
:method: :describe_reserved_cache_nodes_offerings
|
649
|
+
:inputs:
|
650
|
+
ReservedCacheNodesOfferingId:
|
651
|
+
- :string
|
652
|
+
CacheNodeType:
|
653
|
+
- :string
|
654
|
+
Duration:
|
655
|
+
- :string
|
656
|
+
ProductDescription:
|
657
|
+
- :string
|
658
|
+
OfferingType:
|
659
|
+
- :string
|
660
|
+
MaxRecords:
|
661
|
+
- :integer
|
662
|
+
Marker:
|
663
|
+
- :string
|
664
|
+
:outputs:
|
665
|
+
:children:
|
666
|
+
DescribeReservedCacheNodesOfferingsResult:
|
667
|
+
:ignore: true
|
668
|
+
:children:
|
669
|
+
ReservedCacheNodesOfferings:
|
670
|
+
:ignore: true
|
671
|
+
:children:
|
672
|
+
ReservedCacheNodesOffering:
|
673
|
+
:rename: :reserved_cache_nodes_offerings
|
674
|
+
:list: true
|
675
|
+
:children:
|
676
|
+
Duration:
|
677
|
+
:type: :integer
|
678
|
+
FixedPrice:
|
679
|
+
:type: :float
|
680
|
+
UsagePrice:
|
681
|
+
:type: :float
|
682
|
+
RecurringCharges:
|
683
|
+
:ignore: true
|
684
|
+
:children:
|
685
|
+
RecurringCharge:
|
686
|
+
:rename: :recurring_charges
|
687
|
+
:list: true
|
688
|
+
:children:
|
689
|
+
RecurringChargeAmount:
|
690
|
+
:type: :float
|
691
|
+
- :name: ModifyCacheCluster
|
692
|
+
:method: :modify_cache_cluster
|
693
|
+
:inputs:
|
694
|
+
CacheClusterId:
|
695
|
+
- :string
|
696
|
+
- :required
|
697
|
+
NumCacheNodes:
|
698
|
+
- :integer
|
699
|
+
CacheNodeIdsToRemove:
|
700
|
+
- :membered_list:
|
701
|
+
- :string
|
702
|
+
CacheSecurityGroupNames:
|
703
|
+
- :membered_list:
|
704
|
+
- :string
|
705
|
+
SecurityGroupIds:
|
706
|
+
- :membered_list:
|
707
|
+
- :string
|
708
|
+
PreferredMaintenanceWindow:
|
709
|
+
- :string
|
710
|
+
NotificationTopicArn:
|
711
|
+
- :string
|
712
|
+
CacheParameterGroupName:
|
713
|
+
- :string
|
714
|
+
NotificationTopicStatus:
|
715
|
+
- :string
|
716
|
+
ApplyImmediately:
|
717
|
+
- :boolean
|
718
|
+
EngineVersion:
|
719
|
+
- :string
|
720
|
+
AutoMinorVersionUpgrade:
|
721
|
+
- :boolean
|
722
|
+
:outputs:
|
723
|
+
:children:
|
724
|
+
ModifyCacheClusterResult:
|
725
|
+
:ignore: true
|
726
|
+
:children:
|
727
|
+
CacheCluster:
|
728
|
+
:children:
|
729
|
+
ConfigurationEndpoint:
|
730
|
+
:children:
|
731
|
+
Port:
|
732
|
+
:type: :integer
|
733
|
+
NumCacheNodes:
|
734
|
+
:type: :integer
|
735
|
+
CacheClusterCreateTime:
|
736
|
+
:type: :time
|
737
|
+
PendingModifiedValues:
|
738
|
+
:children:
|
739
|
+
NumCacheNodes:
|
740
|
+
:type: :integer
|
741
|
+
CacheNodeIdsToRemove:
|
742
|
+
:ignore: true
|
743
|
+
:children:
|
744
|
+
CacheNodeId:
|
745
|
+
:rename: :cache_node_ids_to_remove
|
746
|
+
:list: true
|
747
|
+
CacheSecurityGroups:
|
748
|
+
:ignore: true
|
749
|
+
:children:
|
750
|
+
CacheSecurityGroup:
|
751
|
+
:rename: :cache_security_groups
|
752
|
+
:list: true
|
753
|
+
CacheParameterGroup:
|
754
|
+
:children:
|
755
|
+
CacheNodeIdsToReboot:
|
756
|
+
:ignore: true
|
757
|
+
:children:
|
758
|
+
CacheNodeId:
|
759
|
+
:rename: :cache_node_ids_to_reboot
|
760
|
+
:list: true
|
761
|
+
CacheNodes:
|
762
|
+
:ignore: true
|
763
|
+
:children:
|
764
|
+
CacheNode:
|
765
|
+
:rename: :cache_nodes
|
766
|
+
:list: true
|
767
|
+
:children:
|
768
|
+
CacheNodeCreateTime:
|
769
|
+
:type: :time
|
770
|
+
Endpoint:
|
771
|
+
:children:
|
772
|
+
Port:
|
773
|
+
:type: :integer
|
774
|
+
AutoMinorVersionUpgrade:
|
775
|
+
:type: :boolean
|
776
|
+
SecurityGroups:
|
777
|
+
:ignore: true
|
778
|
+
:children:
|
779
|
+
member:
|
780
|
+
:rename: :security_groups
|
781
|
+
:list: true
|
782
|
+
:ignore: true
|
783
|
+
- :name: ModifyCacheParameterGroup
|
784
|
+
:method: :modify_cache_parameter_group
|
785
|
+
:inputs:
|
786
|
+
CacheParameterGroupName:
|
787
|
+
- :string
|
788
|
+
- :required
|
789
|
+
ParameterNameValues:
|
790
|
+
- :membered_list:
|
791
|
+
- :structure:
|
792
|
+
ParameterName:
|
793
|
+
- :string
|
794
|
+
ParameterValue:
|
795
|
+
- :string
|
796
|
+
- :required
|
797
|
+
:outputs:
|
798
|
+
:children:
|
799
|
+
ModifyCacheParameterGroupResult:
|
800
|
+
:ignore: true
|
801
|
+
- :name: ModifyCacheSubnetGroup
|
802
|
+
:method: :modify_cache_subnet_group
|
803
|
+
:inputs:
|
804
|
+
CacheSubnetGroupName:
|
805
|
+
- :string
|
806
|
+
- :required
|
807
|
+
CacheSubnetGroupDescription:
|
808
|
+
- :string
|
809
|
+
SubnetIds:
|
810
|
+
- :membered_list:
|
811
|
+
- :string
|
812
|
+
:outputs:
|
813
|
+
:children:
|
814
|
+
ModifyCacheSubnetGroupResult:
|
815
|
+
:ignore: true
|
816
|
+
:children:
|
817
|
+
CacheSubnetGroup:
|
818
|
+
:children:
|
819
|
+
Subnets:
|
820
|
+
:ignore: true
|
821
|
+
:children:
|
822
|
+
Subnet:
|
823
|
+
:rename: :subnets
|
824
|
+
:list: true
|
825
|
+
:ignore: true
|
826
|
+
- :name: PurchaseReservedCacheNodesOffering
|
827
|
+
:method: :purchase_reserved_cache_nodes_offering
|
828
|
+
:inputs:
|
829
|
+
ReservedCacheNodesOfferingId:
|
830
|
+
- :string
|
831
|
+
- :required
|
832
|
+
ReservedCacheNodeId:
|
833
|
+
- :string
|
834
|
+
CacheNodeCount:
|
835
|
+
- :integer
|
836
|
+
:outputs:
|
837
|
+
:children:
|
838
|
+
PurchaseReservedCacheNodesOfferingResult:
|
839
|
+
:ignore: true
|
840
|
+
:children:
|
841
|
+
ReservedCacheNode:
|
842
|
+
:children:
|
843
|
+
StartTime:
|
844
|
+
:type: :time
|
845
|
+
Duration:
|
846
|
+
:type: :integer
|
847
|
+
FixedPrice:
|
848
|
+
:type: :float
|
849
|
+
UsagePrice:
|
850
|
+
:type: :float
|
851
|
+
CacheNodeCount:
|
852
|
+
:type: :integer
|
853
|
+
RecurringCharges:
|
854
|
+
:ignore: true
|
855
|
+
:children:
|
856
|
+
RecurringCharge:
|
857
|
+
:rename: :recurring_charges
|
858
|
+
:list: true
|
859
|
+
:children:
|
860
|
+
RecurringChargeAmount:
|
861
|
+
:type: :float
|
862
|
+
:ignore: true
|
863
|
+
- :name: RebootCacheCluster
|
864
|
+
:method: :reboot_cache_cluster
|
865
|
+
:inputs:
|
866
|
+
CacheClusterId:
|
867
|
+
- :string
|
868
|
+
- :required
|
869
|
+
CacheNodeIdsToReboot:
|
870
|
+
- :membered_list:
|
871
|
+
- :string
|
872
|
+
- :required
|
873
|
+
:outputs:
|
874
|
+
:children:
|
875
|
+
RebootCacheClusterResult:
|
876
|
+
:ignore: true
|
877
|
+
:children:
|
878
|
+
CacheCluster:
|
879
|
+
:children:
|
880
|
+
ConfigurationEndpoint:
|
881
|
+
:children:
|
882
|
+
Port:
|
883
|
+
:type: :integer
|
884
|
+
NumCacheNodes:
|
885
|
+
:type: :integer
|
886
|
+
CacheClusterCreateTime:
|
887
|
+
:type: :time
|
888
|
+
PendingModifiedValues:
|
889
|
+
:children:
|
890
|
+
NumCacheNodes:
|
891
|
+
:type: :integer
|
892
|
+
CacheNodeIdsToRemove:
|
893
|
+
:ignore: true
|
894
|
+
:children:
|
895
|
+
CacheNodeId:
|
896
|
+
:rename: :cache_node_ids_to_remove
|
897
|
+
:list: true
|
898
|
+
CacheSecurityGroups:
|
899
|
+
:ignore: true
|
900
|
+
:children:
|
901
|
+
CacheSecurityGroup:
|
902
|
+
:rename: :cache_security_groups
|
903
|
+
:list: true
|
904
|
+
CacheParameterGroup:
|
905
|
+
:children:
|
906
|
+
CacheNodeIdsToReboot:
|
907
|
+
:ignore: true
|
908
|
+
:children:
|
909
|
+
CacheNodeId:
|
910
|
+
:rename: :cache_node_ids_to_reboot
|
911
|
+
:list: true
|
912
|
+
CacheNodes:
|
913
|
+
:ignore: true
|
914
|
+
:children:
|
915
|
+
CacheNode:
|
916
|
+
:rename: :cache_nodes
|
917
|
+
:list: true
|
918
|
+
:children:
|
919
|
+
CacheNodeCreateTime:
|
920
|
+
:type: :time
|
921
|
+
Endpoint:
|
922
|
+
:children:
|
923
|
+
Port:
|
924
|
+
:type: :integer
|
925
|
+
AutoMinorVersionUpgrade:
|
926
|
+
:type: :boolean
|
927
|
+
SecurityGroups:
|
928
|
+
:ignore: true
|
929
|
+
:children:
|
930
|
+
member:
|
931
|
+
:rename: :security_groups
|
932
|
+
:list: true
|
933
|
+
:ignore: true
|
934
|
+
- :name: ResetCacheParameterGroup
|
935
|
+
:method: :reset_cache_parameter_group
|
936
|
+
:inputs:
|
937
|
+
CacheParameterGroupName:
|
938
|
+
- :string
|
939
|
+
- :required
|
940
|
+
ResetAllParameters:
|
941
|
+
- :boolean
|
942
|
+
ParameterNameValues:
|
943
|
+
- :membered_list:
|
944
|
+
- :structure:
|
945
|
+
ParameterName:
|
946
|
+
- :string
|
947
|
+
ParameterValue:
|
948
|
+
- :string
|
949
|
+
- :required
|
950
|
+
:outputs:
|
951
|
+
:children:
|
952
|
+
ResetCacheParameterGroupResult:
|
953
|
+
:ignore: true
|
954
|
+
- :name: RevokeCacheSecurityGroupIngress
|
955
|
+
:method: :revoke_cache_security_group_ingress
|
956
|
+
:inputs:
|
957
|
+
CacheSecurityGroupName:
|
958
|
+
- :string
|
959
|
+
- :required
|
960
|
+
EC2SecurityGroupName:
|
961
|
+
- :string
|
962
|
+
- :required
|
963
|
+
EC2SecurityGroupOwnerId:
|
964
|
+
- :string
|
965
|
+
- :required
|
966
|
+
:outputs:
|
967
|
+
:children:
|
968
|
+
RevokeCacheSecurityGroupIngressResult:
|
969
|
+
:ignore: true
|
970
|
+
:children:
|
971
|
+
CacheSecurityGroup:
|
972
|
+
:children:
|
973
|
+
EC2SecurityGroups:
|
974
|
+
:ignore: true
|
975
|
+
:children:
|
976
|
+
EC2SecurityGroup:
|
977
|
+
:rename: :ec2_security_groups
|
978
|
+
:list: true
|
979
|
+
:ignore: true
|