aws-sdk-lambda 1.113.0 → 1.114.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-lambda/client.rb +1 -1
- data/lib/aws-sdk-lambda/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +1481 -0
- data/sig/errors.rbs +171 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +1449 -0
- data/sig/waiters.rbs +79 -0
- metadata +13 -8
data/sig/errors.rbs
ADDED
@@ -0,0 +1,171 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Lambda
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class CodeSigningConfigNotFoundException < ::Aws::Errors::ServiceError
|
15
|
+
def type: () -> ::String
|
16
|
+
def message: () -> ::String
|
17
|
+
end
|
18
|
+
class CodeStorageExceededException < ::Aws::Errors::ServiceError
|
19
|
+
def type: () -> ::String
|
20
|
+
def message: () -> ::String
|
21
|
+
end
|
22
|
+
class CodeVerificationFailedException < ::Aws::Errors::ServiceError
|
23
|
+
def type: () -> ::String
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class EC2AccessDeniedException < ::Aws::Errors::ServiceError
|
27
|
+
def type: () -> ::String
|
28
|
+
def message: () -> ::String
|
29
|
+
end
|
30
|
+
class EC2ThrottledException < ::Aws::Errors::ServiceError
|
31
|
+
def type: () -> ::String
|
32
|
+
def message: () -> ::String
|
33
|
+
end
|
34
|
+
class EC2UnexpectedException < ::Aws::Errors::ServiceError
|
35
|
+
def type: () -> ::String
|
36
|
+
def message: () -> ::String
|
37
|
+
def ec2_error_code: () -> ::String
|
38
|
+
end
|
39
|
+
class EFSIOException < ::Aws::Errors::ServiceError
|
40
|
+
def type: () -> ::String
|
41
|
+
def message: () -> ::String
|
42
|
+
end
|
43
|
+
class EFSMountConnectivityException < ::Aws::Errors::ServiceError
|
44
|
+
def type: () -> ::String
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
class EFSMountFailureException < ::Aws::Errors::ServiceError
|
48
|
+
def type: () -> ::String
|
49
|
+
def message: () -> ::String
|
50
|
+
end
|
51
|
+
class EFSMountTimeoutException < ::Aws::Errors::ServiceError
|
52
|
+
def type: () -> ::String
|
53
|
+
def message: () -> ::String
|
54
|
+
end
|
55
|
+
class ENILimitReachedException < ::Aws::Errors::ServiceError
|
56
|
+
def type: () -> ::String
|
57
|
+
def message: () -> ::String
|
58
|
+
end
|
59
|
+
class InvalidCodeSignatureException < ::Aws::Errors::ServiceError
|
60
|
+
def type: () -> ::String
|
61
|
+
def message: () -> ::String
|
62
|
+
end
|
63
|
+
class InvalidParameterValueException < ::Aws::Errors::ServiceError
|
64
|
+
def type: () -> ::String
|
65
|
+
def message: () -> ::String
|
66
|
+
end
|
67
|
+
class InvalidRequestContentException < ::Aws::Errors::ServiceError
|
68
|
+
def type: () -> ::String
|
69
|
+
def message: () -> ::String
|
70
|
+
end
|
71
|
+
class InvalidRuntimeException < ::Aws::Errors::ServiceError
|
72
|
+
def type: () -> ::String
|
73
|
+
def message: () -> ::String
|
74
|
+
end
|
75
|
+
class InvalidSecurityGroupIDException < ::Aws::Errors::ServiceError
|
76
|
+
def type: () -> ::String
|
77
|
+
def message: () -> ::String
|
78
|
+
end
|
79
|
+
class InvalidSubnetIDException < ::Aws::Errors::ServiceError
|
80
|
+
def type: () -> ::String
|
81
|
+
def message: () -> ::String
|
82
|
+
end
|
83
|
+
class InvalidZipFileException < ::Aws::Errors::ServiceError
|
84
|
+
def type: () -> ::String
|
85
|
+
def message: () -> ::String
|
86
|
+
end
|
87
|
+
class KMSAccessDeniedException < ::Aws::Errors::ServiceError
|
88
|
+
def type: () -> ::String
|
89
|
+
def message: () -> ::String
|
90
|
+
end
|
91
|
+
class KMSDisabledException < ::Aws::Errors::ServiceError
|
92
|
+
def type: () -> ::String
|
93
|
+
def message: () -> ::String
|
94
|
+
end
|
95
|
+
class KMSInvalidStateException < ::Aws::Errors::ServiceError
|
96
|
+
def type: () -> ::String
|
97
|
+
def message: () -> ::String
|
98
|
+
end
|
99
|
+
class KMSNotFoundException < ::Aws::Errors::ServiceError
|
100
|
+
def type: () -> ::String
|
101
|
+
def message: () -> ::String
|
102
|
+
end
|
103
|
+
class PolicyLengthExceededException < ::Aws::Errors::ServiceError
|
104
|
+
def type: () -> ::String
|
105
|
+
def message: () -> ::String
|
106
|
+
end
|
107
|
+
class PreconditionFailedException < ::Aws::Errors::ServiceError
|
108
|
+
def type: () -> ::String
|
109
|
+
def message: () -> ::String
|
110
|
+
end
|
111
|
+
class ProvisionedConcurrencyConfigNotFoundException < ::Aws::Errors::ServiceError
|
112
|
+
def type: () -> ::String
|
113
|
+
def message: () -> ::String
|
114
|
+
end
|
115
|
+
class RecursiveInvocationException < ::Aws::Errors::ServiceError
|
116
|
+
def type: () -> ::String
|
117
|
+
def message: () -> ::String
|
118
|
+
end
|
119
|
+
class RequestTooLargeException < ::Aws::Errors::ServiceError
|
120
|
+
def type: () -> ::String
|
121
|
+
def message: () -> ::String
|
122
|
+
end
|
123
|
+
class ResourceConflictException < ::Aws::Errors::ServiceError
|
124
|
+
def type: () -> ::String
|
125
|
+
def message: () -> ::String
|
126
|
+
end
|
127
|
+
class ResourceInUseException < ::Aws::Errors::ServiceError
|
128
|
+
def type: () -> ::String
|
129
|
+
def message: () -> ::String
|
130
|
+
end
|
131
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
132
|
+
def type: () -> ::String
|
133
|
+
def message: () -> ::String
|
134
|
+
end
|
135
|
+
class ResourceNotReadyException < ::Aws::Errors::ServiceError
|
136
|
+
def type: () -> ::String
|
137
|
+
def message: () -> ::String
|
138
|
+
end
|
139
|
+
class ServiceException < ::Aws::Errors::ServiceError
|
140
|
+
def type: () -> ::String
|
141
|
+
def message: () -> ::String
|
142
|
+
end
|
143
|
+
class SnapStartException < ::Aws::Errors::ServiceError
|
144
|
+
def type: () -> ::String
|
145
|
+
def message: () -> ::String
|
146
|
+
end
|
147
|
+
class SnapStartNotReadyException < ::Aws::Errors::ServiceError
|
148
|
+
def type: () -> ::String
|
149
|
+
def message: () -> ::String
|
150
|
+
end
|
151
|
+
class SnapStartTimeoutException < ::Aws::Errors::ServiceError
|
152
|
+
def type: () -> ::String
|
153
|
+
def message: () -> ::String
|
154
|
+
end
|
155
|
+
class SubnetIPAddressLimitReachedException < ::Aws::Errors::ServiceError
|
156
|
+
def type: () -> ::String
|
157
|
+
def message: () -> ::String
|
158
|
+
end
|
159
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
160
|
+
def retry_after_seconds: () -> ::String
|
161
|
+
def type: () -> ::String
|
162
|
+
def message: () -> ::String
|
163
|
+
def reason: () -> ::String
|
164
|
+
end
|
165
|
+
class UnsupportedMediaTypeException < ::Aws::Errors::ServiceError
|
166
|
+
def type: () -> ::String
|
167
|
+
def message: () -> ::String
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Lambda
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?event_stream_handler: Proc,
|
36
|
+
?ignore_configured_endpoint_urls: bool,
|
37
|
+
?input_event_stream_handler: Proc,
|
38
|
+
?log_formatter: untyped,
|
39
|
+
?log_level: Symbol,
|
40
|
+
?logger: untyped,
|
41
|
+
?max_attempts: Integer,
|
42
|
+
?output_event_stream_handler: Proc,
|
43
|
+
?profile: String,
|
44
|
+
?request_min_compression_size_bytes: Integer,
|
45
|
+
?retry_backoff: Proc,
|
46
|
+
?retry_base_delay: Float,
|
47
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
48
|
+
?retry_limit: Integer,
|
49
|
+
?retry_max_delay: Integer,
|
50
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
51
|
+
?sdk_ua_app_id: String,
|
52
|
+
?secret_access_key: String,
|
53
|
+
?session_token: String,
|
54
|
+
?stub_responses: untyped,
|
55
|
+
?token_provider: untyped,
|
56
|
+
?use_dualstack_endpoint: bool,
|
57
|
+
?use_fips_endpoint: bool,
|
58
|
+
?validate_params: bool,
|
59
|
+
?endpoint_provider: untyped,
|
60
|
+
?http_proxy: String,
|
61
|
+
?http_open_timeout: (Float | Integer),
|
62
|
+
?http_read_timeout: (Float | Integer),
|
63
|
+
?http_idle_timeout: (Float | Integer),
|
64
|
+
?http_continue_timeout: (Float | Integer),
|
65
|
+
?ssl_timeout: (Float | Integer | nil),
|
66
|
+
?http_wire_trace: bool,
|
67
|
+
?ssl_verify_peer: bool,
|
68
|
+
?ssl_ca_bundle: String,
|
69
|
+
?ssl_ca_directory: String,
|
70
|
+
?ssl_ca_store: String,
|
71
|
+
?on_chunk_received: Proc,
|
72
|
+
?on_chunk_sent: Proc,
|
73
|
+
?raise_response_errors: bool
|
74
|
+
) -> void
|
75
|
+
| (?Hash[Symbol, untyped]) -> void
|
76
|
+
|
77
|
+
def client: () -> Client
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|