aws-sdk-connect 1.185.0 → 1.186.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +788 -64
- data/lib/aws-sdk-connect/client_api.rb +542 -1
- data/lib/aws-sdk-connect/errors.rb +21 -0
- data/lib/aws-sdk-connect/types.rb +1070 -34
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +401 -45
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +405 -39
- metadata +2 -2
data/sig/errors.rbs
CHANGED
@@ -14,6 +14,9 @@ module Aws
|
|
14
14
|
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
15
|
def message: () -> ::String
|
16
16
|
end
|
17
|
+
class ConditionalOperationFailedException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
17
20
|
class ConflictException < ::Aws::Errors::ServiceError
|
18
21
|
def message: () -> ::String
|
19
22
|
end
|
@@ -80,6 +83,7 @@ module Aws
|
|
80
83
|
end
|
81
84
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
82
85
|
def message: () -> ::String
|
86
|
+
def reason: () -> ::String
|
83
87
|
end
|
84
88
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
85
89
|
def message: () -> ::String
|