aws-sdk-connect 1.185.0 → 1.186.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-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
|