aws-sdk-iotmanagedintegrations 1.3.0 → 1.4.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +1374 -32
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +939 -12
- data/lib/aws-sdk-iotmanagedintegrations/errors.rb +42 -0
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +1776 -85
- data/lib/aws-sdk-iotmanagedintegrations.rb +2 -2
- data/sig/client.rbs +437 -10
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +504 -12
- metadata +1 -1
data/sig/errors.rbs
CHANGED
@@ -23,8 +23,16 @@ module Aws
|
|
23
23
|
class InternalServerException < ::Aws::Errors::ServiceError
|
24
24
|
def message: () -> ::String
|
25
25
|
end
|
26
|
+
class InvalidRequestException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
26
32
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
27
33
|
def message: () -> ::String
|
34
|
+
def resource_id: () -> ::String
|
35
|
+
def resource_type: () -> ::String
|
28
36
|
end
|
29
37
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
30
38
|
def message: () -> ::String
|