aws-sdk-securityhub 1.136.0 → 1.137.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-securityhub/client.rb +2070 -456
- data/lib/aws-sdk-securityhub/client_api.rb +1081 -0
- data/lib/aws-sdk-securityhub/errors.rb +84 -0
- data/lib/aws-sdk-securityhub/types.rb +2364 -58
- data/lib/aws-sdk-securityhub.rb +1 -1
- data/sig/client.rbs +1094 -343
- data/sig/errors.rbs +16 -0
- data/sig/types.rbs +696 -2
- metadata +1 -1
data/sig/errors.rbs
CHANGED
@@ -15,10 +15,18 @@ module Aws
|
|
15
15
|
def message: () -> ::String
|
16
16
|
def code: () -> ::String
|
17
17
|
end
|
18
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
19
|
+
def message: () -> ::String
|
20
|
+
def code: () -> ::String
|
21
|
+
end
|
18
22
|
class InternalException < ::Aws::Errors::ServiceError
|
19
23
|
def message: () -> ::String
|
20
24
|
def code: () -> ::String
|
21
25
|
end
|
26
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
def code: () -> ::String
|
29
|
+
end
|
22
30
|
class InvalidAccessException < ::Aws::Errors::ServiceError
|
23
31
|
def message: () -> ::String
|
24
32
|
def code: () -> ::String
|
@@ -43,6 +51,14 @@ module Aws
|
|
43
51
|
def message: () -> ::String
|
44
52
|
def code: () -> ::String
|
45
53
|
end
|
54
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
55
|
+
def message: () -> ::String
|
56
|
+
def code: () -> ::String
|
57
|
+
end
|
58
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
59
|
+
def message: () -> ::String
|
60
|
+
def code: () -> ::String
|
61
|
+
end
|
46
62
|
end
|
47
63
|
end
|
48
64
|
end
|