aws-sdk-lambdapreview 1.19.0 → 1.24.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/lib/aws-sdk-lambdapreview.rb +5 -2
- data/lib/aws-sdk-lambdapreview/client.rb +30 -11
- data/lib/aws-sdk-lambdapreview/client_api.rb +2 -0
- data/lib/aws-sdk-lambdapreview/customizations.rb +1 -0
- data/lib/aws-sdk-lambdapreview/errors.rb +2 -0
- data/lib/aws-sdk-lambdapreview/resource.rb +2 -0
- data/lib/aws-sdk-lambdapreview/types.rb +24 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c404e4a44a0c69e8c03b8b3e0344a92532f0804fddcb96373169a985a3747254
|
4
|
+
data.tar.gz: d47efd15bee2f0cf243dc5917aa3e05eeb56350a5dd00574e4e10ee3b46d9151
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e118dd9fee6a5db62e2bcc9938d77741ef877673675242f27bb6d4ae8388c9c3a7b9073b4bc62b1c3b69a47095fe778c735e79f588e00077425413aa7c5974a3
|
7
|
+
data.tar.gz: dc70089de22bc98b9d8c441c4d72a3e54c53b1094c7a8747d01aef0e3e15386d5d9f9cbcac329840a8c412d9ad15885464169e5a00b50c2bf2a5bfaa5c22f1c5
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-lambdapreview/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::LambdaPreview
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.24.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::LambdaPreview
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::LambdaPreview
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::LambdaPreview
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::LambdaPreview
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -603,7 +622,7 @@ module Aws::LambdaPreview
|
|
603
622
|
# @option params [required, String] :function_name
|
604
623
|
# The Lambda function name.
|
605
624
|
#
|
606
|
-
# @option params [required, String,
|
625
|
+
# @option params [required, String, StringIO, File] :invoke_args
|
607
626
|
# JSON that you want to provide to your Lambda function as input.
|
608
627
|
#
|
609
628
|
# @return [Types::InvokeAsyncResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -880,7 +899,7 @@ module Aws::LambdaPreview
|
|
880
899
|
# ListFunctions API. Function names are used to specify functions to
|
881
900
|
# other AWS Lambda APIs, such as InvokeAsync.
|
882
901
|
#
|
883
|
-
# @option params [required, String,
|
902
|
+
# @option params [required, String, StringIO, File] :function_zip
|
884
903
|
# A .zip file containing your packaged source code. For more information
|
885
904
|
# about creating a .zip file, go to [AWS LambdaL How it Works][1] in the
|
886
905
|
# AWS Lambda Developer Guide.
|
@@ -990,7 +1009,7 @@ module Aws::LambdaPreview
|
|
990
1009
|
params: params,
|
991
1010
|
config: config)
|
992
1011
|
context[:gem_name] = 'aws-sdk-lambdapreview'
|
993
|
-
context[:gem_version] = '1.
|
1012
|
+
context[:gem_version] = '1.24.0'
|
994
1013
|
Seahorse::Client::Request.new(handlers, context)
|
995
1014
|
end
|
996
1015
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -64,6 +66,7 @@ module Aws::LambdaPreview
|
|
64
66
|
:role,
|
65
67
|
:batch_size,
|
66
68
|
:parameters)
|
69
|
+
SENSITIVE = []
|
67
70
|
include Aws::Structure
|
68
71
|
end
|
69
72
|
|
@@ -82,6 +85,7 @@ module Aws::LambdaPreview
|
|
82
85
|
#
|
83
86
|
class DeleteFunctionRequest < Struct.new(
|
84
87
|
:function_name)
|
88
|
+
SENSITIVE = []
|
85
89
|
include Aws::Structure
|
86
90
|
end
|
87
91
|
|
@@ -146,6 +150,7 @@ module Aws::LambdaPreview
|
|
146
150
|
:last_modified,
|
147
151
|
:is_active,
|
148
152
|
:status)
|
153
|
+
SENSITIVE = []
|
149
154
|
include Aws::Structure
|
150
155
|
end
|
151
156
|
|
@@ -165,6 +170,7 @@ module Aws::LambdaPreview
|
|
165
170
|
class FunctionCodeLocation < Struct.new(
|
166
171
|
:repository_type,
|
167
172
|
:location)
|
173
|
+
SENSITIVE = []
|
168
174
|
include Aws::Structure
|
169
175
|
end
|
170
176
|
|
@@ -240,6 +246,7 @@ module Aws::LambdaPreview
|
|
240
246
|
:timeout,
|
241
247
|
:memory_size,
|
242
248
|
:last_modified)
|
249
|
+
SENSITIVE = []
|
243
250
|
include Aws::Structure
|
244
251
|
end
|
245
252
|
|
@@ -258,6 +265,7 @@ module Aws::LambdaPreview
|
|
258
265
|
#
|
259
266
|
class GetEventSourceRequest < Struct.new(
|
260
267
|
:uuid)
|
268
|
+
SENSITIVE = []
|
261
269
|
include Aws::Structure
|
262
270
|
end
|
263
271
|
|
@@ -277,6 +285,7 @@ module Aws::LambdaPreview
|
|
277
285
|
#
|
278
286
|
class GetFunctionConfigurationRequest < Struct.new(
|
279
287
|
:function_name)
|
288
|
+
SENSITIVE = []
|
280
289
|
include Aws::Structure
|
281
290
|
end
|
282
291
|
|
@@ -295,6 +304,7 @@ module Aws::LambdaPreview
|
|
295
304
|
#
|
296
305
|
class GetFunctionRequest < Struct.new(
|
297
306
|
:function_name)
|
307
|
+
SENSITIVE = []
|
298
308
|
include Aws::Structure
|
299
309
|
end
|
300
310
|
|
@@ -314,6 +324,7 @@ module Aws::LambdaPreview
|
|
314
324
|
class GetFunctionResponse < Struct.new(
|
315
325
|
:configuration,
|
316
326
|
:code)
|
327
|
+
SENSITIVE = []
|
317
328
|
include Aws::Structure
|
318
329
|
end
|
319
330
|
|
@@ -333,6 +344,7 @@ module Aws::LambdaPreview
|
|
333
344
|
class InvalidParameterValueException < Struct.new(
|
334
345
|
:type,
|
335
346
|
:message)
|
347
|
+
SENSITIVE = []
|
336
348
|
include Aws::Structure
|
337
349
|
end
|
338
350
|
|
@@ -349,6 +361,7 @@ module Aws::LambdaPreview
|
|
349
361
|
class InvalidRequestContentException < Struct.new(
|
350
362
|
:type,
|
351
363
|
:message)
|
364
|
+
SENSITIVE = []
|
352
365
|
include Aws::Structure
|
353
366
|
end
|
354
367
|
|
@@ -373,6 +386,7 @@ module Aws::LambdaPreview
|
|
373
386
|
class InvokeAsyncRequest < Struct.new(
|
374
387
|
:function_name,
|
375
388
|
:invoke_args)
|
389
|
+
SENSITIVE = []
|
376
390
|
include Aws::Structure
|
377
391
|
end
|
378
392
|
|
@@ -387,6 +401,7 @@ module Aws::LambdaPreview
|
|
387
401
|
#
|
388
402
|
class InvokeAsyncResponse < Struct.new(
|
389
403
|
:status)
|
404
|
+
SENSITIVE = []
|
390
405
|
include Aws::Structure
|
391
406
|
end
|
392
407
|
|
@@ -426,6 +441,7 @@ module Aws::LambdaPreview
|
|
426
441
|
:function_name,
|
427
442
|
:marker,
|
428
443
|
:max_items)
|
444
|
+
SENSITIVE = []
|
429
445
|
include Aws::Structure
|
430
446
|
end
|
431
447
|
|
@@ -444,6 +460,7 @@ module Aws::LambdaPreview
|
|
444
460
|
class ListEventSourcesResponse < Struct.new(
|
445
461
|
:next_marker,
|
446
462
|
:event_sources)
|
463
|
+
SENSITIVE = []
|
447
464
|
include Aws::Structure
|
448
465
|
end
|
449
466
|
|
@@ -472,6 +489,7 @@ module Aws::LambdaPreview
|
|
472
489
|
class ListFunctionsRequest < Struct.new(
|
473
490
|
:marker,
|
474
491
|
:max_items)
|
492
|
+
SENSITIVE = []
|
475
493
|
include Aws::Structure
|
476
494
|
end
|
477
495
|
|
@@ -491,6 +509,7 @@ module Aws::LambdaPreview
|
|
491
509
|
class ListFunctionsResponse < Struct.new(
|
492
510
|
:next_marker,
|
493
511
|
:functions)
|
512
|
+
SENSITIVE = []
|
494
513
|
include Aws::Structure
|
495
514
|
end
|
496
515
|
|
@@ -509,6 +528,7 @@ module Aws::LambdaPreview
|
|
509
528
|
#
|
510
529
|
class RemoveEventSourceRequest < Struct.new(
|
511
530
|
:uuid)
|
531
|
+
SENSITIVE = []
|
512
532
|
include Aws::Structure
|
513
533
|
end
|
514
534
|
|
@@ -526,6 +546,7 @@ module Aws::LambdaPreview
|
|
526
546
|
class ResourceNotFoundException < Struct.new(
|
527
547
|
:type,
|
528
548
|
:message)
|
549
|
+
SENSITIVE = []
|
529
550
|
include Aws::Structure
|
530
551
|
end
|
531
552
|
|
@@ -542,6 +563,7 @@ module Aws::LambdaPreview
|
|
542
563
|
class ServiceException < Struct.new(
|
543
564
|
:type,
|
544
565
|
:message)
|
566
|
+
SENSITIVE = []
|
545
567
|
include Aws::Structure
|
546
568
|
end
|
547
569
|
|
@@ -601,6 +623,7 @@ module Aws::LambdaPreview
|
|
601
623
|
:description,
|
602
624
|
:timeout,
|
603
625
|
:memory_size)
|
626
|
+
SENSITIVE = []
|
604
627
|
include Aws::Structure
|
605
628
|
end
|
606
629
|
|
@@ -690,6 +713,7 @@ module Aws::LambdaPreview
|
|
690
713
|
:description,
|
691
714
|
:timeout,
|
692
715
|
:memory_size)
|
716
|
+
SENSITIVE = []
|
693
717
|
include Aws::Structure
|
694
718
|
end
|
695
719
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lambdapreview
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.109.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|