aws-sdk-marketplaceentitlementservice 1.11.0 → 1.12.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-marketplaceentitlementservice.rb +1 -1
- data/lib/aws-sdk-marketplaceentitlementservice/client.rb +1 -1
- data/lib/aws-sdk-marketplaceentitlementservice/client_api.rb +9 -0
- data/lib/aws-sdk-marketplaceentitlementservice/errors.rb +48 -0
- data/lib/aws-sdk-marketplaceentitlementservice/types.rb +37 -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: f13794e9f818a7da2b42e639bbb8cbee767a2f1f
|
4
|
+
data.tar.gz: 0bec9d8a7abb5acc83e2d9414936d71df30f9ecc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9d3945b8d7b276e709cecca3b09cf867247b7c46dad7ff8bf020560473d73de3c11e80f3e6ed7f28d41dde2549c0889f06e7cbd346b7c01c020bbc0c477aa7f
|
7
|
+
data.tar.gz: b288887fa4b28172192ef86081c92875797168af05460c32761b9b3baf1974396444706c154f3f67e59c5a70657026b8a605158129b2d6c152236cd61bbb2126
|
@@ -335,7 +335,7 @@ module Aws::MarketplaceEntitlementService
|
|
335
335
|
params: params,
|
336
336
|
config: config)
|
337
337
|
context[:gem_name] = 'aws-sdk-marketplaceentitlementservice'
|
338
|
-
context[:gem_version] = '1.
|
338
|
+
context[:gem_version] = '1.12.0'
|
339
339
|
Seahorse::Client::Request.new(handlers, context)
|
340
340
|
end
|
341
341
|
|
@@ -62,6 +62,15 @@ module Aws::MarketplaceEntitlementService
|
|
62
62
|
GetEntitlementsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "NextToken"))
|
63
63
|
GetEntitlementsResult.struct_class = Types::GetEntitlementsResult
|
64
64
|
|
65
|
+
InternalServiceErrorException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
66
|
+
InternalServiceErrorException.struct_class = Types::InternalServiceErrorException
|
67
|
+
|
68
|
+
InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
69
|
+
InvalidParameterException.struct_class = Types::InvalidParameterException
|
70
|
+
|
71
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
72
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
73
|
+
|
65
74
|
|
66
75
|
# @api private
|
67
76
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -10,5 +10,53 @@ module Aws::MarketplaceEntitlementService
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class InternalServiceErrorException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::MarketplaceEntitlementService::Types::InternalServiceErrorException] 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 InvalidParameterException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::MarketplaceEntitlementService::Types::InvalidParameterException] 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 ThrottlingException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::MarketplaceEntitlementService::Types::ThrottlingException] 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
|
+
|
13
61
|
end
|
14
62
|
end
|
@@ -163,5 +163,42 @@ module Aws::MarketplaceEntitlementService
|
|
163
163
|
include Aws::Structure
|
164
164
|
end
|
165
165
|
|
166
|
+
# An internal error has occurred. Retry your request. If the problem
|
167
|
+
# persists, post a message with details on the AWS forums.
|
168
|
+
#
|
169
|
+
# @!attribute [rw] message
|
170
|
+
# @return [String]
|
171
|
+
#
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/entitlement.marketplace-2017-01-11/InternalServiceErrorException AWS API Documentation
|
173
|
+
#
|
174
|
+
class InternalServiceErrorException < Struct.new(
|
175
|
+
:message)
|
176
|
+
include Aws::Structure
|
177
|
+
end
|
178
|
+
|
179
|
+
# One or more parameters in your request was invalid.
|
180
|
+
#
|
181
|
+
# @!attribute [rw] message
|
182
|
+
# @return [String]
|
183
|
+
#
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/entitlement.marketplace-2017-01-11/InvalidParameterException AWS API Documentation
|
185
|
+
#
|
186
|
+
class InvalidParameterException < Struct.new(
|
187
|
+
:message)
|
188
|
+
include Aws::Structure
|
189
|
+
end
|
190
|
+
|
191
|
+
# The calls to the GetEntitlements API are throttled.
|
192
|
+
#
|
193
|
+
# @!attribute [rw] message
|
194
|
+
# @return [String]
|
195
|
+
#
|
196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/entitlement.marketplace-2017-01-11/ThrottlingException AWS API Documentation
|
197
|
+
#
|
198
|
+
class ThrottlingException < Struct.new(
|
199
|
+
:message)
|
200
|
+
include Aws::Structure
|
201
|
+
end
|
202
|
+
|
166
203
|
end
|
167
204
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-marketplaceentitlementservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.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
|