aws-sdk-mediastoredata 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-mediastoredata/client.rb +19 -5
- data/lib/aws-sdk-mediastoredata/types.rb +27 -9
- data/lib/aws-sdk-mediastoredata.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afaf4907d4d9db85b711297a56ccabb1c3228632
|
4
|
+
data.tar.gz: 225f5327a921ef0b6573722ac31c73430ad1c68f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48a7cbbca9683bf015bb55dca324e5854df7987e02e37cee89e6264eefbb3cf441cbf692f5fc47f7d276ad4c8f2b1ad5386024f291fa6034209db12e85f39253
|
7
|
+
data.tar.gz: c7edb9b4b439c579e11c2e8635ac6bed73d560c95bb46b1d9444e786de2995387bae1f307dde11f75c594b3fa2d6128a85b5bc024be982661e8ec95bb9e16562
|
@@ -329,11 +329,25 @@ module Aws::MediaStoreData
|
|
329
329
|
# <folder name>/<folder name>/<file name>
|
330
330
|
#
|
331
331
|
# @option params [Integer] :max_results
|
332
|
-
# The maximum results to return
|
332
|
+
# The maximum number of results to return per API request. For example,
|
333
|
+
# you submit a `ListItems` request with `MaxResults` set at 500.
|
334
|
+
# Although 2,000 items match your request, the service returns no more
|
335
|
+
# than the first 500 items. (The service also returns a `NextToken`
|
336
|
+
# value that you can use to fetch the next batch of results.) The
|
337
|
+
# service might return fewer results than the `MaxResults` value.
|
338
|
+
#
|
339
|
+
# If `MaxResults` is not included in the request, the service defaults
|
340
|
+
# to pagination with a maximum of 1,000 results per page.
|
333
341
|
#
|
334
342
|
# @option params [String] :next_token
|
335
|
-
# The
|
336
|
-
#
|
343
|
+
# The token that identifies which batch of results that you want to see.
|
344
|
+
# For example, you submit a `ListItems` request with `MaxResults` set at
|
345
|
+
# 500. The service returns the first batch of results (up to 500) and a
|
346
|
+
# `NextToken` value. To see the next batch of results, you can submit
|
347
|
+
# the `ListItems` request a second time and specify the `NextToken`
|
348
|
+
# value.
|
349
|
+
#
|
350
|
+
# Tokens expire after 15 minutes.
|
337
351
|
#
|
338
352
|
# @return [Types::ListItemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
339
353
|
#
|
@@ -369,7 +383,7 @@ module Aws::MediaStoreData
|
|
369
383
|
end
|
370
384
|
|
371
385
|
# Uploads an object to the specified path. Object sizes are limited to
|
372
|
-
#
|
386
|
+
# 25 MB.
|
373
387
|
#
|
374
388
|
# @option params [required, String, IO] :body
|
375
389
|
# The bytes to be stored.
|
@@ -470,7 +484,7 @@ module Aws::MediaStoreData
|
|
470
484
|
params: params,
|
471
485
|
config: config)
|
472
486
|
context[:gem_name] = 'aws-sdk-mediastoredata'
|
473
|
-
context[:gem_version] = '1.
|
487
|
+
context[:gem_version] = '1.7.0'
|
474
488
|
Seahorse::Client::Request.new(handlers, context)
|
475
489
|
end
|
476
490
|
|
@@ -262,13 +262,27 @@ module Aws::MediaStoreData
|
|
262
262
|
# @return [String]
|
263
263
|
#
|
264
264
|
# @!attribute [rw] max_results
|
265
|
-
# The maximum results to return
|
266
|
-
#
|
265
|
+
# The maximum number of results to return per API request. For
|
266
|
+
# example, you submit a `ListItems` request with `MaxResults` set at
|
267
|
+
# 500. Although 2,000 items match your request, the service returns no
|
268
|
+
# more than the first 500 items. (The service also returns a
|
269
|
+
# `NextToken` value that you can use to fetch the next batch of
|
270
|
+
# results.) The service might return fewer results than the
|
271
|
+
# `MaxResults` value.
|
272
|
+
#
|
273
|
+
# If `MaxResults` is not included in the request, the service defaults
|
274
|
+
# to pagination with a maximum of 1,000 results per page.
|
267
275
|
# @return [Integer]
|
268
276
|
#
|
269
277
|
# @!attribute [rw] next_token
|
270
|
-
# The
|
271
|
-
#
|
278
|
+
# The token that identifies which batch of results that you want to
|
279
|
+
# see. For example, you submit a `ListItems` request with `MaxResults`
|
280
|
+
# set at 500. The service returns the first batch of results (up to
|
281
|
+
# 500) and a `NextToken` value. To see the next batch of results, you
|
282
|
+
# can submit the `ListItems` request a second time and specify the
|
283
|
+
# `NextToken` value.
|
284
|
+
#
|
285
|
+
# Tokens expire after 15 minutes.
|
272
286
|
# @return [String]
|
273
287
|
#
|
274
288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/ListItemsRequest AWS API Documentation
|
@@ -281,12 +295,16 @@ module Aws::MediaStoreData
|
|
281
295
|
end
|
282
296
|
|
283
297
|
# @!attribute [rw] items
|
284
|
-
#
|
298
|
+
# The metadata entries for the folders and objects at the requested
|
299
|
+
# path.
|
285
300
|
# @return [Array<Types::Item>]
|
286
301
|
#
|
287
302
|
# @!attribute [rw] next_token
|
288
|
-
# The
|
289
|
-
# `ListItems
|
303
|
+
# The token that can be used in a request to view the next set of
|
304
|
+
# results. For example, you submit a `ListItems` request that matches
|
305
|
+
# 2,000 items with `MaxResults` set at 500. The service returns the
|
306
|
+
# first batch of results (up to 500) and a `NextToken` value that can
|
307
|
+
# be used to fetch the next batch of results.
|
290
308
|
# @return [String]
|
291
309
|
#
|
292
310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/ListItemsResponse AWS API Documentation
|
@@ -389,8 +407,8 @@ module Aws::MediaStoreData
|
|
389
407
|
# @return [String]
|
390
408
|
#
|
391
409
|
# @!attribute [rw] storage_class
|
392
|
-
# The storage class where the object was persisted.
|
393
|
-
# “Temporal”.
|
410
|
+
# The storage class where the object was persisted. The class should
|
411
|
+
# be “Temporal”.
|
394
412
|
# @return [String]
|
395
413
|
#
|
396
414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/PutObjectResponse AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediastoredata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|