aws-sdk-mediastoredata 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0e03803a2ca96857bb3d1e82d2ab185ca63687f3
4
- data.tar.gz: 7c0c0c671374637360a19aa5d66f6a7448e16024
3
+ metadata.gz: afaf4907d4d9db85b711297a56ccabb1c3228632
4
+ data.tar.gz: 225f5327a921ef0b6573722ac31c73430ad1c68f
5
5
  SHA512:
6
- metadata.gz: 38972bad26e3925d988fa425874e4b428c14afbcc014dce1c66c58d33154ff32e6afce0bf4d4922eb9f86d8b2cc95a5c6a1b29405a2ae2b28cef0453b17bad60
7
- data.tar.gz: 0d0417df13ab3bbf20e43a6c31c817e8349bb36c3b3baf99392d74da2d3321cbb7a3c9d22c800ef48c50f0796e41bd6807224a1555cbc93139255a66d8a4b355
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. The service might return fewer results.
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 `NextToken` received in the `ListItemsResponse` for the same
336
- # container and path. Tokens expire after 15 minutes.
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
- # 10 MB.
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.6.0'
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. The service might return fewer
266
- # results.
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 `NextToken` received in the `ListItemsResponse` for the same
271
- # container and path. Tokens expire after 15 minutes.
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
- # Metadata entries for the folders and objects at the requested path.
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 `NextToken` used to request the next page of results using
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. Should be
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
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mediastoredata/customizations'
42
42
  # @service
43
43
  module Aws::MediaStoreData
44
44
 
45
- GEM_VERSION = '1.6.0'
45
+ GEM_VERSION = '1.7.0'
46
46
 
47
47
  end
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.6.0
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-24 00:00:00.000000000 Z
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