aws-sdk 1.8.1.3 → 1.8.2
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/Redshift-2012-12-01.yml +1149 -0
- data/lib/aws/auto_scaling.rb +2 -2
- data/lib/aws/auto_scaling/activity_collection.rb +1 -1
- data/lib/aws/auto_scaling/group_options.rb +1 -1
- data/lib/aws/auto_scaling/scaling_policy_options.rb +1 -1
- data/lib/aws/auto_scaling/scheduled_action_collection.rb +4 -4
- data/lib/aws/cloud_search/client.rb +1 -1
- data/lib/aws/cloud_watch.rb +1 -1
- data/lib/aws/cloud_watch/alarm.rb +1 -1
- data/lib/aws/cloud_watch/metric_collection.rb +1 -1
- data/lib/aws/core.rb +14 -10
- data/lib/aws/core/client.rb +12 -6
- data/lib/aws/core/configuration.rb +15 -12
- data/lib/aws/core/inflection.rb +2 -0
- data/lib/aws/core/response.rb +0 -12
- data/lib/aws/dynamo_db.rb +1 -1
- data/lib/aws/elastic_beanstalk.rb +1 -1
- data/lib/aws/rails.rb +1 -1
- data/lib/aws/record/abstract_base.rb +1 -1
- data/lib/aws/redshift.rb +52 -0
- data/lib/aws/redshift/client.rb +1291 -0
- data/lib/aws/redshift/config.rb +18 -0
- data/lib/aws/redshift/errors.rb +22 -0
- data/lib/aws/redshift/request.rb +29 -0
- data/lib/aws/route_53/resource_record_set.rb +47 -26
- data/lib/aws/s3/client.rb +1 -1
- data/lib/aws/simple_db.rb +2 -2
- data/lib/aws/simple_db/attribute_collection.rb +2 -2
- data/lib/aws/simple_db/item_collection.rb +4 -4
- data/lib/aws/simple_email_service.rb +3 -3
- data/lib/aws/simple_email_service/client.rb +1 -1
- data/lib/aws/simple_email_service/email_address_collection.rb +1 -1
- data/lib/aws/simple_workflow.rb +5 -5
- data/lib/aws/simple_workflow/activity_task.rb +6 -6
- data/lib/aws/simple_workflow/decision_task.rb +2 -2
- data/lib/aws/simple_workflow/decision_task_collection.rb +4 -4
- data/lib/aws/simple_workflow/domain_collection.rb +3 -3
- data/lib/aws/simple_workflow/history_event_collection.rb +1 -1
- data/lib/aws/simple_workflow/workflow_execution.rb +3 -3
- data/lib/aws/simple_workflow/workflow_execution_collection.rb +8 -8
- data/lib/aws/simple_workflow/workflow_type.rb +1 -1
- data/lib/aws/version.rb +1 -1
- metadata +8 -2
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/redshift/config'
|
32
33
|
require 'aws/rds/config'
|
33
34
|
require 'aws/route_53/config'
|
34
35
|
require 'aws/s3/config'
|
@@ -58,6 +59,7 @@ module AWS
|
|
58
59
|
autoload :IAM, 'iam'
|
59
60
|
autoload :ImportExport, 'import_export'
|
60
61
|
autoload :Glacier, 'glacier'
|
62
|
+
autoload :Redshift, 'redshift'
|
61
63
|
autoload :RDS, 'rds'
|
62
64
|
autoload :Route53, 'route_53'
|
63
65
|
autoload :S3, 's3'
|
@@ -0,0 +1,1149 @@
|
|
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-12-01'
|
16
|
+
:operations:
|
17
|
+
- :name: AuthorizeClusterSecurityGroupIngress
|
18
|
+
:method: :authorize_cluster_security_group_ingress
|
19
|
+
:inputs:
|
20
|
+
ClusterSecurityGroupName:
|
21
|
+
- :string
|
22
|
+
- :required
|
23
|
+
CIDRIP:
|
24
|
+
- :string
|
25
|
+
EC2SecurityGroupName:
|
26
|
+
- :string
|
27
|
+
EC2SecurityGroupOwnerId:
|
28
|
+
- :string
|
29
|
+
:outputs:
|
30
|
+
:children:
|
31
|
+
AuthorizeClusterSecurityGroupIngressResult:
|
32
|
+
:ignore: true
|
33
|
+
:children:
|
34
|
+
ClusterSecurityGroup:
|
35
|
+
:children:
|
36
|
+
EC2SecurityGroups:
|
37
|
+
:ignore: true
|
38
|
+
:children:
|
39
|
+
EC2SecurityGroup:
|
40
|
+
:rename: :ec2_security_groups
|
41
|
+
:list: true
|
42
|
+
IPRanges:
|
43
|
+
:ignore: true
|
44
|
+
:children:
|
45
|
+
IPRange:
|
46
|
+
:rename: :ip_ranges
|
47
|
+
:list: true
|
48
|
+
:ignore: true
|
49
|
+
- :name: CopyClusterSnapshot
|
50
|
+
:method: :copy_cluster_snapshot
|
51
|
+
:inputs:
|
52
|
+
SourceSnapshotIdentifier:
|
53
|
+
- :string
|
54
|
+
- :required
|
55
|
+
TargetSnapshotIdentifier:
|
56
|
+
- :string
|
57
|
+
- :required
|
58
|
+
:outputs:
|
59
|
+
:children:
|
60
|
+
CopyClusterSnapshotResult:
|
61
|
+
:ignore: true
|
62
|
+
:children:
|
63
|
+
Snapshot:
|
64
|
+
:children:
|
65
|
+
SnapshotCreateTime:
|
66
|
+
:type: :time
|
67
|
+
Port:
|
68
|
+
:type: :integer
|
69
|
+
ClusterCreateTime:
|
70
|
+
:type: :time
|
71
|
+
NumberOfNodes:
|
72
|
+
:type: :integer
|
73
|
+
:ignore: true
|
74
|
+
- :name: CreateCluster
|
75
|
+
:method: :create_cluster
|
76
|
+
:inputs:
|
77
|
+
DBName:
|
78
|
+
- :string
|
79
|
+
ClusterIdentifier:
|
80
|
+
- :string
|
81
|
+
- :required
|
82
|
+
ClusterType:
|
83
|
+
- :string
|
84
|
+
NodeType:
|
85
|
+
- :string
|
86
|
+
- :required
|
87
|
+
MasterUsername:
|
88
|
+
- :string
|
89
|
+
- :required
|
90
|
+
MasterUserPassword:
|
91
|
+
- :string
|
92
|
+
- :required
|
93
|
+
ClusterSecurityGroups:
|
94
|
+
- :membered_list:
|
95
|
+
- :string
|
96
|
+
VpcSecurityGroupIds:
|
97
|
+
- :membered_list:
|
98
|
+
- :string
|
99
|
+
ClusterSubnetGroupName:
|
100
|
+
- :string
|
101
|
+
AvailabilityZone:
|
102
|
+
- :string
|
103
|
+
PreferredMaintenanceWindow:
|
104
|
+
- :string
|
105
|
+
ClusterParameterGroupName:
|
106
|
+
- :string
|
107
|
+
AutomatedSnapshotRetentionPeriod:
|
108
|
+
- :integer
|
109
|
+
Port:
|
110
|
+
- :integer
|
111
|
+
ClusterVersion:
|
112
|
+
- :string
|
113
|
+
AllowVersionUpgrade:
|
114
|
+
- :boolean
|
115
|
+
NumberOfNodes:
|
116
|
+
- :integer
|
117
|
+
PubliclyAccessible:
|
118
|
+
- :boolean
|
119
|
+
:outputs:
|
120
|
+
:children:
|
121
|
+
CreateClusterResult:
|
122
|
+
:ignore: true
|
123
|
+
:children:
|
124
|
+
Cluster:
|
125
|
+
:children:
|
126
|
+
Endpoint:
|
127
|
+
:children:
|
128
|
+
Port:
|
129
|
+
:type: :integer
|
130
|
+
ClusterCreateTime:
|
131
|
+
:type: :time
|
132
|
+
AutomatedSnapshotRetentionPeriod:
|
133
|
+
:type: :integer
|
134
|
+
ClusterSecurityGroups:
|
135
|
+
:ignore: true
|
136
|
+
:children:
|
137
|
+
ClusterSecurityGroup:
|
138
|
+
:rename: :cluster_security_groups
|
139
|
+
:list: true
|
140
|
+
VpcSecurityGroups:
|
141
|
+
:ignore: true
|
142
|
+
:children:
|
143
|
+
VpcSecurityGroup:
|
144
|
+
:rename: :vpc_security_groups
|
145
|
+
:list: true
|
146
|
+
ClusterParameterGroups:
|
147
|
+
:ignore: true
|
148
|
+
:children:
|
149
|
+
ClusterParameterGroup:
|
150
|
+
:rename: :cluster_parameter_groups
|
151
|
+
:list: true
|
152
|
+
PendingModifiedValues:
|
153
|
+
:children:
|
154
|
+
NumberOfNodes:
|
155
|
+
:type: :integer
|
156
|
+
AutomatedSnapshotRetentionPeriod:
|
157
|
+
:type: :integer
|
158
|
+
AllowVersionUpgrade:
|
159
|
+
:type: :boolean
|
160
|
+
NumberOfNodes:
|
161
|
+
:type: :integer
|
162
|
+
PubliclyAccessible:
|
163
|
+
:type: :boolean
|
164
|
+
:ignore: true
|
165
|
+
- :name: CreateClusterParameterGroup
|
166
|
+
:method: :create_cluster_parameter_group
|
167
|
+
:inputs:
|
168
|
+
ParameterGroupName:
|
169
|
+
- :string
|
170
|
+
- :required
|
171
|
+
ParameterGroupFamily:
|
172
|
+
- :string
|
173
|
+
- :required
|
174
|
+
Description:
|
175
|
+
- :string
|
176
|
+
- :required
|
177
|
+
:outputs:
|
178
|
+
:children:
|
179
|
+
CreateClusterParameterGroupResult:
|
180
|
+
:ignore: true
|
181
|
+
:children:
|
182
|
+
ClusterParameterGroup:
|
183
|
+
:ignore: true
|
184
|
+
- :name: CreateClusterSecurityGroup
|
185
|
+
:method: :create_cluster_security_group
|
186
|
+
:inputs:
|
187
|
+
ClusterSecurityGroupName:
|
188
|
+
- :string
|
189
|
+
- :required
|
190
|
+
Description:
|
191
|
+
- :string
|
192
|
+
- :required
|
193
|
+
:outputs:
|
194
|
+
:children:
|
195
|
+
CreateClusterSecurityGroupResult:
|
196
|
+
:ignore: true
|
197
|
+
:children:
|
198
|
+
ClusterSecurityGroup:
|
199
|
+
:children:
|
200
|
+
EC2SecurityGroups:
|
201
|
+
:ignore: true
|
202
|
+
:children:
|
203
|
+
EC2SecurityGroup:
|
204
|
+
:rename: :ec2_security_groups
|
205
|
+
:list: true
|
206
|
+
IPRanges:
|
207
|
+
:ignore: true
|
208
|
+
:children:
|
209
|
+
IPRange:
|
210
|
+
:rename: :ip_ranges
|
211
|
+
:list: true
|
212
|
+
:ignore: true
|
213
|
+
- :name: CreateClusterSnapshot
|
214
|
+
:method: :create_cluster_snapshot
|
215
|
+
:inputs:
|
216
|
+
SnapshotIdentifier:
|
217
|
+
- :string
|
218
|
+
- :required
|
219
|
+
ClusterIdentifier:
|
220
|
+
- :string
|
221
|
+
- :required
|
222
|
+
:outputs:
|
223
|
+
:children:
|
224
|
+
CreateClusterSnapshotResult:
|
225
|
+
:ignore: true
|
226
|
+
:children:
|
227
|
+
Snapshot:
|
228
|
+
:children:
|
229
|
+
SnapshotCreateTime:
|
230
|
+
:type: :time
|
231
|
+
Port:
|
232
|
+
:type: :integer
|
233
|
+
ClusterCreateTime:
|
234
|
+
:type: :time
|
235
|
+
NumberOfNodes:
|
236
|
+
:type: :integer
|
237
|
+
:ignore: true
|
238
|
+
- :name: CreateClusterSubnetGroup
|
239
|
+
:method: :create_cluster_subnet_group
|
240
|
+
:inputs:
|
241
|
+
ClusterSubnetGroupName:
|
242
|
+
- :string
|
243
|
+
- :required
|
244
|
+
Description:
|
245
|
+
- :string
|
246
|
+
- :required
|
247
|
+
SubnetIds:
|
248
|
+
- :membered_list:
|
249
|
+
- :string
|
250
|
+
- :required
|
251
|
+
:outputs:
|
252
|
+
:children:
|
253
|
+
CreateClusterSubnetGroupResult:
|
254
|
+
:ignore: true
|
255
|
+
:children:
|
256
|
+
ClusterSubnetGroup:
|
257
|
+
:children:
|
258
|
+
Subnets:
|
259
|
+
:ignore: true
|
260
|
+
:children:
|
261
|
+
Subnet:
|
262
|
+
:rename: :subnets
|
263
|
+
:list: true
|
264
|
+
:ignore: true
|
265
|
+
- :name: DeleteCluster
|
266
|
+
:method: :delete_cluster
|
267
|
+
:inputs:
|
268
|
+
ClusterIdentifier:
|
269
|
+
- :string
|
270
|
+
- :required
|
271
|
+
SkipFinalClusterSnapshot:
|
272
|
+
- :boolean
|
273
|
+
FinalClusterSnapshotIdentifier:
|
274
|
+
- :string
|
275
|
+
:outputs:
|
276
|
+
:children:
|
277
|
+
DeleteClusterResult:
|
278
|
+
:ignore: true
|
279
|
+
:children:
|
280
|
+
Cluster:
|
281
|
+
:children:
|
282
|
+
Endpoint:
|
283
|
+
:children:
|
284
|
+
Port:
|
285
|
+
:type: :integer
|
286
|
+
ClusterCreateTime:
|
287
|
+
:type: :time
|
288
|
+
AutomatedSnapshotRetentionPeriod:
|
289
|
+
:type: :integer
|
290
|
+
ClusterSecurityGroups:
|
291
|
+
:ignore: true
|
292
|
+
:children:
|
293
|
+
ClusterSecurityGroup:
|
294
|
+
:rename: :cluster_security_groups
|
295
|
+
:list: true
|
296
|
+
VpcSecurityGroups:
|
297
|
+
:ignore: true
|
298
|
+
:children:
|
299
|
+
VpcSecurityGroup:
|
300
|
+
:rename: :vpc_security_groups
|
301
|
+
:list: true
|
302
|
+
ClusterParameterGroups:
|
303
|
+
:ignore: true
|
304
|
+
:children:
|
305
|
+
ClusterParameterGroup:
|
306
|
+
:rename: :cluster_parameter_groups
|
307
|
+
:list: true
|
308
|
+
PendingModifiedValues:
|
309
|
+
:children:
|
310
|
+
NumberOfNodes:
|
311
|
+
:type: :integer
|
312
|
+
AutomatedSnapshotRetentionPeriod:
|
313
|
+
:type: :integer
|
314
|
+
AllowVersionUpgrade:
|
315
|
+
:type: :boolean
|
316
|
+
NumberOfNodes:
|
317
|
+
:type: :integer
|
318
|
+
PubliclyAccessible:
|
319
|
+
:type: :boolean
|
320
|
+
:ignore: true
|
321
|
+
- :name: DeleteClusterParameterGroup
|
322
|
+
:method: :delete_cluster_parameter_group
|
323
|
+
:inputs:
|
324
|
+
ParameterGroupName:
|
325
|
+
- :string
|
326
|
+
- :required
|
327
|
+
:outputs:
|
328
|
+
:children:
|
329
|
+
DeleteClusterParameterGroupResult:
|
330
|
+
:ignore: true
|
331
|
+
- :name: DeleteClusterSecurityGroup
|
332
|
+
:method: :delete_cluster_security_group
|
333
|
+
:inputs:
|
334
|
+
ClusterSecurityGroupName:
|
335
|
+
- :string
|
336
|
+
- :required
|
337
|
+
:outputs:
|
338
|
+
:children:
|
339
|
+
DeleteClusterSecurityGroupResult:
|
340
|
+
:ignore: true
|
341
|
+
- :name: DeleteClusterSnapshot
|
342
|
+
:method: :delete_cluster_snapshot
|
343
|
+
:inputs:
|
344
|
+
SnapshotIdentifier:
|
345
|
+
- :string
|
346
|
+
- :required
|
347
|
+
:outputs:
|
348
|
+
:children:
|
349
|
+
DeleteClusterSnapshotResult:
|
350
|
+
:ignore: true
|
351
|
+
:children:
|
352
|
+
Snapshot:
|
353
|
+
:children:
|
354
|
+
SnapshotCreateTime:
|
355
|
+
:type: :time
|
356
|
+
Port:
|
357
|
+
:type: :integer
|
358
|
+
ClusterCreateTime:
|
359
|
+
:type: :time
|
360
|
+
NumberOfNodes:
|
361
|
+
:type: :integer
|
362
|
+
:ignore: true
|
363
|
+
- :name: DeleteClusterSubnetGroup
|
364
|
+
:method: :delete_cluster_subnet_group
|
365
|
+
:inputs:
|
366
|
+
ClusterSubnetGroupName:
|
367
|
+
- :string
|
368
|
+
- :required
|
369
|
+
:outputs:
|
370
|
+
:children:
|
371
|
+
DeleteClusterSubnetGroupResult:
|
372
|
+
:ignore: true
|
373
|
+
- :name: DescribeClusterParameterGroups
|
374
|
+
:method: :describe_cluster_parameter_groups
|
375
|
+
:inputs:
|
376
|
+
ParameterGroupName:
|
377
|
+
- :string
|
378
|
+
MaxRecords:
|
379
|
+
- :integer
|
380
|
+
Marker:
|
381
|
+
- :string
|
382
|
+
:outputs:
|
383
|
+
:children:
|
384
|
+
DescribeClusterParameterGroupsResult:
|
385
|
+
:ignore: true
|
386
|
+
:children:
|
387
|
+
ParameterGroups:
|
388
|
+
:ignore: true
|
389
|
+
:children:
|
390
|
+
ClusterParameterGroup:
|
391
|
+
:rename: :parameter_groups
|
392
|
+
:list: true
|
393
|
+
- :name: DescribeClusterParameters
|
394
|
+
:method: :describe_cluster_parameters
|
395
|
+
:inputs:
|
396
|
+
ParameterGroupName:
|
397
|
+
- :string
|
398
|
+
- :required
|
399
|
+
Source:
|
400
|
+
- :string
|
401
|
+
MaxRecords:
|
402
|
+
- :integer
|
403
|
+
Marker:
|
404
|
+
- :string
|
405
|
+
:outputs:
|
406
|
+
:children:
|
407
|
+
DescribeClusterParametersResult:
|
408
|
+
:ignore: true
|
409
|
+
:children:
|
410
|
+
Parameters:
|
411
|
+
:ignore: true
|
412
|
+
:children:
|
413
|
+
Parameter:
|
414
|
+
:rename: :parameters
|
415
|
+
:list: true
|
416
|
+
:children:
|
417
|
+
IsModifiable:
|
418
|
+
:type: :boolean
|
419
|
+
- :name: DescribeClusterSecurityGroups
|
420
|
+
:method: :describe_cluster_security_groups
|
421
|
+
:inputs:
|
422
|
+
ClusterSecurityGroupName:
|
423
|
+
- :string
|
424
|
+
MaxRecords:
|
425
|
+
- :integer
|
426
|
+
Marker:
|
427
|
+
- :string
|
428
|
+
:outputs:
|
429
|
+
:children:
|
430
|
+
DescribeClusterSecurityGroupsResult:
|
431
|
+
:ignore: true
|
432
|
+
:children:
|
433
|
+
ClusterSecurityGroups:
|
434
|
+
:ignore: true
|
435
|
+
:children:
|
436
|
+
ClusterSecurityGroup:
|
437
|
+
:rename: :cluster_security_groups
|
438
|
+
:list: true
|
439
|
+
:children:
|
440
|
+
EC2SecurityGroups:
|
441
|
+
:ignore: true
|
442
|
+
:children:
|
443
|
+
EC2SecurityGroup:
|
444
|
+
:rename: :ec2_security_groups
|
445
|
+
:list: true
|
446
|
+
IPRanges:
|
447
|
+
:ignore: true
|
448
|
+
:children:
|
449
|
+
IPRange:
|
450
|
+
:rename: :ip_ranges
|
451
|
+
:list: true
|
452
|
+
- :name: DescribeClusterSnapshots
|
453
|
+
:method: :describe_cluster_snapshots
|
454
|
+
:inputs:
|
455
|
+
ClusterIdentifier:
|
456
|
+
- :string
|
457
|
+
SnapshotIdentifier:
|
458
|
+
- :string
|
459
|
+
SnapshotType:
|
460
|
+
- :string
|
461
|
+
StartTime:
|
462
|
+
- :timestamp
|
463
|
+
EndTime:
|
464
|
+
- :timestamp
|
465
|
+
MaxRecords:
|
466
|
+
- :integer
|
467
|
+
Marker:
|
468
|
+
- :string
|
469
|
+
:outputs:
|
470
|
+
:children:
|
471
|
+
DescribeClusterSnapshotsResult:
|
472
|
+
:ignore: true
|
473
|
+
:children:
|
474
|
+
Snapshots:
|
475
|
+
:ignore: true
|
476
|
+
:children:
|
477
|
+
Snapshot:
|
478
|
+
:rename: :snapshots
|
479
|
+
:list: true
|
480
|
+
:children:
|
481
|
+
SnapshotCreateTime:
|
482
|
+
:type: :time
|
483
|
+
Port:
|
484
|
+
:type: :integer
|
485
|
+
ClusterCreateTime:
|
486
|
+
:type: :time
|
487
|
+
NumberOfNodes:
|
488
|
+
:type: :integer
|
489
|
+
- :name: DescribeClusterSubnetGroups
|
490
|
+
:method: :describe_cluster_subnet_groups
|
491
|
+
:inputs:
|
492
|
+
ClusterSubnetGroupName:
|
493
|
+
- :string
|
494
|
+
MaxRecords:
|
495
|
+
- :integer
|
496
|
+
Marker:
|
497
|
+
- :string
|
498
|
+
:outputs:
|
499
|
+
:children:
|
500
|
+
DescribeClusterSubnetGroupsResult:
|
501
|
+
:ignore: true
|
502
|
+
:children:
|
503
|
+
ClusterSubnetGroups:
|
504
|
+
:ignore: true
|
505
|
+
:children:
|
506
|
+
ClusterSubnetGroup:
|
507
|
+
:rename: :cluster_subnet_groups
|
508
|
+
:list: true
|
509
|
+
:children:
|
510
|
+
Subnets:
|
511
|
+
:ignore: true
|
512
|
+
:children:
|
513
|
+
Subnet:
|
514
|
+
:rename: :subnets
|
515
|
+
:list: true
|
516
|
+
- :name: DescribeClusterVersions
|
517
|
+
:method: :describe_cluster_versions
|
518
|
+
:inputs:
|
519
|
+
ClusterVersion:
|
520
|
+
- :string
|
521
|
+
ClusterParameterGroupFamily:
|
522
|
+
- :string
|
523
|
+
MaxRecords:
|
524
|
+
- :integer
|
525
|
+
Marker:
|
526
|
+
- :string
|
527
|
+
:outputs:
|
528
|
+
:children:
|
529
|
+
DescribeClusterVersionsResult:
|
530
|
+
:ignore: true
|
531
|
+
:children:
|
532
|
+
ClusterVersions:
|
533
|
+
:ignore: true
|
534
|
+
:children:
|
535
|
+
ClusterVersion:
|
536
|
+
:rename: :cluster_versions
|
537
|
+
:list: true
|
538
|
+
- :name: DescribeClusters
|
539
|
+
:method: :describe_clusters
|
540
|
+
:inputs:
|
541
|
+
ClusterIdentifier:
|
542
|
+
- :string
|
543
|
+
MaxRecords:
|
544
|
+
- :integer
|
545
|
+
Marker:
|
546
|
+
- :string
|
547
|
+
:outputs:
|
548
|
+
:children:
|
549
|
+
DescribeClustersResult:
|
550
|
+
:ignore: true
|
551
|
+
:children:
|
552
|
+
Clusters:
|
553
|
+
:ignore: true
|
554
|
+
:children:
|
555
|
+
Cluster:
|
556
|
+
:rename: :clusters
|
557
|
+
:list: true
|
558
|
+
:children:
|
559
|
+
Endpoint:
|
560
|
+
:children:
|
561
|
+
Port:
|
562
|
+
:type: :integer
|
563
|
+
ClusterCreateTime:
|
564
|
+
:type: :time
|
565
|
+
AutomatedSnapshotRetentionPeriod:
|
566
|
+
:type: :integer
|
567
|
+
ClusterSecurityGroups:
|
568
|
+
:ignore: true
|
569
|
+
:children:
|
570
|
+
ClusterSecurityGroup:
|
571
|
+
:rename: :cluster_security_groups
|
572
|
+
:list: true
|
573
|
+
VpcSecurityGroups:
|
574
|
+
:ignore: true
|
575
|
+
:children:
|
576
|
+
VpcSecurityGroup:
|
577
|
+
:rename: :vpc_security_groups
|
578
|
+
:list: true
|
579
|
+
ClusterParameterGroups:
|
580
|
+
:ignore: true
|
581
|
+
:children:
|
582
|
+
ClusterParameterGroup:
|
583
|
+
:rename: :cluster_parameter_groups
|
584
|
+
:list: true
|
585
|
+
PendingModifiedValues:
|
586
|
+
:children:
|
587
|
+
NumberOfNodes:
|
588
|
+
:type: :integer
|
589
|
+
AutomatedSnapshotRetentionPeriod:
|
590
|
+
:type: :integer
|
591
|
+
AllowVersionUpgrade:
|
592
|
+
:type: :boolean
|
593
|
+
NumberOfNodes:
|
594
|
+
:type: :integer
|
595
|
+
PubliclyAccessible:
|
596
|
+
:type: :boolean
|
597
|
+
- :name: DescribeDefaultClusterParameters
|
598
|
+
:method: :describe_default_cluster_parameters
|
599
|
+
:inputs:
|
600
|
+
ParameterGroupFamily:
|
601
|
+
- :string
|
602
|
+
- :required
|
603
|
+
MaxRecords:
|
604
|
+
- :integer
|
605
|
+
Marker:
|
606
|
+
- :string
|
607
|
+
:outputs:
|
608
|
+
:children:
|
609
|
+
DescribeDefaultClusterParametersResult:
|
610
|
+
:ignore: true
|
611
|
+
:children:
|
612
|
+
DefaultClusterParameters:
|
613
|
+
:children:
|
614
|
+
Parameters:
|
615
|
+
:ignore: true
|
616
|
+
:children:
|
617
|
+
Parameter:
|
618
|
+
:rename: :parameters
|
619
|
+
:list: true
|
620
|
+
:children:
|
621
|
+
IsModifiable:
|
622
|
+
:type: :boolean
|
623
|
+
:ignore: true
|
624
|
+
- :name: DescribeEvents
|
625
|
+
:method: :describe_events
|
626
|
+
:inputs:
|
627
|
+
SourceIdentifier:
|
628
|
+
- :string
|
629
|
+
SourceType:
|
630
|
+
- :string
|
631
|
+
StartTime:
|
632
|
+
- :timestamp
|
633
|
+
EndTime:
|
634
|
+
- :timestamp
|
635
|
+
Duration:
|
636
|
+
- :integer
|
637
|
+
MaxRecords:
|
638
|
+
- :integer
|
639
|
+
Marker:
|
640
|
+
- :string
|
641
|
+
:outputs:
|
642
|
+
:children:
|
643
|
+
DescribeEventsResult:
|
644
|
+
:ignore: true
|
645
|
+
:children:
|
646
|
+
Events:
|
647
|
+
:ignore: true
|
648
|
+
:children:
|
649
|
+
Event:
|
650
|
+
:rename: :events
|
651
|
+
:list: true
|
652
|
+
:children:
|
653
|
+
Date:
|
654
|
+
:type: :time
|
655
|
+
- :name: DescribeOrderableClusterOptions
|
656
|
+
:method: :describe_orderable_cluster_options
|
657
|
+
:inputs:
|
658
|
+
ClusterVersion:
|
659
|
+
- :string
|
660
|
+
NodeType:
|
661
|
+
- :string
|
662
|
+
MaxRecords:
|
663
|
+
- :integer
|
664
|
+
Marker:
|
665
|
+
- :string
|
666
|
+
:outputs:
|
667
|
+
:children:
|
668
|
+
DescribeOrderableClusterOptionsResult:
|
669
|
+
:ignore: true
|
670
|
+
:children:
|
671
|
+
OrderableClusterOptions:
|
672
|
+
:ignore: true
|
673
|
+
:children:
|
674
|
+
OrderableClusterOption:
|
675
|
+
:rename: :orderable_cluster_options
|
676
|
+
:list: true
|
677
|
+
:children:
|
678
|
+
AvailabilityZones:
|
679
|
+
:ignore: true
|
680
|
+
:children:
|
681
|
+
AvailabilityZone:
|
682
|
+
:rename: :availability_zones
|
683
|
+
:list: true
|
684
|
+
- :name: DescribeReservedNodeOfferings
|
685
|
+
:method: :describe_reserved_node_offerings
|
686
|
+
:inputs:
|
687
|
+
ReservedNodeOfferingId:
|
688
|
+
- :string
|
689
|
+
NodeType:
|
690
|
+
- :string
|
691
|
+
Duration:
|
692
|
+
- :string
|
693
|
+
MaxRecords:
|
694
|
+
- :integer
|
695
|
+
Marker:
|
696
|
+
- :string
|
697
|
+
:outputs:
|
698
|
+
:children:
|
699
|
+
DescribeReservedNodeOfferingsResult:
|
700
|
+
:ignore: true
|
701
|
+
:children:
|
702
|
+
ReservedNodeOfferings:
|
703
|
+
:ignore: true
|
704
|
+
:children:
|
705
|
+
ReservedNodeOffering:
|
706
|
+
:rename: :reserved_node_offerings
|
707
|
+
:list: true
|
708
|
+
:children:
|
709
|
+
Duration:
|
710
|
+
:type: :integer
|
711
|
+
FixedPrice:
|
712
|
+
:type: :float
|
713
|
+
UsagePrice:
|
714
|
+
:type: :float
|
715
|
+
RecurringCharges:
|
716
|
+
:ignore: true
|
717
|
+
:children:
|
718
|
+
RecurringCharge:
|
719
|
+
:rename: :recurring_charges
|
720
|
+
:list: true
|
721
|
+
:children:
|
722
|
+
RecurringChargeAmount:
|
723
|
+
:type: :float
|
724
|
+
- :name: DescribeReservedNodes
|
725
|
+
:method: :describe_reserved_nodes
|
726
|
+
:inputs:
|
727
|
+
ReservedNodeId:
|
728
|
+
- :string
|
729
|
+
ReservedNodeOfferingId:
|
730
|
+
- :string
|
731
|
+
NodeType:
|
732
|
+
- :string
|
733
|
+
Duration:
|
734
|
+
- :string
|
735
|
+
MaxRecords:
|
736
|
+
- :integer
|
737
|
+
Marker:
|
738
|
+
- :string
|
739
|
+
:outputs:
|
740
|
+
:children:
|
741
|
+
DescribeReservedNodesResult:
|
742
|
+
:ignore: true
|
743
|
+
:children:
|
744
|
+
ReservedNodes:
|
745
|
+
:ignore: true
|
746
|
+
:children:
|
747
|
+
ReservedNode:
|
748
|
+
:rename: :reserved_nodes
|
749
|
+
:list: true
|
750
|
+
:children:
|
751
|
+
StartTime:
|
752
|
+
:type: :time
|
753
|
+
Duration:
|
754
|
+
:type: :integer
|
755
|
+
FixedPrice:
|
756
|
+
:type: :float
|
757
|
+
UsagePrice:
|
758
|
+
:type: :float
|
759
|
+
NodeCount:
|
760
|
+
:type: :integer
|
761
|
+
RecurringCharges:
|
762
|
+
:ignore: true
|
763
|
+
:children:
|
764
|
+
RecurringCharge:
|
765
|
+
:rename: :recurring_charges
|
766
|
+
:list: true
|
767
|
+
:children:
|
768
|
+
RecurringChargeAmount:
|
769
|
+
:type: :float
|
770
|
+
- :name: DescribeResize
|
771
|
+
:method: :describe_resize
|
772
|
+
:inputs:
|
773
|
+
ClusterIdentifier:
|
774
|
+
- :string
|
775
|
+
- :required
|
776
|
+
:outputs:
|
777
|
+
:children:
|
778
|
+
DescribeResizeResult:
|
779
|
+
:ignore: true
|
780
|
+
:children:
|
781
|
+
TargetNumberOfNodes:
|
782
|
+
:type: :integer
|
783
|
+
ImportTablesCompleted:
|
784
|
+
:ignore: true
|
785
|
+
:children:
|
786
|
+
member:
|
787
|
+
:rename: :import_tables_completed
|
788
|
+
:list: true
|
789
|
+
ImportTablesInProgress:
|
790
|
+
:ignore: true
|
791
|
+
:children:
|
792
|
+
member:
|
793
|
+
:rename: :import_tables_in_progress
|
794
|
+
:list: true
|
795
|
+
ImportTablesNotStarted:
|
796
|
+
:ignore: true
|
797
|
+
:children:
|
798
|
+
member:
|
799
|
+
:rename: :import_tables_not_started
|
800
|
+
:list: true
|
801
|
+
- :name: ModifyCluster
|
802
|
+
:method: :modify_cluster
|
803
|
+
:inputs:
|
804
|
+
ClusterIdentifier:
|
805
|
+
- :string
|
806
|
+
- :required
|
807
|
+
ClusterType:
|
808
|
+
- :string
|
809
|
+
NodeType:
|
810
|
+
- :string
|
811
|
+
NumberOfNodes:
|
812
|
+
- :integer
|
813
|
+
ClusterSecurityGroups:
|
814
|
+
- :membered_list:
|
815
|
+
- :string
|
816
|
+
VpcSecurityGroupIds:
|
817
|
+
- :membered_list:
|
818
|
+
- :string
|
819
|
+
MasterUserPassword:
|
820
|
+
- :string
|
821
|
+
ClusterParameterGroupName:
|
822
|
+
- :string
|
823
|
+
AutomatedSnapshotRetentionPeriod:
|
824
|
+
- :integer
|
825
|
+
PreferredMaintenanceWindow:
|
826
|
+
- :string
|
827
|
+
ClusterVersion:
|
828
|
+
- :string
|
829
|
+
AllowVersionUpgrade:
|
830
|
+
- :boolean
|
831
|
+
:outputs:
|
832
|
+
:children:
|
833
|
+
ModifyClusterResult:
|
834
|
+
:ignore: true
|
835
|
+
:children:
|
836
|
+
Cluster:
|
837
|
+
:children:
|
838
|
+
Endpoint:
|
839
|
+
:children:
|
840
|
+
Port:
|
841
|
+
:type: :integer
|
842
|
+
ClusterCreateTime:
|
843
|
+
:type: :time
|
844
|
+
AutomatedSnapshotRetentionPeriod:
|
845
|
+
:type: :integer
|
846
|
+
ClusterSecurityGroups:
|
847
|
+
:ignore: true
|
848
|
+
:children:
|
849
|
+
ClusterSecurityGroup:
|
850
|
+
:rename: :cluster_security_groups
|
851
|
+
:list: true
|
852
|
+
VpcSecurityGroups:
|
853
|
+
:ignore: true
|
854
|
+
:children:
|
855
|
+
VpcSecurityGroup:
|
856
|
+
:rename: :vpc_security_groups
|
857
|
+
:list: true
|
858
|
+
ClusterParameterGroups:
|
859
|
+
:ignore: true
|
860
|
+
:children:
|
861
|
+
ClusterParameterGroup:
|
862
|
+
:rename: :cluster_parameter_groups
|
863
|
+
:list: true
|
864
|
+
PendingModifiedValues:
|
865
|
+
:children:
|
866
|
+
NumberOfNodes:
|
867
|
+
:type: :integer
|
868
|
+
AutomatedSnapshotRetentionPeriod:
|
869
|
+
:type: :integer
|
870
|
+
AllowVersionUpgrade:
|
871
|
+
:type: :boolean
|
872
|
+
NumberOfNodes:
|
873
|
+
:type: :integer
|
874
|
+
PubliclyAccessible:
|
875
|
+
:type: :boolean
|
876
|
+
:ignore: true
|
877
|
+
- :name: ModifyClusterParameterGroup
|
878
|
+
:method: :modify_cluster_parameter_group
|
879
|
+
:inputs:
|
880
|
+
ParameterGroupName:
|
881
|
+
- :string
|
882
|
+
- :required
|
883
|
+
Parameters:
|
884
|
+
- :membered_list:
|
885
|
+
- :structure:
|
886
|
+
ParameterName:
|
887
|
+
- :string
|
888
|
+
ParameterValue:
|
889
|
+
- :string
|
890
|
+
Description:
|
891
|
+
- :string
|
892
|
+
Source:
|
893
|
+
- :string
|
894
|
+
DataType:
|
895
|
+
- :string
|
896
|
+
AllowedValues:
|
897
|
+
- :string
|
898
|
+
IsModifiable:
|
899
|
+
- :boolean
|
900
|
+
MinimumEngineVersion:
|
901
|
+
- :string
|
902
|
+
- :required
|
903
|
+
:outputs:
|
904
|
+
:children:
|
905
|
+
ModifyClusterParameterGroupResult:
|
906
|
+
:ignore: true
|
907
|
+
- :name: ModifyClusterSubnetGroup
|
908
|
+
:method: :modify_cluster_subnet_group
|
909
|
+
:inputs:
|
910
|
+
ClusterSubnetGroupName:
|
911
|
+
- :string
|
912
|
+
- :required
|
913
|
+
Description:
|
914
|
+
- :string
|
915
|
+
SubnetIds:
|
916
|
+
- :membered_list:
|
917
|
+
- :string
|
918
|
+
- :required
|
919
|
+
:outputs:
|
920
|
+
:children:
|
921
|
+
ModifyClusterSubnetGroupResult:
|
922
|
+
:ignore: true
|
923
|
+
:children:
|
924
|
+
ClusterSubnetGroup:
|
925
|
+
:children:
|
926
|
+
Subnets:
|
927
|
+
:ignore: true
|
928
|
+
:children:
|
929
|
+
Subnet:
|
930
|
+
:rename: :subnets
|
931
|
+
:list: true
|
932
|
+
:ignore: true
|
933
|
+
- :name: PurchaseReservedNodeOffering
|
934
|
+
:method: :purchase_reserved_node_offering
|
935
|
+
:inputs:
|
936
|
+
ReservedNodeOfferingId:
|
937
|
+
- :string
|
938
|
+
- :required
|
939
|
+
ReservedNodeId:
|
940
|
+
- :string
|
941
|
+
NodeCount:
|
942
|
+
- :integer
|
943
|
+
:outputs:
|
944
|
+
:children:
|
945
|
+
PurchaseReservedNodeOfferingResult:
|
946
|
+
:ignore: true
|
947
|
+
:children:
|
948
|
+
ReservedNode:
|
949
|
+
:children:
|
950
|
+
StartTime:
|
951
|
+
:type: :time
|
952
|
+
Duration:
|
953
|
+
:type: :integer
|
954
|
+
FixedPrice:
|
955
|
+
:type: :float
|
956
|
+
UsagePrice:
|
957
|
+
:type: :float
|
958
|
+
NodeCount:
|
959
|
+
:type: :integer
|
960
|
+
RecurringCharges:
|
961
|
+
:ignore: true
|
962
|
+
:children:
|
963
|
+
RecurringCharge:
|
964
|
+
:rename: :recurring_charges
|
965
|
+
:list: true
|
966
|
+
:children:
|
967
|
+
RecurringChargeAmount:
|
968
|
+
:type: :float
|
969
|
+
:ignore: true
|
970
|
+
- :name: RebootCluster
|
971
|
+
:method: :reboot_cluster
|
972
|
+
:inputs:
|
973
|
+
ClusterIdentifier:
|
974
|
+
- :string
|
975
|
+
- :required
|
976
|
+
:outputs:
|
977
|
+
:children:
|
978
|
+
RebootClusterResult:
|
979
|
+
:ignore: true
|
980
|
+
:children:
|
981
|
+
Cluster:
|
982
|
+
:children:
|
983
|
+
Endpoint:
|
984
|
+
:children:
|
985
|
+
Port:
|
986
|
+
:type: :integer
|
987
|
+
ClusterCreateTime:
|
988
|
+
:type: :time
|
989
|
+
AutomatedSnapshotRetentionPeriod:
|
990
|
+
:type: :integer
|
991
|
+
ClusterSecurityGroups:
|
992
|
+
:ignore: true
|
993
|
+
:children:
|
994
|
+
ClusterSecurityGroup:
|
995
|
+
:rename: :cluster_security_groups
|
996
|
+
:list: true
|
997
|
+
VpcSecurityGroups:
|
998
|
+
:ignore: true
|
999
|
+
:children:
|
1000
|
+
VpcSecurityGroup:
|
1001
|
+
:rename: :vpc_security_groups
|
1002
|
+
:list: true
|
1003
|
+
ClusterParameterGroups:
|
1004
|
+
:ignore: true
|
1005
|
+
:children:
|
1006
|
+
ClusterParameterGroup:
|
1007
|
+
:rename: :cluster_parameter_groups
|
1008
|
+
:list: true
|
1009
|
+
PendingModifiedValues:
|
1010
|
+
:children:
|
1011
|
+
NumberOfNodes:
|
1012
|
+
:type: :integer
|
1013
|
+
AutomatedSnapshotRetentionPeriod:
|
1014
|
+
:type: :integer
|
1015
|
+
AllowVersionUpgrade:
|
1016
|
+
:type: :boolean
|
1017
|
+
NumberOfNodes:
|
1018
|
+
:type: :integer
|
1019
|
+
PubliclyAccessible:
|
1020
|
+
:type: :boolean
|
1021
|
+
:ignore: true
|
1022
|
+
- :name: ResetClusterParameterGroup
|
1023
|
+
:method: :reset_cluster_parameter_group
|
1024
|
+
:inputs:
|
1025
|
+
ParameterGroupName:
|
1026
|
+
- :string
|
1027
|
+
- :required
|
1028
|
+
ResetAllParameters:
|
1029
|
+
- :boolean
|
1030
|
+
Parameters:
|
1031
|
+
- :membered_list:
|
1032
|
+
- :structure:
|
1033
|
+
ParameterName:
|
1034
|
+
- :string
|
1035
|
+
ParameterValue:
|
1036
|
+
- :string
|
1037
|
+
Description:
|
1038
|
+
- :string
|
1039
|
+
Source:
|
1040
|
+
- :string
|
1041
|
+
DataType:
|
1042
|
+
- :string
|
1043
|
+
AllowedValues:
|
1044
|
+
- :string
|
1045
|
+
IsModifiable:
|
1046
|
+
- :boolean
|
1047
|
+
MinimumEngineVersion:
|
1048
|
+
- :string
|
1049
|
+
:outputs:
|
1050
|
+
:children:
|
1051
|
+
ResetClusterParameterGroupResult:
|
1052
|
+
:ignore: true
|
1053
|
+
- :name: RestoreFromClusterSnapshot
|
1054
|
+
:method: :restore_from_cluster_snapshot
|
1055
|
+
:inputs:
|
1056
|
+
ClusterIdentifier:
|
1057
|
+
- :string
|
1058
|
+
- :required
|
1059
|
+
SnapshotIdentifier:
|
1060
|
+
- :string
|
1061
|
+
- :required
|
1062
|
+
Port:
|
1063
|
+
- :integer
|
1064
|
+
AvailabilityZone:
|
1065
|
+
- :string
|
1066
|
+
AllowVersionUpgrade:
|
1067
|
+
- :boolean
|
1068
|
+
ClusterSubnetGroupName:
|
1069
|
+
- :string
|
1070
|
+
PubliclyAccessible:
|
1071
|
+
- :boolean
|
1072
|
+
:outputs:
|
1073
|
+
:children:
|
1074
|
+
RestoreFromClusterSnapshotResult:
|
1075
|
+
:ignore: true
|
1076
|
+
:children:
|
1077
|
+
Cluster:
|
1078
|
+
:children:
|
1079
|
+
Endpoint:
|
1080
|
+
:children:
|
1081
|
+
Port:
|
1082
|
+
:type: :integer
|
1083
|
+
ClusterCreateTime:
|
1084
|
+
:type: :time
|
1085
|
+
AutomatedSnapshotRetentionPeriod:
|
1086
|
+
:type: :integer
|
1087
|
+
ClusterSecurityGroups:
|
1088
|
+
:ignore: true
|
1089
|
+
:children:
|
1090
|
+
ClusterSecurityGroup:
|
1091
|
+
:rename: :cluster_security_groups
|
1092
|
+
:list: true
|
1093
|
+
VpcSecurityGroups:
|
1094
|
+
:ignore: true
|
1095
|
+
:children:
|
1096
|
+
VpcSecurityGroup:
|
1097
|
+
:rename: :vpc_security_groups
|
1098
|
+
:list: true
|
1099
|
+
ClusterParameterGroups:
|
1100
|
+
:ignore: true
|
1101
|
+
:children:
|
1102
|
+
ClusterParameterGroup:
|
1103
|
+
:rename: :cluster_parameter_groups
|
1104
|
+
:list: true
|
1105
|
+
PendingModifiedValues:
|
1106
|
+
:children:
|
1107
|
+
NumberOfNodes:
|
1108
|
+
:type: :integer
|
1109
|
+
AutomatedSnapshotRetentionPeriod:
|
1110
|
+
:type: :integer
|
1111
|
+
AllowVersionUpgrade:
|
1112
|
+
:type: :boolean
|
1113
|
+
NumberOfNodes:
|
1114
|
+
:type: :integer
|
1115
|
+
PubliclyAccessible:
|
1116
|
+
:type: :boolean
|
1117
|
+
:ignore: true
|
1118
|
+
- :name: RevokeClusterSecurityGroupIngress
|
1119
|
+
:method: :revoke_cluster_security_group_ingress
|
1120
|
+
:inputs:
|
1121
|
+
ClusterSecurityGroupName:
|
1122
|
+
- :string
|
1123
|
+
- :required
|
1124
|
+
CIDRIP:
|
1125
|
+
- :string
|
1126
|
+
EC2SecurityGroupName:
|
1127
|
+
- :string
|
1128
|
+
EC2SecurityGroupOwnerId:
|
1129
|
+
- :string
|
1130
|
+
:outputs:
|
1131
|
+
:children:
|
1132
|
+
RevokeClusterSecurityGroupIngressResult:
|
1133
|
+
:ignore: true
|
1134
|
+
:children:
|
1135
|
+
ClusterSecurityGroup:
|
1136
|
+
:children:
|
1137
|
+
EC2SecurityGroups:
|
1138
|
+
:ignore: true
|
1139
|
+
:children:
|
1140
|
+
EC2SecurityGroup:
|
1141
|
+
:rename: :ec2_security_groups
|
1142
|
+
:list: true
|
1143
|
+
IPRanges:
|
1144
|
+
:ignore: true
|
1145
|
+
:children:
|
1146
|
+
IPRange:
|
1147
|
+
:rename: :ip_ranges
|
1148
|
+
:list: true
|
1149
|
+
:ignore: true
|