aws-sdk-appstream 1.58.0 → 1.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +970 -21
- data/lib/aws-sdk-appstream/client_api.rb +485 -1
- data/lib/aws-sdk-appstream/errors.rb +32 -0
- data/lib/aws-sdk-appstream/types.rb +1348 -86
- data/lib/aws-sdk-appstream.rb +2 -2
- metadata +4 -4
@@ -28,6 +28,8 @@ module Aws::AppStream
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {ConcurrentModificationException}
|
31
|
+
# * {EntitlementAlreadyExistsException}
|
32
|
+
# * {EntitlementNotFoundException}
|
31
33
|
# * {IncompatibleImageException}
|
32
34
|
# * {InvalidAccountStatusException}
|
33
35
|
# * {InvalidParameterCombinationException}
|
@@ -61,6 +63,36 @@ module Aws::AppStream
|
|
61
63
|
end
|
62
64
|
end
|
63
65
|
|
66
|
+
class EntitlementAlreadyExistsException < ServiceError
|
67
|
+
|
68
|
+
# @param [Seahorse::Client::RequestContext] context
|
69
|
+
# @param [String] message
|
70
|
+
# @param [Aws::AppStream::Types::EntitlementAlreadyExistsException] data
|
71
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
72
|
+
super(context, message, data)
|
73
|
+
end
|
74
|
+
|
75
|
+
# @return [String]
|
76
|
+
def message
|
77
|
+
@message || @data[:message]
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
class EntitlementNotFoundException < ServiceError
|
82
|
+
|
83
|
+
# @param [Seahorse::Client::RequestContext] context
|
84
|
+
# @param [String] message
|
85
|
+
# @param [Aws::AppStream::Types::EntitlementNotFoundException] data
|
86
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
87
|
+
super(context, message, data)
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [String]
|
91
|
+
def message
|
92
|
+
@message || @data[:message]
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
64
96
|
class IncompatibleImageException < ServiceError
|
65
97
|
|
66
98
|
# @param [Seahorse::Client::RequestContext] context
|