aws-sdk-pipes 1.18.0 → 1.20.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-pipes/client.rb +600 -515
- data/lib/aws-sdk-pipes/client_api.rb +180 -120
- data/lib/aws-sdk-pipes/errors.rb +14 -14
- data/lib/aws-sdk-pipes/types.rb +957 -690
- data/lib/aws-sdk-pipes/waiters.rb +15 -0
- data/lib/aws-sdk-pipes.rb +2 -1
- data/sig/client.rbs +402 -336
- data/sig/errors.rbs +3 -3
- data/sig/types.rbs +164 -124
- metadata +5 -4
data/sig/errors.rbs
CHANGED
@@ -25,20 +25,20 @@ module Aws
|
|
25
25
|
end
|
26
26
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
27
27
|
def message: () -> ::String
|
28
|
-
def quota_code: () -> ::String
|
29
28
|
def resource_id: () -> ::String
|
30
29
|
def resource_type: () -> ::String
|
31
30
|
def service_code: () -> ::String
|
31
|
+
def quota_code: () -> ::String
|
32
32
|
end
|
33
33
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
34
34
|
def message: () -> ::String
|
35
|
+
def service_code: () -> ::String
|
35
36
|
def quota_code: () -> ::String
|
36
37
|
def retry_after_seconds: () -> ::String
|
37
|
-
def service_code: () -> ::String
|
38
38
|
end
|
39
39
|
class ValidationException < ::Aws::Errors::ServiceError
|
40
|
-
def field_list: () -> ::String
|
41
40
|
def message: () -> ::String
|
41
|
+
def field_list: () -> ::String
|
42
42
|
end
|
43
43
|
end
|
44
44
|
end
|