aws-sdk-appflow 1.17.0 → 1.21.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appflow/client.rb +528 -26
- data/lib/aws-sdk-appflow/client_api.rb +339 -1
- data/lib/aws-sdk-appflow/errors.rb +32 -0
- data/lib/aws-sdk-appflow/types.rb +1346 -36
- data/lib/aws-sdk-appflow.rb +1 -1
- metadata +4 -4
@@ -27,12 +27,14 @@ module Aws::Appflow
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
30
31
|
# * {ConflictException}
|
31
32
|
# * {ConnectorAuthenticationException}
|
32
33
|
# * {ConnectorServerException}
|
33
34
|
# * {InternalServerException}
|
34
35
|
# * {ResourceNotFoundException}
|
35
36
|
# * {ServiceQuotaExceededException}
|
37
|
+
# * {ThrottlingException}
|
36
38
|
# * {UnsupportedOperationException}
|
37
39
|
# * {ValidationException}
|
38
40
|
#
|
@@ -42,6 +44,21 @@ module Aws::Appflow
|
|
42
44
|
|
43
45
|
extend Aws::Errors::DynamicErrors
|
44
46
|
|
47
|
+
class AccessDeniedException < ServiceError
|
48
|
+
|
49
|
+
# @param [Seahorse::Client::RequestContext] context
|
50
|
+
# @param [String] message
|
51
|
+
# @param [Aws::Appflow::Types::AccessDeniedException] data
|
52
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
53
|
+
super(context, message, data)
|
54
|
+
end
|
55
|
+
|
56
|
+
# @return [String]
|
57
|
+
def message
|
58
|
+
@message || @data[:message]
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
45
62
|
class ConflictException < ServiceError
|
46
63
|
|
47
64
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -132,6 +149,21 @@ module Aws::Appflow
|
|
132
149
|
end
|
133
150
|
end
|
134
151
|
|
152
|
+
class ThrottlingException < ServiceError
|
153
|
+
|
154
|
+
# @param [Seahorse::Client::RequestContext] context
|
155
|
+
# @param [String] message
|
156
|
+
# @param [Aws::Appflow::Types::ThrottlingException] data
|
157
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
158
|
+
super(context, message, data)
|
159
|
+
end
|
160
|
+
|
161
|
+
# @return [String]
|
162
|
+
def message
|
163
|
+
@message || @data[:message]
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
135
167
|
class UnsupportedOperationException < ServiceError
|
136
168
|
|
137
169
|
# @param [Seahorse::Client::RequestContext] context
|