aws-sdk-core 2.0.0.rc2 → 2.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +13 -7
  3. data/.yardopts +1 -0
  4. data/Gemfile +5 -1
  5. data/README.md +26 -0
  6. data/apis/AutoScaling-2011-01-01.json +57 -0
  7. data/apis/CloudFormation-2010-05-15.json +29 -0
  8. data/apis/CloudFront-2012-05-05.json +33 -0
  9. data/apis/CloudFront-2013-05-12.json +33 -0
  10. data/apis/CloudFront-2013-08-26.json +33 -0
  11. data/apis/CloudSearch-2011-02-01.json +1 -0
  12. data/apis/CloudWatch-2010-08-01.json +22 -0
  13. data/apis/DataPipeline-2012-10-29.json +25 -0
  14. data/apis/DirectConnect-2012-10-25.json +1 -0
  15. data/apis/DynamoDB-2011-12-05.json +29 -0
  16. data/apis/DynamoDB-2012-08-10.json +29 -0
  17. data/apis/EC2-2013-06-15.json +29 -0
  18. data/apis/EC2-2013-10-01.json +29 -0
  19. data/apis/EMR-2009-03-31.json +958 -40
  20. data/apis/ElastiCache-2012-11-15.json +72 -0
  21. data/apis/ElastiCache-2013-06-15.json +72 -0
  22. data/apis/ElasticBeanstalk-2010-12-01.json +8 -0
  23. data/apis/ElasticLoadBalancing-2012-06-01.json +8 -0
  24. data/apis/ElasticTranscoder-2012-09-25.json +16 -3
  25. data/apis/Glacier-2012-06-01.json +35 -0
  26. data/apis/IAM-2010-05-08.json +129 -0
  27. data/apis/ImportExport-2010-06-01.json +9 -0
  28. data/apis/Kinesis-2013-12-02.json +409 -0
  29. data/apis/OpsWorks-2013-02-18.json +1 -0
  30. data/apis/RDS-2013-01-10.json +106 -0
  31. data/apis/RDS-2013-02-12.json +120 -0
  32. data/apis/RDS-2013-05-15.json +120 -0
  33. data/apis/Redshift-2012-12-01.json +90 -1
  34. data/apis/Route53-2012-12-12.json +27 -0
  35. data/apis/S3-2006-03-01.json +34 -0
  36. data/apis/SDB-2009-04-15.json +16 -0
  37. data/apis/SES-2010-12-01.json +8 -0
  38. data/apis/SNS-2010-03-31.json +22 -0
  39. data/apis/SQS-2012-11-05.json +1 -0
  40. data/apis/STS-2011-06-15.json +3 -1
  41. data/apis/SWF-2012-01-25.json +52 -1
  42. data/apis/StorageGateway-2012-06-30.json +15 -0
  43. data/apis/StorageGateway-2013-06-30.json +15 -0
  44. data/apis/Support-2013-04-15.json +15 -0
  45. data/apis/configuration/endpoints.json +88 -23
  46. data/apis/source/elasticmapreduce-2009-03-31.json +1529 -126
  47. data/apis/source/elasticmapreduce-2009-03-31.paginators.json +25 -0
  48. data/apis/source/importexport-2010-06-01.paginators.json +1 -0
  49. data/apis/source/kinesis-2013-12-02.json +894 -0
  50. data/apis/source/kinesis-2013-12-02.paginators.json +18 -0
  51. data/apis/source/rds-2013-01-10.paginators.json +1 -0
  52. data/apis/source/rds-2013-02-12.paginators.json +1 -0
  53. data/apis/source/rds-2013-05-15.paginators.json +1 -0
  54. data/apis/source/redshift-2012-12-01.paginators.json +1 -0
  55. data/apis/source/s3-2006-03-01.paginators.json +1 -1
  56. data/aws-sdk-core.gemspec +1 -0
  57. data/doc-src/plugins/stability.rb +1 -0
  58. data/features/glacier/client.feature +5 -0
  59. data/features/glacier/step_definitions.rb +56 -5
  60. data/features/kinesis/client.feature +18 -0
  61. data/features/kinesis/setup.rb +6 -0
  62. data/features/s3/buckets.feature +10 -0
  63. data/features/s3/objects.feature +9 -0
  64. data/features/s3/step_definitions.rb +29 -0
  65. data/lib/aws.rb +13 -2
  66. data/lib/aws/api/pagination_translator.rb +71 -0
  67. data/lib/aws/api/service_translators/glacier.rb +0 -7
  68. data/lib/aws/api/translator.rb +10 -3
  69. data/lib/aws/error_handler.rb +1 -1
  70. data/lib/aws/json/builder.rb +4 -2
  71. data/lib/aws/pageable_response.rb +230 -0
  72. data/lib/aws/plugins/glacier_checksums.rb +10 -29
  73. data/lib/aws/plugins/response_paging.rb +18 -0
  74. data/lib/aws/plugins/retry_errors.rb +3 -1
  75. data/lib/aws/plugins/s3_complete_multipart_upload_fix.rb +1 -1
  76. data/lib/aws/plugins/s3_get_bucket_location_fix.rb +9 -3
  77. data/lib/aws/plugins/signature_v4.rb +2 -1
  78. data/lib/aws/plugins/sqs_queue_urls.rb +7 -4
  79. data/lib/aws/plugins/user_agent.rb +3 -3
  80. data/lib/aws/response_handler.rb +1 -1
  81. data/lib/aws/signers/s3.rb +1 -1
  82. data/lib/aws/tree_hash.rb +69 -0
  83. data/lib/aws/version.rb +1 -1
  84. data/spec/aws/json/builder_spec.rb +12 -0
  85. data/spec/aws/pageable_response_spec.rb +195 -0
  86. data/spec/aws/plugins/retry_errors_spec.rb +13 -0
  87. data/spec/aws/plugins/signature_v4_spec.rb +65 -0
  88. data/spec/aws/plugins/sqs_queue_urls_spec.rb +41 -0
  89. data/spec/aws_spec.rb +4 -0
  90. data/spec/fixtures/operations/glacier/get_job_output.yml +23 -0
  91. data/spec/fixtures/operations/s3/get_bucket_policy.yml +8 -0
  92. data/tasks/endpoints.rake +15 -0
  93. data/tasks/handlers.rake +1 -1
  94. data/vendor/seahorse/lib/seahorse/client.rb +1 -0
  95. data/vendor/seahorse/lib/seahorse/client/base.rb +6 -0
  96. data/vendor/seahorse/lib/seahorse/client/configuration.rb +1 -1
  97. data/vendor/seahorse/lib/seahorse/client/handler_builder.rb +3 -3
  98. data/vendor/seahorse/lib/seahorse/client/handler_list.rb +2 -2
  99. data/vendor/seahorse/lib/seahorse/client/http/error.rb +17 -0
  100. data/vendor/seahorse/lib/seahorse/client/http/plain_string_io.rb +10 -0
  101. data/vendor/seahorse/lib/seahorse/client/logging/handler.rb +1 -1
  102. data/vendor/seahorse/lib/seahorse/client/net_http/handler.rb +13 -2
  103. data/vendor/seahorse/lib/seahorse/client/plugins/json_simple.rb +1 -1
  104. data/vendor/seahorse/lib/seahorse/client/plugins/operation_methods.rb +4 -2
  105. data/vendor/seahorse/lib/seahorse/client/plugins/restful_bindings.rb +9 -1
  106. data/vendor/seahorse/lib/seahorse/client/request.rb +14 -0
  107. data/vendor/seahorse/lib/seahorse/client/response.rb +8 -38
  108. data/vendor/seahorse/lib/seahorse/model/shapes/shape.rb +11 -3
  109. data/vendor/seahorse/spec/seahorse/client/configuration_spec.rb +13 -0
  110. data/vendor/seahorse/spec/seahorse/client/net_http/handler_spec.rb +6 -0
  111. data/vendor/seahorse/spec/seahorse/client/response_spec.rb +9 -63
  112. metadata +41 -3
