aws-sdk-mediaconnect 1.89.0 → 1.91.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +2596 -69
- data/lib/aws-sdk-mediaconnect/client_api.rb +1466 -0
- data/lib/aws-sdk-mediaconnect/errors.rb +48 -0
- data/lib/aws-sdk-mediaconnect/types.rb +4283 -714
- data/lib/aws-sdk-mediaconnect/waiters.rb +443 -5
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +938 -6
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +1101 -0
- data/sig/waiters.rbs +70 -0
- metadata +3 -3
|
@@ -37,6 +37,9 @@ module Aws::MediaConnect
|
|
|
37
37
|
# * {GrantFlowEntitlements420Exception}
|
|
38
38
|
# * {InternalServerErrorException}
|
|
39
39
|
# * {NotFoundException}
|
|
40
|
+
# * {RouterInputServiceQuotaExceededException}
|
|
41
|
+
# * {RouterNetworkInterfaceServiceQuotaExceededException}
|
|
42
|
+
# * {RouterOutputServiceQuotaExceededException}
|
|
40
43
|
# * {ServiceUnavailableException}
|
|
41
44
|
# * {TooManyRequestsException}
|
|
42
45
|
#
|
|
@@ -204,6 +207,51 @@ module Aws::MediaConnect
|
|
|
204
207
|
end
|
|
205
208
|
end
|
|
206
209
|
|
|
210
|
+
class RouterInputServiceQuotaExceededException < ServiceError
|
|
211
|
+
|
|
212
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
213
|
+
# @param [String] message
|
|
214
|
+
# @param [Aws::MediaConnect::Types::RouterInputServiceQuotaExceededException] data
|
|
215
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
216
|
+
super(context, message, data)
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
# @return [String]
|
|
220
|
+
def message
|
|
221
|
+
@message || @data[:message]
|
|
222
|
+
end
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
class RouterNetworkInterfaceServiceQuotaExceededException < ServiceError
|
|
226
|
+
|
|
227
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
228
|
+
# @param [String] message
|
|
229
|
+
# @param [Aws::MediaConnect::Types::RouterNetworkInterfaceServiceQuotaExceededException] data
|
|
230
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
231
|
+
super(context, message, data)
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
# @return [String]
|
|
235
|
+
def message
|
|
236
|
+
@message || @data[:message]
|
|
237
|
+
end
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
class RouterOutputServiceQuotaExceededException < ServiceError
|
|
241
|
+
|
|
242
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
243
|
+
# @param [String] message
|
|
244
|
+
# @param [Aws::MediaConnect::Types::RouterOutputServiceQuotaExceededException] data
|
|
245
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
246
|
+
super(context, message, data)
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
# @return [String]
|
|
250
|
+
def message
|
|
251
|
+
@message || @data[:message]
|
|
252
|
+
end
|
|
253
|
+
end
|
|
254
|
+
|
|
207
255
|
class ServiceUnavailableException < ServiceError
|
|
208
256
|
|
|
209
257
|
# @param [Seahorse::Client::RequestContext] context
|