aws-sdk 1.9.5 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/aws/api_config/DynamoDB-2012-08-10.yml +4 -0
- data/lib/aws/api_config/EC2-2013-02-01.yml +1 -1
- data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +948 -19
- data/lib/aws/api_config/OpsWorks-2013-02-18.yml +83 -2
- data/lib/aws/auto_scaling/client.rb +15 -0
- data/lib/aws/cloud_formation/client.rb +11 -0
- data/lib/aws/cloud_front/client.rb +58 -40
- data/lib/aws/cloud_search/client.rb +20 -0
- data/lib/aws/cloud_watch/client.rb +5 -0
- data/lib/aws/core.rb +5 -4
- data/lib/aws/core/configuration.rb +3 -1
- data/lib/aws/core/policy.rb +27 -1
- data/lib/aws/data_pipeline/client.rb +12 -0
- data/lib/aws/direct_connect/client.rb +11 -0
- data/lib/aws/dynamo_db/client.rb +17 -0
- data/lib/aws/dynamo_db/client_v2.rb +905 -417
- data/lib/aws/ec2.rb +1 -1
- data/lib/aws/ec2/client.rb +88 -0
- data/lib/aws/ec2/instance.rb +3 -1
- data/lib/aws/ec2/security_group.rb +1 -1
- data/lib/aws/elastic_beanstalk/client.rb +21 -0
- data/lib/aws/elastic_transcoder/client.rb +681 -114
- data/lib/aws/elasticache/client.rb +23 -0
- data/lib/aws/elb/client.rb +13 -0
- data/lib/aws/emr/client.rb +3 -0
- data/lib/aws/glacier/client.rb +7 -0
- data/lib/aws/iam/client.rb +35 -0
- data/lib/aws/import_export/client.rb +5 -0
- data/lib/aws/ops_works/client.rb +718 -238
- data/lib/aws/rds/client.rb +46 -0
- data/lib/aws/redshift/client.rb +30 -0
- data/lib/aws/route_53/client.rb +10 -0
- data/lib/aws/s3.rb +1 -1
- data/lib/aws/s3/client.rb +42 -27
- data/lib/aws/s3/client/xml.rb +10 -0
- data/lib/aws/s3/multipart_upload.rb +43 -16
- data/lib/aws/s3/s3_object.rb +61 -26
- data/lib/aws/s3/uploaded_part.rb +3 -1
- data/lib/aws/s3/uploaded_part_collection.rb +1 -1
- data/lib/aws/simple_db/client.rb +10 -0
- data/lib/aws/simple_email_service/client.rb +11 -0
- data/lib/aws/simple_workflow/client.rb +18 -0
- data/lib/aws/sns/client.rb +9 -0
- data/lib/aws/sqs/client.rb +9 -0
- data/lib/aws/storage_gateway/client.rb +72 -37
- data/lib/aws/sts/client.rb +3 -0
- data/lib/aws/version.rb +1 -1
- metadata +17 -9
- checksums.yaml +0 -7
data/lib/aws/rds/client.rb
CHANGED
@@ -41,6 +41,7 @@ module AWS
|
|
41
41
|
# @return [Core::Response]
|
42
42
|
# The #data method of the response object returns
|
43
43
|
# a hash with the following structure:
|
44
|
+
#
|
44
45
|
# * `:customer_aws_id` - (String)
|
45
46
|
# * `:cust_subscription_id` - (String)
|
46
47
|
# * `:sns_topic_arn` - (String)
|
@@ -90,6 +91,7 @@ module AWS
|
|
90
91
|
# @return [Core::Response]
|
91
92
|
# The #data method of the response object returns
|
92
93
|
# a hash with the following structure:
|
94
|
+
#
|
93
95
|
# * `:owner_id` - (String)
|
94
96
|
# * `:db_security_group_name` - (String)
|
95
97
|
# * `:db_security_group_description` - (String)
|
@@ -118,6 +120,7 @@ module AWS
|
|
118
120
|
# @return [Core::Response]
|
119
121
|
# The #data method of the response object returns
|
120
122
|
# a hash with the following structure:
|
123
|
+
#
|
121
124
|
# * `:db_snapshot_identifier` - (String)
|
122
125
|
# * `:db_instance_identifier` - (String)
|
123
126
|
# * `:snapshot_create_time` - (Time)
|
@@ -213,6 +216,7 @@ module AWS
|
|
213
216
|
# @return [Core::Response]
|
214
217
|
# The #data method of the response object returns
|
215
218
|
# a hash with the following structure:
|
219
|
+
#
|
216
220
|
# * `:db_instance_identifier` - (String)
|
217
221
|
# * `:db_instance_class` - (String)
|
218
222
|
# * `:engine` - (String)
|
@@ -322,6 +326,7 @@ module AWS
|
|
322
326
|
# @return [Core::Response]
|
323
327
|
# The #data method of the response object returns
|
324
328
|
# a hash with the following structure:
|
329
|
+
#
|
325
330
|
# * `:db_instance_identifier` - (String)
|
326
331
|
# * `:db_instance_class` - (String)
|
327
332
|
# * `:engine` - (String)
|
@@ -395,6 +400,7 @@ module AWS
|
|
395
400
|
# @return [Core::Response]
|
396
401
|
# The #data method of the response object returns
|
397
402
|
# a hash with the following structure:
|
403
|
+
#
|
398
404
|
# * `:db_parameter_group_name` - (String)
|
399
405
|
# * `:db_parameter_group_family` - (String)
|
400
406
|
# * `:description` - (String)
|
@@ -409,6 +415,7 @@ module AWS
|
|
409
415
|
# @return [Core::Response]
|
410
416
|
# The #data method of the response object returns
|
411
417
|
# a hash with the following structure:
|
418
|
+
#
|
412
419
|
# * `:owner_id` - (String)
|
413
420
|
# * `:db_security_group_name` - (String)
|
414
421
|
# * `:db_security_group_description` - (String)
|
@@ -433,6 +440,7 @@ module AWS
|
|
433
440
|
# @return [Core::Response]
|
434
441
|
# The #data method of the response object returns
|
435
442
|
# a hash with the following structure:
|
443
|
+
#
|
436
444
|
# * `:db_snapshot_identifier` - (String)
|
437
445
|
# * `:db_instance_identifier` - (String)
|
438
446
|
# * `:snapshot_create_time` - (Time)
|
@@ -464,6 +472,7 @@ module AWS
|
|
464
472
|
# @return [Core::Response]
|
465
473
|
# The #data method of the response object returns
|
466
474
|
# a hash with the following structure:
|
475
|
+
#
|
467
476
|
# * `:db_subnet_group_name` - (String)
|
468
477
|
# * `:db_subnet_group_description` - (String)
|
469
478
|
# * `:vpc_id` - (String)
|
@@ -513,6 +522,7 @@ module AWS
|
|
513
522
|
# @return [Core::Response]
|
514
523
|
# The #data method of the response object returns
|
515
524
|
# a hash with the following structure:
|
525
|
+
#
|
516
526
|
# * `:customer_aws_id` - (String)
|
517
527
|
# * `:cust_subscription_id` - (String)
|
518
528
|
# * `:sns_topic_arn` - (String)
|
@@ -541,6 +551,7 @@ module AWS
|
|
541
551
|
# @return [Core::Response]
|
542
552
|
# The #data method of the response object returns
|
543
553
|
# a hash with the following structure:
|
554
|
+
#
|
544
555
|
# * `:option_group_name` - (String)
|
545
556
|
# * `:option_group_description` - (String)
|
546
557
|
# * `:engine_name` - (String)
|
@@ -583,6 +594,7 @@ module AWS
|
|
583
594
|
# @return [Core::Response]
|
584
595
|
# The #data method of the response object returns
|
585
596
|
# a hash with the following structure:
|
597
|
+
#
|
586
598
|
# * `:db_instance_identifier` - (String)
|
587
599
|
# * `:db_instance_class` - (String)
|
588
600
|
# * `:engine` - (String)
|
@@ -666,6 +678,7 @@ module AWS
|
|
666
678
|
# @return [Core::Response]
|
667
679
|
# The #data method of the response object returns
|
668
680
|
# a hash with the following structure:
|
681
|
+
#
|
669
682
|
# * `:db_snapshot_identifier` - (String)
|
670
683
|
# * `:db_instance_identifier` - (String)
|
671
684
|
# * `:snapshot_create_time` - (Time)
|
@@ -701,6 +714,7 @@ module AWS
|
|
701
714
|
# @return [Core::Response]
|
702
715
|
# The #data method of the response object returns
|
703
716
|
# a hash with the following structure:
|
717
|
+
#
|
704
718
|
# * `:customer_aws_id` - (String)
|
705
719
|
# * `:cust_subscription_id` - (String)
|
706
720
|
# * `:sns_topic_arn` - (String)
|
@@ -745,6 +759,7 @@ module AWS
|
|
745
759
|
# @return [Core::Response]
|
746
760
|
# The #data method of the response object returns
|
747
761
|
# a hash with the following structure:
|
762
|
+
#
|
748
763
|
# * `:marker` - (String)
|
749
764
|
# * `:db_engine_versions` - (Array<Hash>)
|
750
765
|
# * `:engine` - (String)
|
@@ -777,6 +792,7 @@ module AWS
|
|
777
792
|
# @return [Core::Response]
|
778
793
|
# The #data method of the response object returns
|
779
794
|
# a hash with the following structure:
|
795
|
+
#
|
780
796
|
# * `:marker` - (String)
|
781
797
|
# * `:db_instances` - (Array<Hash>)
|
782
798
|
# * `:db_instance_identifier` - (String)
|
@@ -863,6 +879,7 @@ module AWS
|
|
863
879
|
# @return [Core::Response]
|
864
880
|
# The #data method of the response object returns
|
865
881
|
# a hash with the following structure:
|
882
|
+
#
|
866
883
|
# * `:describe_db_log_files` - (Array<Hash>)
|
867
884
|
# * `:log_file_name` - (String)
|
868
885
|
# * `:last_written` - (Integer)
|
@@ -885,6 +902,7 @@ module AWS
|
|
885
902
|
# @return [Core::Response]
|
886
903
|
# The #data method of the response object returns
|
887
904
|
# a hash with the following structure:
|
905
|
+
#
|
888
906
|
# * `:marker` - (String)
|
889
907
|
# * `:db_parameter_groups` - (Array<Hash>)
|
890
908
|
# * `:db_parameter_group_name` - (String)
|
@@ -908,6 +926,7 @@ module AWS
|
|
908
926
|
# @return [Core::Response]
|
909
927
|
# The #data method of the response object returns
|
910
928
|
# a hash with the following structure:
|
929
|
+
#
|
911
930
|
# * `:parameters` - (Array<Hash>)
|
912
931
|
# * `:parameter_name` - (String)
|
913
932
|
# * `:parameter_value` - (String)
|
@@ -937,6 +956,7 @@ module AWS
|
|
937
956
|
# @return [Core::Response]
|
938
957
|
# The #data method of the response object returns
|
939
958
|
# a hash with the following structure:
|
959
|
+
#
|
940
960
|
# * `:marker` - (String)
|
941
961
|
# * `:db_security_groups` - (Array<Hash>)
|
942
962
|
# * `:owner_id` - (String)
|
@@ -973,6 +993,7 @@ module AWS
|
|
973
993
|
# @return [Core::Response]
|
974
994
|
# The #data method of the response object returns
|
975
995
|
# a hash with the following structure:
|
996
|
+
#
|
976
997
|
# * `:marker` - (String)
|
977
998
|
# * `:db_snapshots` - (Array<Hash>)
|
978
999
|
# * `:db_snapshot_identifier` - (String)
|
@@ -1009,6 +1030,7 @@ module AWS
|
|
1009
1030
|
# @return [Core::Response]
|
1010
1031
|
# The #data method of the response object returns
|
1011
1032
|
# a hash with the following structure:
|
1033
|
+
#
|
1012
1034
|
# * `:marker` - (String)
|
1013
1035
|
# * `:db_subnet_groups` - (Array<Hash>)
|
1014
1036
|
# * `:db_subnet_group_name` - (String)
|
@@ -1038,6 +1060,7 @@ module AWS
|
|
1038
1060
|
# @return [Core::Response]
|
1039
1061
|
# The #data method of the response object returns
|
1040
1062
|
# a hash with the following structure:
|
1063
|
+
#
|
1041
1064
|
# * `:db_parameter_group_family` - (String)
|
1042
1065
|
# * `:marker` - (String)
|
1043
1066
|
# * `:parameters` - (Array<Hash>)
|
@@ -1061,6 +1084,7 @@ module AWS
|
|
1061
1084
|
# @return [Core::Response]
|
1062
1085
|
# The #data method of the response object returns
|
1063
1086
|
# a hash with the following structure:
|
1087
|
+
#
|
1064
1088
|
# * `:event_categories_map_list` - (Array<Hash>)
|
1065
1089
|
# * `:source_type` - (String)
|
1066
1090
|
# * `:event_categories` - (Array<String>)
|
@@ -1082,6 +1106,7 @@ module AWS
|
|
1082
1106
|
# @return [Core::Response]
|
1083
1107
|
# The #data method of the response object returns
|
1084
1108
|
# a hash with the following structure:
|
1109
|
+
#
|
1085
1110
|
# * `:marker` - (String)
|
1086
1111
|
# * `:event_subscriptions_list` - (Array<Hash>)
|
1087
1112
|
# * `:customer_aws_id` - (String)
|
@@ -1127,6 +1152,7 @@ module AWS
|
|
1127
1152
|
# @return [Core::Response]
|
1128
1153
|
# The #data method of the response object returns
|
1129
1154
|
# a hash with the following structure:
|
1155
|
+
#
|
1130
1156
|
# * `:marker` - (String)
|
1131
1157
|
# * `:events` - (Array<Hash>)
|
1132
1158
|
# * `:source_identifier` - (String)
|
@@ -1155,6 +1181,7 @@ module AWS
|
|
1155
1181
|
# @return [Core::Response]
|
1156
1182
|
# The #data method of the response object returns
|
1157
1183
|
# a hash with the following structure:
|
1184
|
+
#
|
1158
1185
|
# * `:option_group_options` - (Array<Hash>)
|
1159
1186
|
# * `:name` - (String)
|
1160
1187
|
# * `:description` - (String)
|
@@ -1198,6 +1225,7 @@ module AWS
|
|
1198
1225
|
# @return [Core::Response]
|
1199
1226
|
# The #data method of the response object returns
|
1200
1227
|
# a hash with the following structure:
|
1228
|
+
#
|
1201
1229
|
# * `:option_groups_list` - (Array<Hash>)
|
1202
1230
|
# * `:option_group_name` - (String)
|
1203
1231
|
# * `:option_group_description` - (String)
|
@@ -1256,6 +1284,7 @@ module AWS
|
|
1256
1284
|
# @return [Core::Response]
|
1257
1285
|
# The #data method of the response object returns
|
1258
1286
|
# a hash with the following structure:
|
1287
|
+
#
|
1259
1288
|
# * `:orderable_db_instance_options` - (Array<Hash>)
|
1260
1289
|
# * `:engine` - (String)
|
1261
1290
|
# * `:engine_version` - (String)
|
@@ -1304,6 +1333,7 @@ module AWS
|
|
1304
1333
|
# @return [Core::Response]
|
1305
1334
|
# The #data method of the response object returns
|
1306
1335
|
# a hash with the following structure:
|
1336
|
+
#
|
1307
1337
|
# * `:marker` - (String)
|
1308
1338
|
# * `:reserved_db_instances` - (Array<Hash>)
|
1309
1339
|
# * `:reserved_db_instance_id` - (String)
|
@@ -1356,6 +1386,7 @@ module AWS
|
|
1356
1386
|
# @return [Core::Response]
|
1357
1387
|
# The #data method of the response object returns
|
1358
1388
|
# a hash with the following structure:
|
1389
|
+
#
|
1359
1390
|
# * `:marker` - (String)
|
1360
1391
|
# * `:reserved_db_instances_offerings` - (Array<Hash>)
|
1361
1392
|
# * `:reserved_db_instances_offering_id` - (String)
|
@@ -1384,6 +1415,7 @@ module AWS
|
|
1384
1415
|
# @return [Core::Response]
|
1385
1416
|
# The #data method of the response object returns
|
1386
1417
|
# a hash with the following structure:
|
1418
|
+
#
|
1387
1419
|
# * `:log_file_data` - (String)
|
1388
1420
|
# * `:marker` - (String)
|
1389
1421
|
# * `:additional_data_pending` - (Boolean)
|
@@ -1396,6 +1428,7 @@ module AWS
|
|
1396
1428
|
# @return [Core::Response]
|
1397
1429
|
# The #data method of the response object returns
|
1398
1430
|
# a hash with the following structure:
|
1431
|
+
#
|
1399
1432
|
# * `:tag_list` - (Array<Hash>)
|
1400
1433
|
# * `:key` - (String)
|
1401
1434
|
# * `:value` - (String)
|
@@ -1487,6 +1520,7 @@ module AWS
|
|
1487
1520
|
# @return [Core::Response]
|
1488
1521
|
# The #data method of the response object returns
|
1489
1522
|
# a hash with the following structure:
|
1523
|
+
#
|
1490
1524
|
# * `:db_instance_identifier` - (String)
|
1491
1525
|
# * `:db_instance_class` - (String)
|
1492
1526
|
# * `:engine` - (String)
|
@@ -1582,6 +1616,7 @@ module AWS
|
|
1582
1616
|
# @return [Core::Response]
|
1583
1617
|
# The #data method of the response object returns
|
1584
1618
|
# a hash with the following structure:
|
1619
|
+
#
|
1585
1620
|
# * `:db_parameter_group_name` - (String)
|
1586
1621
|
|
1587
1622
|
# @!method modify_db_subnet_group(options = {})
|
@@ -1598,6 +1633,7 @@ module AWS
|
|
1598
1633
|
# @return [Core::Response]
|
1599
1634
|
# The #data method of the response object returns
|
1600
1635
|
# a hash with the following structure:
|
1636
|
+
#
|
1601
1637
|
# * `:db_subnet_group_name` - (String)
|
1602
1638
|
# * `:db_subnet_group_description` - (String)
|
1603
1639
|
# * `:vpc_id` - (String)
|
@@ -1633,6 +1669,7 @@ module AWS
|
|
1633
1669
|
# @return [Core::Response]
|
1634
1670
|
# The #data method of the response object returns
|
1635
1671
|
# a hash with the following structure:
|
1672
|
+
#
|
1636
1673
|
# * `:customer_aws_id` - (String)
|
1637
1674
|
# * `:cust_subscription_id` - (String)
|
1638
1675
|
# * `:sns_topic_arn` - (String)
|
@@ -1682,6 +1719,7 @@ module AWS
|
|
1682
1719
|
# @return [Core::Response]
|
1683
1720
|
# The #data method of the response object returns
|
1684
1721
|
# a hash with the following structure:
|
1722
|
+
#
|
1685
1723
|
# * `:option_group_name` - (String)
|
1686
1724
|
# * `:option_group_description` - (String)
|
1687
1725
|
# * `:engine_name` - (String)
|
@@ -1739,6 +1777,7 @@ module AWS
|
|
1739
1777
|
# @return [Core::Response]
|
1740
1778
|
# The #data method of the response object returns
|
1741
1779
|
# a hash with the following structure:
|
1780
|
+
#
|
1742
1781
|
# * `:db_instance_identifier` - (String)
|
1743
1782
|
# * `:db_instance_class` - (String)
|
1744
1783
|
# * `:engine` - (String)
|
@@ -1812,6 +1851,7 @@ module AWS
|
|
1812
1851
|
# @return [Core::Response]
|
1813
1852
|
# The #data method of the response object returns
|
1814
1853
|
# a hash with the following structure:
|
1854
|
+
#
|
1815
1855
|
# * `:reserved_db_instance_id` - (String)
|
1816
1856
|
# * `:reserved_db_instances_offering_id` - (String)
|
1817
1857
|
# * `:db_instance_class` - (String)
|
@@ -1840,6 +1880,7 @@ module AWS
|
|
1840
1880
|
# @return [Core::Response]
|
1841
1881
|
# The #data method of the response object returns
|
1842
1882
|
# a hash with the following structure:
|
1883
|
+
#
|
1843
1884
|
# * `:db_instance_identifier` - (String)
|
1844
1885
|
# * `:db_instance_class` - (String)
|
1845
1886
|
# * `:engine` - (String)
|
@@ -1912,6 +1953,7 @@ module AWS
|
|
1912
1953
|
# @return [Core::Response]
|
1913
1954
|
# The #data method of the response object returns
|
1914
1955
|
# a hash with the following structure:
|
1956
|
+
#
|
1915
1957
|
# * `:customer_aws_id` - (String)
|
1916
1958
|
# * `:cust_subscription_id` - (String)
|
1917
1959
|
# * `:sns_topic_arn` - (String)
|
@@ -1969,6 +2011,7 @@ module AWS
|
|
1969
2011
|
# @return [Core::Response]
|
1970
2012
|
# The #data method of the response object returns
|
1971
2013
|
# a hash with the following structure:
|
2014
|
+
#
|
1972
2015
|
# * `:db_parameter_group_name` - (String)
|
1973
2016
|
|
1974
2017
|
# @!method restore_db_instance_from_db_snapshot(options = {})
|
@@ -2021,6 +2064,7 @@ module AWS
|
|
2021
2064
|
# @return [Core::Response]
|
2022
2065
|
# The #data method of the response object returns
|
2023
2066
|
# a hash with the following structure:
|
2067
|
+
#
|
2024
2068
|
# * `:db_instance_identifier` - (String)
|
2025
2069
|
# * `:db_instance_class` - (String)
|
2026
2070
|
# * `:engine` - (String)
|
@@ -2135,6 +2179,7 @@ module AWS
|
|
2135
2179
|
# @return [Core::Response]
|
2136
2180
|
# The #data method of the response object returns
|
2137
2181
|
# a hash with the following structure:
|
2182
|
+
#
|
2138
2183
|
# * `:db_instance_identifier` - (String)
|
2139
2184
|
# * `:db_instance_class` - (String)
|
2140
2185
|
# * `:engine` - (String)
|
@@ -2215,6 +2260,7 @@ module AWS
|
|
2215
2260
|
# @return [Core::Response]
|
2216
2261
|
# The #data method of the response object returns
|
2217
2262
|
# a hash with the following structure:
|
2263
|
+
#
|
2218
2264
|
# * `:owner_id` - (String)
|
2219
2265
|
# * `:db_security_group_name` - (String)
|
2220
2266
|
# * `:db_security_group_description` - (String)
|
data/lib/aws/redshift/client.rb
CHANGED
@@ -38,6 +38,7 @@ module AWS
|
|
38
38
|
# @return [Core::Response]
|
39
39
|
# The #data method of the response object returns
|
40
40
|
# a hash with the following structure:
|
41
|
+
#
|
41
42
|
# * `:cluster_security_group_name` - (String)
|
42
43
|
# * `:description` - (String)
|
43
44
|
# * `:ec_2_security_groups` - (Array<Hash>)
|
@@ -64,6 +65,7 @@ module AWS
|
|
64
65
|
# @return [Core::Response]
|
65
66
|
# The #data method of the response object returns
|
66
67
|
# a hash with the following structure:
|
68
|
+
#
|
67
69
|
# * `:snapshot_identifier` - (String)
|
68
70
|
# * `:cluster_identifier` - (String)
|
69
71
|
# * `:snapshot_create_time` - (Time)
|
@@ -195,6 +197,7 @@ module AWS
|
|
195
197
|
# @return [Core::Response]
|
196
198
|
# The #data method of the response object returns
|
197
199
|
# a hash with the following structure:
|
200
|
+
#
|
198
201
|
# * `:cluster_identifier` - (String)
|
199
202
|
# * `:node_type` - (String)
|
200
203
|
# * `:cluster_status` - (String)
|
@@ -255,6 +258,7 @@ module AWS
|
|
255
258
|
# @return [Core::Response]
|
256
259
|
# The #data method of the response object returns
|
257
260
|
# a hash with the following structure:
|
261
|
+
#
|
258
262
|
# * `:parameter_group_name` - (String)
|
259
263
|
# * `:parameter_group_family` - (String)
|
260
264
|
# * `:description` - (String)
|
@@ -273,6 +277,7 @@ module AWS
|
|
273
277
|
# @return [Core::Response]
|
274
278
|
# The #data method of the response object returns
|
275
279
|
# a hash with the following structure:
|
280
|
+
#
|
276
281
|
# * `:cluster_security_group_name` - (String)
|
277
282
|
# * `:description` - (String)
|
278
283
|
# * `:ec_2_security_groups` - (Array<Hash>)
|
@@ -298,6 +303,7 @@ module AWS
|
|
298
303
|
# @return [Core::Response]
|
299
304
|
# The #data method of the response object returns
|
300
305
|
# a hash with the following structure:
|
306
|
+
#
|
301
307
|
# * `:snapshot_identifier` - (String)
|
302
308
|
# * `:cluster_identifier` - (String)
|
303
309
|
# * `:snapshot_create_time` - (Time)
|
@@ -329,6 +335,7 @@ module AWS
|
|
329
335
|
# @return [Core::Response]
|
330
336
|
# The #data method of the response object returns
|
331
337
|
# a hash with the following structure:
|
338
|
+
#
|
332
339
|
# * `:cluster_subnet_group_name` - (String)
|
333
340
|
# * `:description` - (String)
|
334
341
|
# * `:vpc_id` - (String)
|
@@ -363,6 +370,7 @@ module AWS
|
|
363
370
|
# @return [Core::Response]
|
364
371
|
# The #data method of the response object returns
|
365
372
|
# a hash with the following structure:
|
373
|
+
#
|
366
374
|
# * `:cluster_identifier` - (String)
|
367
375
|
# * `:node_type` - (String)
|
368
376
|
# * `:cluster_status` - (String)
|
@@ -424,6 +432,7 @@ module AWS
|
|
424
432
|
# @return [Core::Response]
|
425
433
|
# The #data method of the response object returns
|
426
434
|
# a hash with the following structure:
|
435
|
+
#
|
427
436
|
# * `:snapshot_identifier` - (String)
|
428
437
|
# * `:cluster_identifier` - (String)
|
429
438
|
# * `:snapshot_create_time` - (Time)
|
@@ -464,6 +473,7 @@ module AWS
|
|
464
473
|
# @return [Core::Response]
|
465
474
|
# The #data method of the response object returns
|
466
475
|
# a hash with the following structure:
|
476
|
+
#
|
467
477
|
# * `:marker` - (String)
|
468
478
|
# * `:parameter_groups` - (Array<Hash>)
|
469
479
|
# * `:parameter_group_name` - (String)
|
@@ -492,6 +502,7 @@ module AWS
|
|
492
502
|
# @return [Core::Response]
|
493
503
|
# The #data method of the response object returns
|
494
504
|
# a hash with the following structure:
|
505
|
+
#
|
495
506
|
# * `:parameters` - (Array<Hash>)
|
496
507
|
# * `:parameter_name` - (String)
|
497
508
|
# * `:parameter_value` - (String)
|
@@ -524,6 +535,7 @@ module AWS
|
|
524
535
|
# @return [Core::Response]
|
525
536
|
# The #data method of the response object returns
|
526
537
|
# a hash with the following structure:
|
538
|
+
#
|
527
539
|
# * `:marker` - (String)
|
528
540
|
# * `:cluster_security_groups` - (Array<Hash>)
|
529
541
|
# * `:cluster_security_group_name` - (String)
|
@@ -568,6 +580,7 @@ module AWS
|
|
568
580
|
# @return [Core::Response]
|
569
581
|
# The #data method of the response object returns
|
570
582
|
# a hash with the following structure:
|
583
|
+
#
|
571
584
|
# * `:marker` - (String)
|
572
585
|
# * `:snapshots` - (Array<Hash>)
|
573
586
|
# * `:snapshot_identifier` - (String)
|
@@ -603,6 +616,7 @@ module AWS
|
|
603
616
|
# @return [Core::Response]
|
604
617
|
# The #data method of the response object returns
|
605
618
|
# a hash with the following structure:
|
619
|
+
#
|
606
620
|
# * `:marker` - (String)
|
607
621
|
# * `:cluster_subnet_groups` - (Array<Hash>)
|
608
622
|
# * `:cluster_subnet_group_name` - (String)
|
@@ -635,6 +649,7 @@ module AWS
|
|
635
649
|
# @return [Core::Response]
|
636
650
|
# The #data method of the response object returns
|
637
651
|
# a hash with the following structure:
|
652
|
+
#
|
638
653
|
# * `:marker` - (String)
|
639
654
|
# * `:cluster_versions` - (Array<Hash>)
|
640
655
|
# * `:cluster_version` - (String)
|
@@ -662,6 +677,7 @@ module AWS
|
|
662
677
|
# @return [Core::Response]
|
663
678
|
# The #data method of the response object returns
|
664
679
|
# a hash with the following structure:
|
680
|
+
#
|
665
681
|
# * `:marker` - (String)
|
666
682
|
# * `:clusters` - (Array<Hash>)
|
667
683
|
# * `:cluster_identifier` - (String)
|
@@ -717,6 +733,7 @@ module AWS
|
|
717
733
|
# @return [Core::Response]
|
718
734
|
# The #data method of the response object returns
|
719
735
|
# a hash with the following structure:
|
736
|
+
#
|
720
737
|
# * `:parameter_group_family` - (String)
|
721
738
|
# * `:marker` - (String)
|
722
739
|
# * `:parameters` - (Array<Hash>)
|
@@ -779,6 +796,7 @@ module AWS
|
|
779
796
|
# @return [Core::Response]
|
780
797
|
# The #data method of the response object returns
|
781
798
|
# a hash with the following structure:
|
799
|
+
#
|
782
800
|
# * `:marker` - (String)
|
783
801
|
# * `:events` - (Array<Hash>)
|
784
802
|
# * `:source_identifier` - (String)
|
@@ -808,6 +826,7 @@ module AWS
|
|
808
826
|
# @return [Core::Response]
|
809
827
|
# The #data method of the response object returns
|
810
828
|
# a hash with the following structure:
|
829
|
+
#
|
811
830
|
# * `:orderable_cluster_options` - (Array<Hash>)
|
812
831
|
# * `:cluster_version` - (String)
|
813
832
|
# * `:cluster_type` - (String)
|
@@ -839,6 +858,7 @@ module AWS
|
|
839
858
|
# @return [Core::Response]
|
840
859
|
# The #data method of the response object returns
|
841
860
|
# a hash with the following structure:
|
861
|
+
#
|
842
862
|
# * `:marker` - (String)
|
843
863
|
# * `:reserved_node_offerings` - (Array<Hash>)
|
844
864
|
# * `:reserved_node_offering_id` - (String)
|
@@ -873,6 +893,7 @@ module AWS
|
|
873
893
|
# @return [Core::Response]
|
874
894
|
# The #data method of the response object returns
|
875
895
|
# a hash with the following structure:
|
896
|
+
#
|
876
897
|
# * `:marker` - (String)
|
877
898
|
# * `:reserved_nodes` - (Array<Hash>)
|
878
899
|
# * `:reserved_node_id` - (String)
|
@@ -900,6 +921,7 @@ module AWS
|
|
900
921
|
# @return [Core::Response]
|
901
922
|
# The #data method of the response object returns
|
902
923
|
# a hash with the following structure:
|
924
|
+
#
|
903
925
|
# * `:target_node_type` - (String)
|
904
926
|
# * `:target_number_of_nodes` - (Integer)
|
905
927
|
# * `:target_cluster_type` - (String)
|
@@ -999,6 +1021,7 @@ module AWS
|
|
999
1021
|
# @return [Core::Response]
|
1000
1022
|
# The #data method of the response object returns
|
1001
1023
|
# a hash with the following structure:
|
1024
|
+
#
|
1002
1025
|
# * `:cluster_identifier` - (String)
|
1003
1026
|
# * `:node_type` - (String)
|
1004
1027
|
# * `:cluster_status` - (String)
|
@@ -1061,6 +1084,7 @@ module AWS
|
|
1061
1084
|
# @return [Core::Response]
|
1062
1085
|
# The #data method of the response object returns
|
1063
1086
|
# a hash with the following structure:
|
1087
|
+
#
|
1064
1088
|
# * `:parameter_group_name` - (String)
|
1065
1089
|
# * `:parameter_group_status` - (String)
|
1066
1090
|
|
@@ -1076,6 +1100,7 @@ module AWS
|
|
1076
1100
|
# @return [Core::Response]
|
1077
1101
|
# The #data method of the response object returns
|
1078
1102
|
# a hash with the following structure:
|
1103
|
+
#
|
1079
1104
|
# * `:cluster_subnet_group_name` - (String)
|
1080
1105
|
# * `:description` - (String)
|
1081
1106
|
# * `:vpc_id` - (String)
|
@@ -1097,6 +1122,7 @@ module AWS
|
|
1097
1122
|
# @return [Core::Response]
|
1098
1123
|
# The #data method of the response object returns
|
1099
1124
|
# a hash with the following structure:
|
1125
|
+
#
|
1100
1126
|
# * `:reserved_node_id` - (String)
|
1101
1127
|
# * `:reserved_node_offering_id` - (String)
|
1102
1128
|
# * `:node_type` - (String)
|
@@ -1120,6 +1146,7 @@ module AWS
|
|
1120
1146
|
# @return [Core::Response]
|
1121
1147
|
# The #data method of the response object returns
|
1122
1148
|
# a hash with the following structure:
|
1149
|
+
#
|
1123
1150
|
# * `:cluster_identifier` - (String)
|
1124
1151
|
# * `:node_type` - (String)
|
1125
1152
|
# * `:cluster_status` - (String)
|
@@ -1184,6 +1211,7 @@ module AWS
|
|
1184
1211
|
# @return [Core::Response]
|
1185
1212
|
# The #data method of the response object returns
|
1186
1213
|
# a hash with the following structure:
|
1214
|
+
#
|
1187
1215
|
# * `:parameter_group_name` - (String)
|
1188
1216
|
# * `:parameter_group_status` - (String)
|
1189
1217
|
|
@@ -1218,6 +1246,7 @@ module AWS
|
|
1218
1246
|
# @return [Core::Response]
|
1219
1247
|
# The #data method of the response object returns
|
1220
1248
|
# a hash with the following structure:
|
1249
|
+
#
|
1221
1250
|
# * `:cluster_identifier` - (String)
|
1222
1251
|
# * `:node_type` - (String)
|
1223
1252
|
# * `:cluster_status` - (String)
|
@@ -1276,6 +1305,7 @@ module AWS
|
|
1276
1305
|
# @return [Core::Response]
|
1277
1306
|
# The #data method of the response object returns
|
1278
1307
|
# a hash with the following structure:
|
1308
|
+
#
|
1279
1309
|
# * `:cluster_security_group_name` - (String)
|
1280
1310
|
# * `:description` - (String)
|
1281
1311
|
# * `:ec_2_security_groups` - (Array<Hash>)
|