aws-sdk-lambda 1.167.0 → 1.168.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-lambda/client.rb +594 -70
- data/lib/aws-sdk-lambda/client_api.rb +349 -33
- data/lib/aws-sdk-lambda/errors.rb +63 -0
- data/lib/aws-sdk-lambda/types.rb +683 -19
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +179 -19
- data/sig/errors.rbs +12 -0
- data/sig/types.rbs +199 -3
- metadata +1 -1
|
@@ -27,6 +27,7 @@ module Aws::Lambda
|
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
|
28
28
|
#
|
|
29
29
|
# ## Error Classes
|
|
30
|
+
# * {CapacityProviderLimitExceededException}
|
|
30
31
|
# * {CodeSigningConfigNotFoundException}
|
|
31
32
|
# * {CodeStorageExceededException}
|
|
32
33
|
# * {CodeVerificationFailedException}
|
|
@@ -38,6 +39,7 @@ module Aws::Lambda
|
|
|
38
39
|
# * {EFSMountFailureException}
|
|
39
40
|
# * {EFSMountTimeoutException}
|
|
40
41
|
# * {ENILimitReachedException}
|
|
42
|
+
# * {FunctionVersionsPerCapacityProviderLimitExceededException}
|
|
41
43
|
# * {InvalidCodeSignatureException}
|
|
42
44
|
# * {InvalidParameterValueException}
|
|
43
45
|
# * {InvalidRequestContentException}
|
|
@@ -49,6 +51,7 @@ module Aws::Lambda
|
|
|
49
51
|
# * {KMSDisabledException}
|
|
50
52
|
# * {KMSInvalidStateException}
|
|
51
53
|
# * {KMSNotFoundException}
|
|
54
|
+
# * {NoPublishedVersionException}
|
|
52
55
|
# * {PolicyLengthExceededException}
|
|
53
56
|
# * {PreconditionFailedException}
|
|
54
57
|
# * {ProvisionedConcurrencyConfigNotFoundException}
|
|
@@ -73,6 +76,26 @@ module Aws::Lambda
|
|
|
73
76
|
|
|
74
77
|
extend Aws::Errors::DynamicErrors
|
|
75
78
|
|
|
79
|
+
class CapacityProviderLimitExceededException < ServiceError
|
|
80
|
+
|
|
81
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
82
|
+
# @param [String] message
|
|
83
|
+
# @param [Aws::Lambda::Types::CapacityProviderLimitExceededException] data
|
|
84
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
85
|
+
super(context, message, data)
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# @return [String]
|
|
89
|
+
def type
|
|
90
|
+
@data[:type]
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# @return [String]
|
|
94
|
+
def message
|
|
95
|
+
@message || @data[:message]
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
76
99
|
class CodeSigningConfigNotFoundException < ServiceError
|
|
77
100
|
|
|
78
101
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -298,6 +321,26 @@ module Aws::Lambda
|
|
|
298
321
|
end
|
|
299
322
|
end
|
|
300
323
|
|
|
324
|
+
class FunctionVersionsPerCapacityProviderLimitExceededException < ServiceError
|
|
325
|
+
|
|
326
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
327
|
+
# @param [String] message
|
|
328
|
+
# @param [Aws::Lambda::Types::FunctionVersionsPerCapacityProviderLimitExceededException] data
|
|
329
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
330
|
+
super(context, message, data)
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
# @return [String]
|
|
334
|
+
def type
|
|
335
|
+
@data[:type]
|
|
336
|
+
end
|
|
337
|
+
|
|
338
|
+
# @return [String]
|
|
339
|
+
def message
|
|
340
|
+
@message || @data[:message]
|
|
341
|
+
end
|
|
342
|
+
end
|
|
343
|
+
|
|
301
344
|
class InvalidCodeSignatureException < ServiceError
|
|
302
345
|
|
|
303
346
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -518,6 +561,26 @@ module Aws::Lambda
|
|
|
518
561
|
end
|
|
519
562
|
end
|
|
520
563
|
|
|
564
|
+
class NoPublishedVersionException < ServiceError
|
|
565
|
+
|
|
566
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
567
|
+
# @param [String] message
|
|
568
|
+
# @param [Aws::Lambda::Types::NoPublishedVersionException] data
|
|
569
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
570
|
+
super(context, message, data)
|
|
571
|
+
end
|
|
572
|
+
|
|
573
|
+
# @return [String]
|
|
574
|
+
def type
|
|
575
|
+
@data[:type]
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
# @return [String]
|
|
579
|
+
def message
|
|
580
|
+
@message || @data[:message]
|
|
581
|
+
end
|
|
582
|
+
end
|
|
583
|
+
|
|
521
584
|
class PolicyLengthExceededException < ServiceError
|
|
522
585
|
|
|
523
586
|
# @param [Seahorse::Client::RequestContext] context
|