aws-sdk-mediastore 1.14.0 → 1.15.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-mediastore.rb +1 -1
- data/lib/aws-sdk-mediastore/client.rb +1 -1
- data/lib/aws-sdk-mediastore/client_api.rb +18 -0
- data/lib/aws-sdk-mediastore/errors.rb +96 -0
- data/lib/aws-sdk-mediastore/types.rb +73 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 067b0adf6120a0bf83475d6c860775664d451030
|
4
|
+
data.tar.gz: 78d66ae8e1ff5eabfc81782cf787fc19712202e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a407ac639a635553d13cce65107178804e664be86ccc4d8417260be620762feaf68c652b530e15475a15ea51c068bed8dafeeece99852727b6dd9c74a1b871f
|
7
|
+
data.tar.gz: ed0356360d8a9c53144c411bef4af5956934c99f017681a6be913e7db0de2928aa8bb34d96f8c3a7ab84fbf208150eb3911da3edadd495320a42f4b96c95bdf4
|
data/lib/aws-sdk-mediastore.rb
CHANGED
@@ -85,10 +85,19 @@ module Aws::MediaStore
|
|
85
85
|
Container.add_member(:access_logging_enabled, Shapes::ShapeRef.new(shape: ContainerAccessLoggingEnabled, location_name: "AccessLoggingEnabled"))
|
86
86
|
Container.struct_class = Types::Container
|
87
87
|
|
88
|
+
ContainerInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
89
|
+
ContainerInUseException.struct_class = Types::ContainerInUseException
|
90
|
+
|
88
91
|
ContainerList.member = Shapes::ShapeRef.new(shape: Container)
|
89
92
|
|
93
|
+
ContainerNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
94
|
+
ContainerNotFoundException.struct_class = Types::ContainerNotFoundException
|
95
|
+
|
90
96
|
CorsPolicy.member = Shapes::ShapeRef.new(shape: CorsRule)
|
91
97
|
|
98
|
+
CorsPolicyNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
99
|
+
CorsPolicyNotFoundException.struct_class = Types::CorsPolicyNotFoundException
|
100
|
+
|
92
101
|
CorsRule.add_member(:allowed_origins, Shapes::ShapeRef.new(shape: AllowedOrigins, required: true, location_name: "AllowedOrigins"))
|
93
102
|
CorsRule.add_member(:allowed_methods, Shapes::ShapeRef.new(shape: AllowedMethods, location_name: "AllowedMethods"))
|
94
103
|
CorsRule.add_member(:allowed_headers, Shapes::ShapeRef.new(shape: AllowedHeaders, required: true, location_name: "AllowedHeaders"))
|
@@ -148,6 +157,12 @@ module Aws::MediaStore
|
|
148
157
|
GetLifecyclePolicyOutput.add_member(:lifecycle_policy, Shapes::ShapeRef.new(shape: LifecyclePolicy, required: true, location_name: "LifecyclePolicy"))
|
149
158
|
GetLifecyclePolicyOutput.struct_class = Types::GetLifecyclePolicyOutput
|
150
159
|
|
160
|
+
InternalServerError.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
161
|
+
InternalServerError.struct_class = Types::InternalServerError
|
162
|
+
|
163
|
+
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
164
|
+
LimitExceededException.struct_class = Types::LimitExceededException
|
165
|
+
|
151
166
|
ListContainersInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
152
167
|
ListContainersInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ContainerListLimit, location_name: "MaxResults"))
|
153
168
|
ListContainersInput.struct_class = Types::ListContainersInput
|
@@ -156,6 +171,9 @@ module Aws::MediaStore
|
|
156
171
|
ListContainersOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
157
172
|
ListContainersOutput.struct_class = Types::ListContainersOutput
|
158
173
|
|
174
|
+
PolicyNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
175
|
+
PolicyNotFoundException.struct_class = Types::PolicyNotFoundException
|
176
|
+
|
159
177
|
PutContainerPolicyInput.add_member(:container_name, Shapes::ShapeRef.new(shape: ContainerName, required: true, location_name: "ContainerName"))
|
160
178
|
PutContainerPolicyInput.add_member(:policy, Shapes::ShapeRef.new(shape: ContainerPolicy, required: true, location_name: "Policy"))
|
161
179
|
PutContainerPolicyInput.struct_class = Types::PutContainerPolicyInput
|
@@ -10,5 +10,101 @@ module Aws::MediaStore
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class ContainerInUseException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::MediaStore::Types::ContainerInUseException] 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 ContainerNotFoundException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::MediaStore::Types::ContainerNotFoundException] 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 CorsPolicyNotFoundException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::MediaStore::Types::CorsPolicyNotFoundException] 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 InternalServerError < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::MediaStore::Types::InternalServerError] 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
|
+
|
77
|
+
class LimitExceededException < ServiceError
|
78
|
+
|
79
|
+
# @param [Seahorse::Client::RequestContext] context
|
80
|
+
# @param [String] message
|
81
|
+
# @param [Aws::MediaStore::Types::LimitExceededException] data
|
82
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
83
|
+
super(context, message, data)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @return [String]
|
87
|
+
def message
|
88
|
+
@message || @data[:message]
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
92
|
+
|
93
|
+
class PolicyNotFoundException < ServiceError
|
94
|
+
|
95
|
+
# @param [Seahorse::Client::RequestContext] context
|
96
|
+
# @param [String] message
|
97
|
+
# @param [Aws::MediaStore::Types::PolicyNotFoundException] data
|
98
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
99
|
+
super(context, message, data)
|
100
|
+
end
|
101
|
+
|
102
|
+
# @return [String]
|
103
|
+
def message
|
104
|
+
@message || @data[:message]
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
108
|
+
|
13
109
|
end
|
14
110
|
end
|
@@ -65,6 +65,43 @@ module Aws::MediaStore
|
|
65
65
|
include Aws::Structure
|
66
66
|
end
|
67
67
|
|
68
|
+
# The container that you specified in the request already exists or is
|
69
|
+
# being updated.
|
70
|
+
#
|
71
|
+
# @!attribute [rw] message
|
72
|
+
# @return [String]
|
73
|
+
#
|
74
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-2017-09-01/ContainerInUseException AWS API Documentation
|
75
|
+
#
|
76
|
+
class ContainerInUseException < Struct.new(
|
77
|
+
:message)
|
78
|
+
include Aws::Structure
|
79
|
+
end
|
80
|
+
|
81
|
+
# The container that you specified in the request does not exist.
|
82
|
+
#
|
83
|
+
# @!attribute [rw] message
|
84
|
+
# @return [String]
|
85
|
+
#
|
86
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-2017-09-01/ContainerNotFoundException AWS API Documentation
|
87
|
+
#
|
88
|
+
class ContainerNotFoundException < Struct.new(
|
89
|
+
:message)
|
90
|
+
include Aws::Structure
|
91
|
+
end
|
92
|
+
|
93
|
+
# The CORS policy that you specified in the request does not exist.
|
94
|
+
#
|
95
|
+
# @!attribute [rw] message
|
96
|
+
# @return [String]
|
97
|
+
#
|
98
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-2017-09-01/CorsPolicyNotFoundException AWS API Documentation
|
99
|
+
#
|
100
|
+
class CorsPolicyNotFoundException < Struct.new(
|
101
|
+
:message)
|
102
|
+
include Aws::Structure
|
103
|
+
end
|
104
|
+
|
68
105
|
# A rule for a CORS policy. You can add up to 100 rules to a CORS
|
69
106
|
# policy. If more than one rule applies, the service uses the first
|
70
107
|
# applicable rule listed.
|
@@ -390,6 +427,30 @@ module Aws::MediaStore
|
|
390
427
|
include Aws::Structure
|
391
428
|
end
|
392
429
|
|
430
|
+
# The service is temporarily unavailable.
|
431
|
+
#
|
432
|
+
# @!attribute [rw] message
|
433
|
+
# @return [String]
|
434
|
+
#
|
435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-2017-09-01/InternalServerError AWS API Documentation
|
436
|
+
#
|
437
|
+
class InternalServerError < Struct.new(
|
438
|
+
:message)
|
439
|
+
include Aws::Structure
|
440
|
+
end
|
441
|
+
|
442
|
+
# A service limit has been exceeded.
|
443
|
+
#
|
444
|
+
# @!attribute [rw] message
|
445
|
+
# @return [String]
|
446
|
+
#
|
447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-2017-09-01/LimitExceededException AWS API Documentation
|
448
|
+
#
|
449
|
+
class LimitExceededException < Struct.new(
|
450
|
+
:message)
|
451
|
+
include Aws::Structure
|
452
|
+
end
|
453
|
+
|
393
454
|
# @note When making an API call, you may pass ListContainersInput
|
394
455
|
# data as a hash:
|
395
456
|
#
|
@@ -437,6 +498,18 @@ module Aws::MediaStore
|
|
437
498
|
include Aws::Structure
|
438
499
|
end
|
439
500
|
|
501
|
+
# The policy that you specified in the request does not exist.
|
502
|
+
#
|
503
|
+
# @!attribute [rw] message
|
504
|
+
# @return [String]
|
505
|
+
#
|
506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediastore-2017-09-01/PolicyNotFoundException AWS API Documentation
|
507
|
+
#
|
508
|
+
class PolicyNotFoundException < Struct.new(
|
509
|
+
:message)
|
510
|
+
include Aws::Structure
|
511
|
+
end
|
512
|
+
|
440
513
|
# @note When making an API call, you may pass PutContainerPolicyInput
|
441
514
|
# data as a hash:
|
442
515
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediastore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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
|