aws-sdk-mediastoredata 1.13.0 → 1.14.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: caf360aead31bd9d75c90bec242d66faad95b264
|
4
|
+
data.tar.gz: d4542507d3adf955d476dcd826d72409922398ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b882632f3fd4b3463b1785b3585dd72e704ac788195b0eead37f0934aea5071375e59503688c6005a07bffe55e2ceb04f29caf5c10ef26f46d831afe98f07455
|
7
|
+
data.tar.gz: 6ace6fed4e410f32845dd77e4a7e6eca16f5685f88fe5c32edb9503560ed1713c4eb89a44a9128e19103265c6285a45440c3644ac9d4361c796e1c3588d9ff5f
|
@@ -556,7 +556,7 @@ module Aws::MediaStoreData
|
|
556
556
|
params: params,
|
557
557
|
config: config)
|
558
558
|
context[:gem_name] = 'aws-sdk-mediastoredata'
|
559
|
-
context[:gem_version] = '1.
|
559
|
+
context[:gem_version] = '1.14.0'
|
560
560
|
Seahorse::Client::Request.new(handlers, context)
|
561
561
|
end
|
562
562
|
|
@@ -46,6 +46,9 @@ module Aws::MediaStoreData
|
|
46
46
|
TimeStamp = Shapes::TimestampShape.new(name: 'TimeStamp')
|
47
47
|
statusCode = Shapes::IntegerShape.new(name: 'statusCode')
|
48
48
|
|
49
|
+
ContainerNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
50
|
+
ContainerNotFoundException.struct_class = Types::ContainerNotFoundException
|
51
|
+
|
49
52
|
DeleteObjectRequest.add_member(:path, Shapes::ShapeRef.new(shape: PathNaming, required: true, location: "uri", location_name: "Path"))
|
50
53
|
DeleteObjectRequest.struct_class = Types::DeleteObjectRequest
|
51
54
|
|
@@ -77,6 +80,9 @@ module Aws::MediaStoreData
|
|
77
80
|
GetObjectResponse[:payload] = :body
|
78
81
|
GetObjectResponse[:payload_member] = GetObjectResponse.member(:body)
|
79
82
|
|
83
|
+
InternalServerError.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
84
|
+
InternalServerError.struct_class = Types::InternalServerError
|
85
|
+
|
80
86
|
Item.add_member(:name, Shapes::ShapeRef.new(shape: ItemName, location_name: "Name"))
|
81
87
|
Item.add_member(:type, Shapes::ShapeRef.new(shape: ItemType, location_name: "Type"))
|
82
88
|
Item.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
@@ -96,6 +102,9 @@ module Aws::MediaStoreData
|
|
96
102
|
ListItemsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
97
103
|
ListItemsResponse.struct_class = Types::ListItemsResponse
|
98
104
|
|
105
|
+
ObjectNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
106
|
+
ObjectNotFoundException.struct_class = Types::ObjectNotFoundException
|
107
|
+
|
99
108
|
PutObjectRequest.add_member(:body, Shapes::ShapeRef.new(shape: PayloadBlob, required: true, location_name: "Body"))
|
100
109
|
PutObjectRequest.add_member(:path, Shapes::ShapeRef.new(shape: PathNaming, required: true, location: "uri", location_name: "Path"))
|
101
110
|
PutObjectRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
@@ -110,6 +119,9 @@ module Aws::MediaStoreData
|
|
110
119
|
PutObjectResponse.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
111
120
|
PutObjectResponse.struct_class = Types::PutObjectResponse
|
112
121
|
|
122
|
+
RequestedRangeNotSatisfiableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
123
|
+
RequestedRangeNotSatisfiableException.struct_class = Types::RequestedRangeNotSatisfiableException
|
124
|
+
|
113
125
|
|
114
126
|
# @api private
|
115
127
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -10,5 +10,69 @@ module Aws::MediaStoreData
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class ContainerNotFoundException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::MediaStoreData::Types::ContainerNotFoundException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def message
|
24
|
+
@message || @data[:message]
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
class InternalServerError < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::MediaStoreData::Types::InternalServerError] data
|
34
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
35
|
+
super(context, message, data)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
def message
|
40
|
+
@message || @data[:message]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
class ObjectNotFoundException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::MediaStoreData::Types::ObjectNotFoundException] data
|
50
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
51
|
+
super(context, message, data)
|
52
|
+
end
|
53
|
+
|
54
|
+
# @return [String]
|
55
|
+
def message
|
56
|
+
@message || @data[:message]
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
class RequestedRangeNotSatisfiableException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::MediaStoreData::Types::RequestedRangeNotSatisfiableException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def message
|
72
|
+
@message || @data[:message]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
13
77
|
end
|
14
78
|
end
|
@@ -8,6 +8,18 @@
|
|
8
8
|
module Aws::MediaStoreData
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# The specified container was not found for the specified account.
|
12
|
+
#
|
13
|
+
# @!attribute [rw] message
|
14
|
+
# @return [String]
|
15
|
+
#
|
16
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/ContainerNotFoundException AWS API Documentation
|
17
|
+
#
|
18
|
+
class ContainerNotFoundException < Struct.new(
|
19
|
+
:message)
|
20
|
+
include Aws::Structure
|
21
|
+
end
|
22
|
+
|
11
23
|
# @note When making an API call, you may pass DeleteObjectRequest
|
12
24
|
# data as a hash:
|
13
25
|
#
|
@@ -209,6 +221,18 @@ module Aws::MediaStoreData
|
|
209
221
|
include Aws::Structure
|
210
222
|
end
|
211
223
|
|
224
|
+
# The service is temporarily unavailable.
|
225
|
+
#
|
226
|
+
# @!attribute [rw] message
|
227
|
+
# @return [String]
|
228
|
+
#
|
229
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/InternalServerError AWS API Documentation
|
230
|
+
#
|
231
|
+
class InternalServerError < Struct.new(
|
232
|
+
:message)
|
233
|
+
include Aws::Structure
|
234
|
+
end
|
235
|
+
|
212
236
|
# A metadata entry for a folder or object.
|
213
237
|
#
|
214
238
|
# @!attribute [rw] name
|
@@ -315,6 +339,18 @@ module Aws::MediaStoreData
|
|
315
339
|
include Aws::Structure
|
316
340
|
end
|
317
341
|
|
342
|
+
# Could not perform an operation on an object that does not exist.
|
343
|
+
#
|
344
|
+
# @!attribute [rw] message
|
345
|
+
# @return [String]
|
346
|
+
#
|
347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/ObjectNotFoundException AWS API Documentation
|
348
|
+
#
|
349
|
+
class ObjectNotFoundException < Struct.new(
|
350
|
+
:message)
|
351
|
+
include Aws::Structure
|
352
|
+
end
|
353
|
+
|
318
354
|
# @note When making an API call, you may pass PutObjectRequest
|
319
355
|
# data as a hash:
|
320
356
|
#
|
@@ -420,5 +456,17 @@ module Aws::MediaStoreData
|
|
420
456
|
include Aws::Structure
|
421
457
|
end
|
422
458
|
|
459
|
+
# The requested content range is not valid.
|
460
|
+
#
|
461
|
+
# @!attribute [rw] message
|
462
|
+
# @return [String]
|
463
|
+
#
|
464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-data-2017-09-01/RequestedRangeNotSatisfiableException AWS API Documentation
|
465
|
+
#
|
466
|
+
class RequestedRangeNotSatisfiableException < Struct.new(
|
467
|
+
:message)
|
468
|
+
include Aws::Structure
|
469
|
+
end
|
470
|
+
|
423
471
|
end
|
424
472
|
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.
|
4
|
+
version: 1.14.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: 2019-05-
|
11
|
+
date: 2019-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.53.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|