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.
- checksums.yaml +4 -4
- data/.travis.yml +13 -7
- data/.yardopts +1 -0
- data/Gemfile +5 -1
- data/README.md +26 -0
- data/apis/AutoScaling-2011-01-01.json +57 -0
- data/apis/CloudFormation-2010-05-15.json +29 -0
- data/apis/CloudFront-2012-05-05.json +33 -0
- data/apis/CloudFront-2013-05-12.json +33 -0
- data/apis/CloudFront-2013-08-26.json +33 -0
- data/apis/CloudSearch-2011-02-01.json +1 -0
- data/apis/CloudWatch-2010-08-01.json +22 -0
- data/apis/DataPipeline-2012-10-29.json +25 -0
- data/apis/DirectConnect-2012-10-25.json +1 -0
- data/apis/DynamoDB-2011-12-05.json +29 -0
- data/apis/DynamoDB-2012-08-10.json +29 -0
- data/apis/EC2-2013-06-15.json +29 -0
- data/apis/EC2-2013-10-01.json +29 -0
- data/apis/EMR-2009-03-31.json +958 -40
- data/apis/ElastiCache-2012-11-15.json +72 -0
- data/apis/ElastiCache-2013-06-15.json +72 -0
- data/apis/ElasticBeanstalk-2010-12-01.json +8 -0
- data/apis/ElasticLoadBalancing-2012-06-01.json +8 -0
- data/apis/ElasticTranscoder-2012-09-25.json +16 -3
- data/apis/Glacier-2012-06-01.json +35 -0
- data/apis/IAM-2010-05-08.json +129 -0
- data/apis/ImportExport-2010-06-01.json +9 -0
- data/apis/Kinesis-2013-12-02.json +409 -0
- data/apis/OpsWorks-2013-02-18.json +1 -0
- data/apis/RDS-2013-01-10.json +106 -0
- data/apis/RDS-2013-02-12.json +120 -0
- data/apis/RDS-2013-05-15.json +120 -0
- data/apis/Redshift-2012-12-01.json +90 -1
- data/apis/Route53-2012-12-12.json +27 -0
- data/apis/S3-2006-03-01.json +34 -0
- data/apis/SDB-2009-04-15.json +16 -0
- data/apis/SES-2010-12-01.json +8 -0
- data/apis/SNS-2010-03-31.json +22 -0
- data/apis/SQS-2012-11-05.json +1 -0
- data/apis/STS-2011-06-15.json +3 -1
- data/apis/SWF-2012-01-25.json +52 -1
- data/apis/StorageGateway-2012-06-30.json +15 -0
- data/apis/StorageGateway-2013-06-30.json +15 -0
- data/apis/Support-2013-04-15.json +15 -0
- data/apis/configuration/endpoints.json +88 -23
- data/apis/source/elasticmapreduce-2009-03-31.json +1529 -126
- data/apis/source/elasticmapreduce-2009-03-31.paginators.json +25 -0
- data/apis/source/importexport-2010-06-01.paginators.json +1 -0
- data/apis/source/kinesis-2013-12-02.json +894 -0
- data/apis/source/kinesis-2013-12-02.paginators.json +18 -0
- data/apis/source/rds-2013-01-10.paginators.json +1 -0
- data/apis/source/rds-2013-02-12.paginators.json +1 -0
- data/apis/source/rds-2013-05-15.paginators.json +1 -0
- data/apis/source/redshift-2012-12-01.paginators.json +1 -0
- data/apis/source/s3-2006-03-01.paginators.json +1 -1
- data/aws-sdk-core.gemspec +1 -0
- data/doc-src/plugins/stability.rb +1 -0
- data/features/glacier/client.feature +5 -0
- data/features/glacier/step_definitions.rb +56 -5
- data/features/kinesis/client.feature +18 -0
- data/features/kinesis/setup.rb +6 -0
- data/features/s3/buckets.feature +10 -0
- data/features/s3/objects.feature +9 -0
- data/features/s3/step_definitions.rb +29 -0
- data/lib/aws.rb +13 -2
- data/lib/aws/api/pagination_translator.rb +71 -0
- data/lib/aws/api/service_translators/glacier.rb +0 -7
- data/lib/aws/api/translator.rb +10 -3
- data/lib/aws/error_handler.rb +1 -1
- data/lib/aws/json/builder.rb +4 -2
- data/lib/aws/pageable_response.rb +230 -0
- data/lib/aws/plugins/glacier_checksums.rb +10 -29
- data/lib/aws/plugins/response_paging.rb +18 -0
- data/lib/aws/plugins/retry_errors.rb +3 -1
- data/lib/aws/plugins/s3_complete_multipart_upload_fix.rb +1 -1
- data/lib/aws/plugins/s3_get_bucket_location_fix.rb +9 -3
- data/lib/aws/plugins/signature_v4.rb +2 -1
- data/lib/aws/plugins/sqs_queue_urls.rb +7 -4
- data/lib/aws/plugins/user_agent.rb +3 -3
- data/lib/aws/response_handler.rb +1 -1
- data/lib/aws/signers/s3.rb +1 -1
- data/lib/aws/tree_hash.rb +69 -0
- data/lib/aws/version.rb +1 -1
- data/spec/aws/json/builder_spec.rb +12 -0
- data/spec/aws/pageable_response_spec.rb +195 -0
- data/spec/aws/plugins/retry_errors_spec.rb +13 -0
- data/spec/aws/plugins/signature_v4_spec.rb +65 -0
- data/spec/aws/plugins/sqs_queue_urls_spec.rb +41 -0
- data/spec/aws_spec.rb +4 -0
- data/spec/fixtures/operations/glacier/get_job_output.yml +23 -0
- data/spec/fixtures/operations/s3/get_bucket_policy.yml +8 -0
- data/tasks/endpoints.rake +15 -0
- data/tasks/handlers.rake +1 -1
- data/vendor/seahorse/lib/seahorse/client.rb +1 -0
- data/vendor/seahorse/lib/seahorse/client/base.rb +6 -0
- data/vendor/seahorse/lib/seahorse/client/configuration.rb +1 -1
- data/vendor/seahorse/lib/seahorse/client/handler_builder.rb +3 -3
- data/vendor/seahorse/lib/seahorse/client/handler_list.rb +2 -2
- data/vendor/seahorse/lib/seahorse/client/http/error.rb +17 -0
- data/vendor/seahorse/lib/seahorse/client/http/plain_string_io.rb +10 -0
- data/vendor/seahorse/lib/seahorse/client/logging/handler.rb +1 -1
- data/vendor/seahorse/lib/seahorse/client/net_http/handler.rb +13 -2
- data/vendor/seahorse/lib/seahorse/client/plugins/json_simple.rb +1 -1
- data/vendor/seahorse/lib/seahorse/client/plugins/operation_methods.rb +4 -2
- data/vendor/seahorse/lib/seahorse/client/plugins/restful_bindings.rb +9 -1
- data/vendor/seahorse/lib/seahorse/client/request.rb +14 -0
- data/vendor/seahorse/lib/seahorse/client/response.rb +8 -38
- data/vendor/seahorse/lib/seahorse/model/shapes/shape.rb +11 -3
- data/vendor/seahorse/spec/seahorse/client/configuration_spec.rb +13 -0
- data/vendor/seahorse/spec/seahorse/client/net_http/handler_spec.rb +6 -0
- data/vendor/seahorse/spec/seahorse/client/response_spec.rb +9 -63
- metadata +41 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7df9b2a2c73420992cf5f73ba37864dbfc3b6233
|
4
|
+
data.tar.gz: 16aed70aca632922cb7151b080d751686b747922
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a252a02bc47d9eb9f11eee62edcf7b0a8ad1c3a8b0643c73ea29f31c07abb610c85375c70001a95609e8f1be49aedd515668fca183a978d1c3c4a7d0ea45859
|
7
|
+
data.tar.gz: 5f86e61753847b439a7466785e0b04cec600e47dcf1fc20a138a655da420b44c2f0a279e9d22f0d13e4a8fda53cd7fda2da627783e61f3a715c688a68f3c01c9
|
data/.travis.yml
CHANGED
@@ -1,13 +1,19 @@
|
|
1
1
|
script: bundle exec rake
|
2
|
-
rvm:
|
3
|
-
- 1.9.3
|
4
|
-
- 2.0.0
|
5
|
-
- jruby
|
6
2
|
bundler_args: --without bin docs
|
7
3
|
branches:
|
8
4
|
only:
|
9
5
|
- master
|
6
|
+
rvm:
|
7
|
+
- 1.9.3
|
8
|
+
- 2.0.0
|
9
|
+
- jruby
|
10
10
|
env:
|
11
|
-
|
12
|
-
-
|
13
|
-
|
11
|
+
- OX=1 OJ=1
|
12
|
+
- NOKOGIRI=1
|
13
|
+
gemfile:
|
14
|
+
- Gemfile
|
15
|
+
matrix:
|
16
|
+
exclude:
|
17
|
+
- rvm: jruby
|
18
|
+
env: OX=1 OJ=1
|
19
|
+
gemfile: Gemfile
|
data/.yardopts
CHANGED
data/Gemfile
CHANGED
@@ -4,6 +4,10 @@ gemspec
|
|
4
4
|
|
5
5
|
gem 'rake', require: false
|
6
6
|
|
7
|
+
gem 'oj' if ENV['OJ']
|
8
|
+
gem 'ox' if ENV['OX']
|
9
|
+
gem 'nokogiri' if ENV['NOKOGIRI']
|
10
|
+
|
7
11
|
group :test do
|
8
12
|
gem 'rspec', github: 'rspec/rspec'
|
9
13
|
gem 'rspec-core', github: 'rspec/rspec-core'
|
@@ -21,6 +25,6 @@ group :docs do
|
|
21
25
|
gem 'rdiscount'
|
22
26
|
end
|
23
27
|
|
24
|
-
group :
|
28
|
+
group :repl do
|
25
29
|
gem 'pry'
|
26
30
|
end
|
data/README.md
CHANGED
@@ -80,6 +80,31 @@ resp.contents.each do |object|
|
|
80
80
|
end
|
81
81
|
```
|
82
82
|
|
83
|
+
## Paging Responses
|
84
|
+
|
85
|
+
Many AWS operations limit the number of results returned with each response.
|
86
|
+
A simple paging interface is provided that works with every AWS request.
|
87
|
+
|
88
|
+
```ruby
|
89
|
+
# yields once per response, even works with non-paged requests
|
90
|
+
s3.list_objects(bucket:'aws-sdk').each do |resp|
|
91
|
+
puts resp.contents.map(&:key)
|
92
|
+
end
|
93
|
+
```
|
94
|
+
|
95
|
+
If you prefer to control paging yourself, all returned responses have the
|
96
|
+
same helper methods:
|
97
|
+
|
98
|
+
```ruby
|
99
|
+
# make a request that returns a truncated response
|
100
|
+
resp = s3.list_objects(bucket:'aws-sdk')
|
101
|
+
|
102
|
+
resp.last_page? #=> false
|
103
|
+
resp.next_page? #=> true
|
104
|
+
resp = resp.next_page # send a request for the next response page
|
105
|
+
resp = resp.next_page until resp.last_page?
|
106
|
+
```
|
107
|
+
|
83
108
|
## Interactive Console
|
84
109
|
|
85
110
|
AWS SDK Core ships with a REPL that acts as an interactive console. You
|
@@ -128,6 +153,7 @@ version.
|
|
128
153
|
| Amazon Elastic Transcoder | Aws::ElasticTranscoder | 2012-09-25 |
|
129
154
|
| Amazon ElastiCache | Aws::ElastiCache | 2012-11-15 — 2013-06-15 |
|
130
155
|
| Amazon Glacier | Aws::Glacier | 2012-06-01 |
|
156
|
+
| Amazon Kinesis | Aws::Kinesis | 2013-12-02 |
|
131
157
|
| Amazon Redshift | Aws::Redshift | 2012-12-01 |
|
132
158
|
| Amazon Relational Database Service | Aws::RDS | 2013-01-10 — 2013-05-15 |
|
133
159
|
| Amazon Route 53 | Aws::Route53 | 2012-12-12 |
|
@@ -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"
|
@@ -445,6 +446,13 @@
|
|
445
446
|
"name": "DescribeAutoScalingGroups",
|
446
447
|
"http_method": "POST",
|
447
448
|
"http_path": "/",
|
449
|
+
"metadata": {
|
450
|
+
"paging": {
|
451
|
+
"tokens": {
|
452
|
+
"next_token": "next_token"
|
453
|
+
}
|
454
|
+
}
|
455
|
+
},
|
448
456
|
"input": {
|
449
457
|
"type": "input",
|
450
458
|
"members": {
|
@@ -663,6 +671,13 @@
|
|
663
671
|
"name": "DescribeAutoScalingInstances",
|
664
672
|
"http_method": "POST",
|
665
673
|
"http_path": "/",
|
674
|
+
"metadata": {
|
675
|
+
"paging": {
|
676
|
+
"tokens": {
|
677
|
+
"next_token": "next_token"
|
678
|
+
}
|
679
|
+
}
|
680
|
+
},
|
666
681
|
"input": {
|
667
682
|
"type": "input",
|
668
683
|
"members": {
|
@@ -753,6 +768,13 @@
|
|
753
768
|
"name": "DescribeLaunchConfigurations",
|
754
769
|
"http_method": "POST",
|
755
770
|
"http_path": "/",
|
771
|
+
"metadata": {
|
772
|
+
"paging": {
|
773
|
+
"tokens": {
|
774
|
+
"next_token": "next_token"
|
775
|
+
}
|
776
|
+
}
|
777
|
+
},
|
756
778
|
"input": {
|
757
779
|
"type": "input",
|
758
780
|
"members": {
|
@@ -938,6 +960,13 @@
|
|
938
960
|
"name": "DescribeNotificationConfigurations",
|
939
961
|
"http_method": "POST",
|
940
962
|
"http_path": "/",
|
963
|
+
"metadata": {
|
964
|
+
"paging": {
|
965
|
+
"tokens": {
|
966
|
+
"next_token": "next_token"
|
967
|
+
}
|
968
|
+
}
|
969
|
+
},
|
941
970
|
"input": {
|
942
971
|
"type": "input",
|
943
972
|
"members": {
|
@@ -996,6 +1025,13 @@
|
|
996
1025
|
"name": "DescribePolicies",
|
997
1026
|
"http_method": "POST",
|
998
1027
|
"http_path": "/",
|
1028
|
+
"metadata": {
|
1029
|
+
"paging": {
|
1030
|
+
"tokens": {
|
1031
|
+
"next_token": "next_token"
|
1032
|
+
}
|
1033
|
+
}
|
1034
|
+
},
|
999
1035
|
"input": {
|
1000
1036
|
"type": "input",
|
1001
1037
|
"members": {
|
@@ -1091,6 +1127,13 @@
|
|
1091
1127
|
"name": "DescribeScalingActivities",
|
1092
1128
|
"http_method": "POST",
|
1093
1129
|
"http_path": "/",
|
1130
|
+
"metadata": {
|
1131
|
+
"paging": {
|
1132
|
+
"tokens": {
|
1133
|
+
"next_token": "next_token"
|
1134
|
+
}
|
1135
|
+
}
|
1136
|
+
},
|
1094
1137
|
"input": {
|
1095
1138
|
"type": "input",
|
1096
1139
|
"members": {
|
@@ -1217,6 +1260,13 @@
|
|
1217
1260
|
"name": "DescribeScheduledActions",
|
1218
1261
|
"http_method": "POST",
|
1219
1262
|
"http_path": "/",
|
1263
|
+
"metadata": {
|
1264
|
+
"paging": {
|
1265
|
+
"tokens": {
|
1266
|
+
"next_token": "next_token"
|
1267
|
+
}
|
1268
|
+
}
|
1269
|
+
},
|
1220
1270
|
"input": {
|
1221
1271
|
"type": "input",
|
1222
1272
|
"members": {
|
@@ -1315,6 +1365,13 @@
|
|
1315
1365
|
"name": "DescribeTags",
|
1316
1366
|
"http_method": "POST",
|
1317
1367
|
"http_path": "/",
|
1368
|
+
"metadata": {
|
1369
|
+
"paging": {
|
1370
|
+
"tokens": {
|
1371
|
+
"next_token": "next_token"
|
1372
|
+
}
|
1373
|
+
}
|
1374
|
+
},
|
1318
1375
|
"input": {
|
1319
1376
|
"type": "input",
|
1320
1377
|
"members": {
|
@@ -24,6 +24,7 @@
|
|
24
24
|
"Aws::Plugins::GlobalConfiguration",
|
25
25
|
"Aws::Plugins::RegionalEndpoint",
|
26
26
|
"Aws::Plugins::InstanceProfileCredentials",
|
27
|
+
"Aws::Plugins::ResponsePaging",
|
27
28
|
"Aws::Plugins::Credentials",
|
28
29
|
"Aws::Plugins::QueryProtocol",
|
29
30
|
"Aws::Plugins::SignatureV4"
|
@@ -174,6 +175,13 @@
|
|
174
175
|
"name": "DescribeStackEvents",
|
175
176
|
"http_method": "POST",
|
176
177
|
"http_path": "/",
|
178
|
+
"metadata": {
|
179
|
+
"paging": {
|
180
|
+
"tokens": {
|
181
|
+
"next_token": "next_token"
|
182
|
+
}
|
183
|
+
}
|
184
|
+
},
|
177
185
|
"input": {
|
178
186
|
"type": "input",
|
179
187
|
"members": {
|
@@ -435,6 +443,13 @@
|
|
435
443
|
"name": "DescribeStacks",
|
436
444
|
"http_method": "POST",
|
437
445
|
"http_path": "/",
|
446
|
+
"metadata": {
|
447
|
+
"paging": {
|
448
|
+
"tokens": {
|
449
|
+
"next_token": "next_token"
|
450
|
+
}
|
451
|
+
}
|
452
|
+
},
|
438
453
|
"input": {
|
439
454
|
"type": "input",
|
440
455
|
"members": {
|
@@ -701,6 +716,13 @@
|
|
701
716
|
"name": "ListStackResources",
|
702
717
|
"http_method": "POST",
|
703
718
|
"http_path": "/",
|
719
|
+
"metadata": {
|
720
|
+
"paging": {
|
721
|
+
"tokens": {
|
722
|
+
"next_token": "next_token"
|
723
|
+
}
|
724
|
+
}
|
725
|
+
},
|
704
726
|
"input": {
|
705
727
|
"type": "input",
|
706
728
|
"members": {
|
@@ -776,6 +798,13 @@
|
|
776
798
|
"name": "ListStacks",
|
777
799
|
"http_method": "POST",
|
778
800
|
"http_path": "/",
|
801
|
+
"metadata": {
|
802
|
+
"paging": {
|
803
|
+
"tokens": {
|
804
|
+
"next_token": "next_token"
|
805
|
+
}
|
806
|
+
}
|
807
|
+
},
|
779
808
|
"input": {
|
780
809
|
"type": "input",
|
781
810
|
"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::XmlProtocol",
|
30
31
|
"Aws::Plugins::SignatureV4"
|
@@ -2278,6 +2279,14 @@
|
|
2278
2279
|
"name": "ListCloudFrontOriginAccessIdentities",
|
2279
2280
|
"http_method": "GET",
|
2280
2281
|
"http_path": "/2012-05-05/origin-access-identity/cloudfront?Marker={marker}&MaxItems={max_items}",
|
2282
|
+
"metadata": {
|
2283
|
+
"paging": {
|
2284
|
+
"tokens": {
|
2285
|
+
"marker": "next_marker"
|
2286
|
+
},
|
2287
|
+
"truncated_if": "is_truncated"
|
2288
|
+
}
|
2289
|
+
},
|
2281
2290
|
"input": {
|
2282
2291
|
"type": "input",
|
2283
2292
|
"members": {
|
@@ -2350,6 +2359,14 @@
|
|
2350
2359
|
"name": "ListDistributions",
|
2351
2360
|
"http_method": "GET",
|
2352
2361
|
"http_path": "/2012-05-05/distribution?Marker={marker}&MaxItems={max_items}",
|
2362
|
+
"metadata": {
|
2363
|
+
"paging": {
|
2364
|
+
"tokens": {
|
2365
|
+
"marker": "next_marker"
|
2366
|
+
},
|
2367
|
+
"truncated_if": "is_truncated"
|
2368
|
+
}
|
2369
|
+
},
|
2353
2370
|
"input": {
|
2354
2371
|
"type": "input",
|
2355
2372
|
"members": {
|
@@ -2638,6 +2655,14 @@
|
|
2638
2655
|
"name": "ListInvalidations",
|
2639
2656
|
"http_method": "GET",
|
2640
2657
|
"http_path": "/2012-05-05/distribution/{distribution_id}/invalidation?Marker={marker}&MaxItems={max_items}",
|
2658
|
+
"metadata": {
|
2659
|
+
"paging": {
|
2660
|
+
"tokens": {
|
2661
|
+
"marker": "next_marker"
|
2662
|
+
},
|
2663
|
+
"truncated_if": "is_truncated"
|
2664
|
+
}
|
2665
|
+
},
|
2641
2666
|
"input": {
|
2642
2667
|
"type": "input",
|
2643
2668
|
"members": {
|
@@ -2711,6 +2736,14 @@
|
|
2711
2736
|
"name": "ListStreamingDistributions",
|
2712
2737
|
"http_method": "GET",
|
2713
2738
|
"http_path": "/2012-05-05/streaming-distribution?Marker={marker}&MaxItems={max_items}",
|
2739
|
+
"metadata": {
|
2740
|
+
"paging": {
|
2741
|
+
"tokens": {
|
2742
|
+
"marker": "next_marker"
|
2743
|
+
},
|
2744
|
+
"truncated_if": "is_truncated"
|
2745
|
+
}
|
2746
|
+
},
|
2714
2747
|
"input": {
|
2715
2748
|
"type": "input",
|
2716
2749
|
"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::XmlProtocol",
|
30
31
|
"Aws::Plugins::SignatureV4"
|
@@ -2695,6 +2696,14 @@
|
|
2695
2696
|
"name": "ListCloudFrontOriginAccessIdentities",
|
2696
2697
|
"http_method": "GET",
|
2697
2698
|
"http_path": "/2013-05-12/origin-access-identity/cloudfront?Marker={marker}&MaxItems={max_items}",
|
2699
|
+
"metadata": {
|
2700
|
+
"paging": {
|
2701
|
+
"tokens": {
|
2702
|
+
"marker": "next_marker"
|
2703
|
+
},
|
2704
|
+
"truncated_if": "is_truncated"
|
2705
|
+
}
|
2706
|
+
},
|
2698
2707
|
"input": {
|
2699
2708
|
"type": "input",
|
2700
2709
|
"members": {
|
@@ -2767,6 +2776,14 @@
|
|
2767
2776
|
"name": "ListDistributions",
|
2768
2777
|
"http_method": "GET",
|
2769
2778
|
"http_path": "/2013-05-12/distribution?Marker={marker}&MaxItems={max_items}",
|
2779
|
+
"metadata": {
|
2780
|
+
"paging": {
|
2781
|
+
"tokens": {
|
2782
|
+
"marker": "next_marker"
|
2783
|
+
},
|
2784
|
+
"truncated_if": "is_truncated"
|
2785
|
+
}
|
2786
|
+
},
|
2770
2787
|
"input": {
|
2771
2788
|
"type": "input",
|
2772
2789
|
"members": {
|
@@ -3144,6 +3161,14 @@
|
|
3144
3161
|
"name": "ListInvalidations",
|
3145
3162
|
"http_method": "GET",
|
3146
3163
|
"http_path": "/2013-05-12/distribution/{distribution_id}/invalidation?Marker={marker}&MaxItems={max_items}",
|
3164
|
+
"metadata": {
|
3165
|
+
"paging": {
|
3166
|
+
"tokens": {
|
3167
|
+
"marker": "next_marker"
|
3168
|
+
},
|
3169
|
+
"truncated_if": "is_truncated"
|
3170
|
+
}
|
3171
|
+
},
|
3147
3172
|
"input": {
|
3148
3173
|
"type": "input",
|
3149
3174
|
"members": {
|
@@ -3221,6 +3246,14 @@
|
|
3221
3246
|
"name": "ListStreamingDistributions",
|
3222
3247
|
"http_method": "GET",
|
3223
3248
|
"http_path": "/2013-05-12/streaming-distribution?Marker={marker}&MaxItems={max_items}",
|
3249
|
+
"metadata": {
|
3250
|
+
"paging": {
|
3251
|
+
"tokens": {
|
3252
|
+
"marker": "next_marker"
|
3253
|
+
},
|
3254
|
+
"truncated_if": "is_truncated"
|
3255
|
+
}
|
3256
|
+
},
|
3224
3257
|
"input": {
|
3225
3258
|
"type": "input",
|
3226
3259
|
"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::XmlProtocol",
|
30
31
|
"Aws::Plugins::SignatureV4"
|
@@ -2841,6 +2842,14 @@
|
|
2841
2842
|
"name": "ListCloudFrontOriginAccessIdentities",
|
2842
2843
|
"http_method": "GET",
|
2843
2844
|
"http_path": "/2013-08-26/origin-access-identity/cloudfront?Marker={marker}&MaxItems={max_items}",
|
2845
|
+
"metadata": {
|
2846
|
+
"paging": {
|
2847
|
+
"tokens": {
|
2848
|
+
"marker": "next_marker"
|
2849
|
+
},
|
2850
|
+
"truncated_if": "is_truncated"
|
2851
|
+
}
|
2852
|
+
},
|
2844
2853
|
"input": {
|
2845
2854
|
"type": "input",
|
2846
2855
|
"members": {
|
@@ -2913,6 +2922,14 @@
|
|
2913
2922
|
"name": "ListDistributions",
|
2914
2923
|
"http_method": "GET",
|
2915
2924
|
"http_path": "/2013-08-26/distribution?Marker={marker}&MaxItems={max_items}",
|
2925
|
+
"metadata": {
|
2926
|
+
"paging": {
|
2927
|
+
"tokens": {
|
2928
|
+
"marker": "next_marker"
|
2929
|
+
},
|
2930
|
+
"truncated_if": "is_truncated"
|
2931
|
+
}
|
2932
|
+
},
|
2916
2933
|
"input": {
|
2917
2934
|
"type": "input",
|
2918
2935
|
"members": {
|
@@ -3326,6 +3343,14 @@
|
|
3326
3343
|
"name": "ListInvalidations",
|
3327
3344
|
"http_method": "GET",
|
3328
3345
|
"http_path": "/2013-08-26/distribution/{distribution_id}/invalidation?Marker={marker}&MaxItems={max_items}",
|
3346
|
+
"metadata": {
|
3347
|
+
"paging": {
|
3348
|
+
"tokens": {
|
3349
|
+
"marker": "next_marker"
|
3350
|
+
},
|
3351
|
+
"truncated_if": "is_truncated"
|
3352
|
+
}
|
3353
|
+
},
|
3329
3354
|
"input": {
|
3330
3355
|
"type": "input",
|
3331
3356
|
"members": {
|
@@ -3403,6 +3428,14 @@
|
|
3403
3428
|
"name": "ListStreamingDistributions",
|
3404
3429
|
"http_method": "GET",
|
3405
3430
|
"http_path": "/2013-08-26/streaming-distribution?Marker={marker}&MaxItems={max_items}",
|
3431
|
+
"metadata": {
|
3432
|
+
"paging": {
|
3433
|
+
"tokens": {
|
3434
|
+
"marker": "next_marker"
|
3435
|
+
},
|
3436
|
+
"truncated_if": "is_truncated"
|
3437
|
+
}
|
3438
|
+
},
|
3406
3439
|
"input": {
|
3407
3440
|
"type": "input",
|
3408
3441
|
"members": {
|