@@ -9,6 +9,7 @@
9
9
  "eu-west-1": "elasticache.eu-west-1.amazonaws.com",
10
10
  "ap-northeast-1": "elasticache.ap-northeast-1.amazonaws.com",
11
11
  "ap-southeast-1": "elasticache.ap-southeast-1.amazonaws.com",
12
+ "ap-southeast-2": "elasticache.ap-southeast-2.amazonaws.com",
12
13
  "sa-east-1": "elasticache.sa-east-1.amazonaws.com"
13
14
  },
14
15
  "service_class_name": "ElastiCache",
@@ -23,6 +24,7 @@
23
24
  "Aws::Plugins::GlobalConfiguration",
24
25
  "Aws::Plugins::RegionalEndpoint",
25
26
  "Aws::Plugins::InstanceProfileCredentials",
27
+ "Aws::Plugins::ResponsePaging",
26
28
  "Aws::Plugins::Credentials",
27
29
  "Aws::Plugins::QueryProtocol",
28
30
  "Aws::Plugins::SignatureV2"
@@ -880,6 +882,13 @@
880
882
  "name": "DescribeCacheClusters",
881
883
  "http_method": "POST",
882
884
  "http_path": "/",
885
+ "metadata": {
886
+ "paging": {
887
+ "tokens": {
888
+ "marker": "marker"
889
+ }
890
+ }
891
+ },
883
892
  "input": {
884
893
  "type": "input",
885
894
  "members": {
@@ -1126,6 +1135,13 @@
1126
1135
  "name": "DescribeCacheEngineVersions",
1127
1136
  "http_method": "POST",
1128
1137
  "http_path": "/",
1138
+ "metadata": {
1139
+ "paging": {
1140
+ "tokens": {
1141
+ "marker": "marker"
1142
+ }
1143
+ }
1144
+ },
1129
1145
  "input": {
1130
1146
  "type": "input",
1131
1147
  "members": {
@@ -1202,6 +1218,13 @@
1202
1218
  "name": "DescribeCacheParameterGroups",
1203
1219
  "http_method": "POST",
1204
1220
  "http_path": "/",
1221
+ "metadata": {
1222
+ "paging": {
1223
+ "tokens": {
1224
+ "marker": "marker"
1225
+ }
1226
+ }
1227
+ },
1205
1228
  "input": {
1206
1229
  "type": "input",
1207
1230
  "members": {
@@ -1261,6 +1284,13 @@
1261
1284
  "name": "DescribeCacheParameters",
1262
1285
  "http_method": "POST",
1263
1286
  "http_path": "/",
1287
+ "metadata": {
1288
+ "paging": {
1289
+ "tokens": {
1290
+ "marker": "marker"
1291
+ }
1292
+ }
1293
+ },
1264
1294
  "input": {
1265
1295
  "type": "input",
1266
1296
  "members": {
@@ -1398,6 +1428,13 @@
1398
1428
  "name": "DescribeCacheSecurityGroups",
1399
1429
  "http_method": "POST",
1400
1430
  "http_path": "/",
1431
+ "metadata": {
1432
+ "paging": {
1433
+ "tokens": {
1434
+ "marker": "marker"
1435
+ }
1436
+ }
1437
+ },
1401
1438
  "input": {
1402
1439
  "type": "input",
1403
1440
  "members": {
@@ -1479,6 +1516,13 @@
1479
1516
  "name": "DescribeCacheSubnetGroups",
1480
1517
  "http_method": "POST",
1481
1518
  "http_path": "/",
1519
+ "metadata": {
1520
+ "paging": {
1521
+ "tokens": {
1522
+ "marker": "marker"
1523
+ }
1524
+ }
1525
+ },
1482
1526
  "input": {
1483
1527
  "type": "input",
1484
1528
  "members": {
@@ -1565,6 +1609,13 @@
1565
1609
  "name": "DescribeEngineDefaultParameters",
1566
1610
  "http_method": "POST",
1567
1611
  "http_path": "/",
1612
+ "metadata": {
1613
+ "paging": {
1614
+ "tokens": {
1615
+ "marker": "marker"
1616
+ }
1617
+ }
1618
+ },
1568
1619
  "input": {
1569
1620
  "type": "input",
1570
1621
  "members": {
@@ -1711,6 +1762,13 @@
1711
1762
  "name": "DescribeEvents",
1712
1763
  "http_method": "POST",
1713
1764
  "http_path": "/",
1765
+ "metadata": {
1766
+ "paging": {
1767
+ "tokens": {
1768
+ "marker": "marker"
1769
+ }
1770
+ }
1771
+ },
1714
1772
  "input": {
1715
1773
  "type": "input",
1716
1774
  "members": {
@@ -1799,6 +1857,13 @@
1799
1857
  "name": "DescribeReservedCacheNodes",
1800
1858
  "http_method": "POST",
1801
1859
  "http_path": "/",
1860
+ "metadata": {
1861
+ "paging": {
1862
+ "tokens": {
1863
+ "marker": "marker"
1864
+ }
1865
+ }
1866
+ },
1802
1867
  "input": {
1803
1868
  "type": "input",
1804
1869
  "members": {
@@ -1931,6 +1996,13 @@
1931
1996
  "name": "DescribeReservedCacheNodesOfferings",
1932
1997
  "http_method": "POST",
1933
1998
  "http_path": "/",
1999
+ "metadata": {
2000
+ "paging": {
2001
+ "tokens": {
2002
+ "marker": "marker"
2003
+ }
2004
+ }
2005
+ },
1934
2006
  "input": {
1935
2007
  "type": "input",
1936
2008
  "members": {
@@ -9,6 +9,7 @@
9
9
  "eu-west-1": "elasticache.eu-west-1.amazonaws.com",
10
10
  "ap-northeast-1": "elasticache.ap-northeast-1.amazonaws.com",
11
11
  "ap-southeast-1": "elasticache.ap-southeast-1.amazonaws.com",
12
+ "ap-southeast-2": "elasticache.ap-southeast-2.amazonaws.com",
12
13
  "sa-east-1": "elasticache.sa-east-1.amazonaws.com"
13
14
  },
14
15
  "service_class_name": "ElastiCache",
@@ -23,6 +24,7 @@
23
24
  "Aws::Plugins::GlobalConfiguration",
24
25
  "Aws::Plugins::RegionalEndpoint",
25
26
  "Aws::Plugins::InstanceProfileCredentials",
27
+ "Aws::Plugins::ResponsePaging",
26
28
  "Aws::Plugins::Credentials",
27
29
  "Aws::Plugins::QueryProtocol",
28
30
  "Aws::Plugins::SignatureV2"
@@ -1186,6 +1188,13 @@
1186
1188
  "name": "DescribeCacheClusters",
1187
1189
  "http_method": "POST",
1188
1190
  "http_path": "/",
1191
+ "metadata": {
1192
+ "paging": {
1193
+ "tokens": {
1194
+ "marker": "marker"
1195
+ }
1196
+ }
1197
+ },
1189
1198
  "input": {
1190
1199
  "type": "input",
1191
1200
  "members": {
@@ -1440,6 +1449,13 @@
1440
1449
  "name": "DescribeCacheEngineVersions",
1441
1450
  "http_method": "POST",
1442
1451
  "http_path": "/",
1452
+ "metadata": {
1453
+ "paging": {
1454
+ "tokens": {
1455
+ "marker": "marker"
1456
+ }
1457
+ }
1458
+ },
1443
1459
  "input": {
1444
1460
  "type": "input",
1445
1461
  "members": {
@@ -1516,6 +1532,13 @@
1516
1532
  "name": "DescribeCacheParameterGroups",
1517
1533
  "http_method": "POST",
1518
1534
  "http_path": "/",
1535
+ "metadata": {
1536
+ "paging": {
1537
+ "tokens": {
1538
+ "marker": "marker"
1539
+ }
1540
+ }
1541
+ },
1519
1542
  "input": {
1520
1543
  "type": "input",
1521
1544
  "members": {
@@ -1575,6 +1598,13 @@
1575
1598
  "name": "DescribeCacheParameters",
1576
1599
  "http_method": "POST",
1577
1600
  "http_path": "/",
1601
+ "metadata": {
1602
+ "paging": {
1603
+ "tokens": {
1604
+ "marker": "marker"
1605
+ }
1606
+ }
1607
+ },
1578
1608
  "input": {
1579
1609
  "type": "input",
1580
1610
  "members": {
@@ -1712,6 +1742,13 @@
1712
1742
  "name": "DescribeCacheSecurityGroups",
1713
1743
  "http_method": "POST",
1714
1744
  "http_path": "/",
1745
+ "metadata": {
1746
+ "paging": {
1747
+ "tokens": {
1748
+ "marker": "marker"
1749
+ }
1750
+ }
1751
+ },
1715
1752
  "input": {
1716
1753
  "type": "input",
1717
1754
  "members": {
@@ -1793,6 +1830,13 @@
1793
1830
  "name": "DescribeCacheSubnetGroups",
1794
1831
  "http_method": "POST",
1795
1832
  "http_path": "/",
1833
+ "metadata": {
1834
+ "paging": {
1835
+ "tokens": {
1836
+ "marker": "marker"
1837
+ }
1838
+ }
1839
+ },
1796
1840
  "input": {
1797
1841
  "type": "input",
1798
1842
  "members": {
@@ -1879,6 +1923,13 @@
1879
1923
  "name": "DescribeEngineDefaultParameters",
1880
1924
  "http_method": "POST",
1881
1925
  "http_path": "/",
1926
+ "metadata": {
1927
+ "paging": {
1928
+ "tokens": {
1929
+ "marker": "marker"
1930
+ }
1931
+ }
1932
+ },
1882
1933
  "input": {
1883
1934
  "type": "input",
1884
1935
  "members": {
@@ -2025,6 +2076,13 @@
2025
2076
  "name": "DescribeEvents",
2026
2077
  "http_method": "POST",
2027
2078
  "http_path": "/",
2079
+ "metadata": {
2080
+ "paging": {
2081
+ "tokens": {
2082
+ "marker": "marker"
2083
+ }
2084
+ }
2085
+ },
2028
2086
  "input": {
2029
2087
  "type": "input",
2030
2088
  "members": {
@@ -2262,6 +2320,13 @@
2262
2320
  "name": "DescribeReservedCacheNodes",
2263
2321
  "http_method": "POST",
2264
2322
  "http_path": "/",
2323
+ "metadata": {
2324
+ "paging": {
2325
+ "tokens": {
2326
+ "marker": "marker"
2327
+ }
2328
+ }
2329
+ },
2265
2330
  "input": {
2266
2331
  "type": "input",
2267
2332
  "members": {
@@ -2394,6 +2459,13 @@
2394
2459
  "name": "DescribeReservedCacheNodesOfferings",
2395
2460
  "http_method": "POST",
2396
2461
  "http_path": "/",
2462
+ "metadata": {
2463
+ "paging": {
2464
+ "tokens": {
2465
+ "marker": "marker"
2466
+ }
2467
+ }
2468
+ },
2397
2469
  "input": {
2398
2470
  "type": "input",
2399
2471
  "members": {
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::GlobalConfiguration",
26
26
  "Aws::Plugins::RegionalEndpoint",
27
27
  "Aws::Plugins::InstanceProfileCredentials",
28
+ "Aws::Plugins::ResponsePaging",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV4"
@@ -1258,6 +1259,13 @@
1258
1259
  "name": "DescribeEvents",
1259
1260
  "http_method": "POST",
1260
1261
  "http_path": "/",
1262
+ "metadata": {
1263
+ "paging": {
1264
+ "tokens": {
1265
+ "next_token": "next_token"
1266
+ }
1267
+ }
1268
+ },
1261
1269
  "input": {
1262
1270
  "type": "input",
1263
1271
  "members": {
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::GlobalConfiguration",
26
26
  "Aws::Plugins::RegionalEndpoint",
27
27
  "Aws::Plugins::InstanceProfileCredentials",
28
+ "Aws::Plugins::ResponsePaging",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV4"
@@ -757,6 +758,13 @@
757
758
  "name": "DescribeLoadBalancers",
758
759
  "http_method": "POST",
759
760
  "http_path": "/",
761
+ "metadata": {
762
+ "paging": {
763
+ "tokens": {
764
+ "marker": "next_marker"
765
+ }
766
+ }
767
+ },
760
768
  "input": {
761
769
  "type": "input",
762
770
  "members": {
@@ -8,9 +8,7 @@
8
8
  "us-west-2": "elastictranscoder.us-west-2.amazonaws.com",
9
9
  "eu-west-1": "elastictranscoder.eu-west-1.amazonaws.com",
10
10
  "ap-northeast-1": "elastictranscoder.ap-northeast-1.amazonaws.com",
11
- "ap-southeast-1": "elastictranscoder.ap-southeast-1.amazonaws.com",
12
- "ap-southeast-2": "elastictranscoder.ap-southeast-2.amazonaws.com",
13
- "sa-east-1": "elastictranscoder.sa-east-1.amazonaws.com"
11
+ "ap-southeast-1": "elastictranscoder.ap-southeast-1.amazonaws.com"
14
12
  },
15
13
  "service_class_name": "ElasticTranscoder",
16
14
  "service_full_name": "Amazon Elastic Transcoder"
@@ -24,6 +22,7 @@
24
22
  "Aws::Plugins::GlobalConfiguration",
25
23
  "Aws::Plugins::RegionalEndpoint",
26
24
  "Aws::Plugins::InstanceProfileCredentials",
25
+ "Aws::Plugins::ResponsePaging",
27
26
  "Aws::Plugins::Credentials",
28
27
  "Aws::Plugins::JsonProtocol",
29
28
  "Aws::Plugins::SignatureV4"
@@ -1401,6 +1400,13 @@
1401
1400
  "name": "ListJobsByPipeline",
1402
1401
  "http_method": "GET",
1403
1402
  "http_path": "/2012-09-25/jobsByPipeline/{pipeline_id}?Ascending={ascending}&PageToken={page_token}",
1403
+ "metadata": {
1404
+ "paging": {
1405
+ "tokens": {
1406
+ "page_token": "next_page_token"
1407
+ }
1408
+ }
1409
+ },
1404
1410
  "input": {
1405
1411
  "type": "input",
1406
1412
  "members": {
@@ -1789,6 +1795,13 @@
1789
1795
  "name": "ListJobsByStatus",
1790
1796
  "http_method": "GET",
1791
1797
  "http_path": "/2012-09-25/jobsByStatus/{status}?Ascending={ascending}&PageToken={page_token}",
1798
+ "metadata": {
1799
+ "paging": {
1800
+ "tokens": {
1801
+ "page_token": "next_page_token"
1802
+ }
1803
+ }
1804
+ },
1792
1805
  "input": {
1793
1806
  "type": "input",
1794
1807
  "members": {
@@ -8,6 +8,7 @@
8
8
  "us-west-1": "glacier.us-west-1.amazonaws.com",
9
9
  "us-west-2": "glacier.us-west-2.amazonaws.com",
10
10
  "eu-west-1": "glacier.eu-west-1.amazonaws.com",
11
+ "ap-southeast-2": "glacier.ap-southeast-2.amazonaws.com",
11
12
  "ap-northeast-1": "glacier.ap-northeast-1.amazonaws.com"
12
13
  },
13
14
  "service_class_name": "Glacier",
@@ -22,6 +23,7 @@
22
23
  "Aws::Plugins::GlobalConfiguration",
23
24
  "Aws::Plugins::RegionalEndpoint",
24
25
  "Aws::Plugins::InstanceProfileCredentials",
26
+ "Aws::Plugins::ResponsePaging",
25
27
  "Aws::Plugins::Credentials",
26
28
  "Aws::Plugins::JsonProtocol",
27
29
  "Aws::Plugins::SignatureV4",
@@ -81,6 +83,11 @@
81
83
  "type": "integer",
82
84
  "location": "header",
83
85
  "serialized_name": "x-amz-archive-size"
86
+ },
87
+ "checksum": {
88
+ "type": "string",
89
+ "location": "header",
90
+ "serialized_name": "x-amz-sha256-tree-hash"
84
91
  }
85
92
  }
86
93
  },
@@ -580,6 +587,13 @@
580
587
  "name": "ListJobs",
581
588
  "http_method": "GET",
582
589
  "http_path": "/{account_id}/vaults/{vault_name}/jobs?marker={marker}&limit={limit}&completed={completed}&statuscode={statuscode}",
590
+ "metadata": {
591
+ "paging": {
592
+ "tokens": {
593
+ "marker": "marker"
594
+ }
595
+ }
596
+ },
583
597
  "input": {
584
598
  "type": "input",
585
599
  "members": {
@@ -707,6 +721,13 @@
707
721
  "name": "ListMultipartUploads",
708
722
  "http_method": "GET",
709
723
  "http_path": "/{account_id}/vaults/{vault_name}/multipart-uploads?marker={marker}&limit={limit}",
724
+ "metadata": {
725
+ "paging": {
726
+ "tokens": {
727
+ "marker": "marker"
728
+ }
729
+ }
730
+ },
710
731
  "input": {
711
732
  "type": "input",
712
733
  "members": {
@@ -773,6 +794,13 @@
773
794
  "name": "ListParts",
774
795
  "http_method": "GET",
775
796
  "http_path": "/{account_id}/vaults/{vault_name}/multipart-uploads/{upload_id}?marker={marker}&limit={limit}",
797
+ "metadata": {
798
+ "paging": {
799
+ "tokens": {
800
+ "marker": "marker"
801
+ }
802
+ }
803
+ },
776
804
  "input": {
777
805
  "type": "input",
778
806
  "members": {
@@ -852,6 +880,13 @@
852
880
  "name": "ListVaults",
853
881
  "http_method": "GET",
854
882
  "http_path": "/{account_id}/vaults?marker={marker}&limit={limit}",
883
+ "metadata": {
884
+ "paging": {
885
+ "tokens": {
886
+ "marker": "marker"
887
+ }
888
+ }
889
+ },
855
890
  "input": {
856
891
  "type": "input",
857
892
  "members": {