aws-sdk-serverlessapplicationrepository 1.70.0 → 1.72.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-serverlessapplicationrepository/client.rb +25 -2
- data/lib/aws-sdk-serverlessapplicationrepository/types.rb +19 -18
- data/lib/aws-sdk-serverlessapplicationrepository.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -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: '021108ce36f8d47b798b06acb3342837bbee899be75be795c659a9e17776db30'
|
|
4
|
+
data.tar.gz: a43b7d618a18421d40c8e9aae4cddc4d2cb5e5d526d02e27662df49e618a4f3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c774a33dbeda8c22b16cdc24e7502a319073f37a05f278109371342e22294ef609c1ea16f97108ac5856acccffbee83a395fb7447ac4c33263400ba5cf0443ba
|
|
7
|
+
data.tar.gz: 675183b44036322d65a452b860774618f2bd799c96054da17dbe5ac5e312a0d5cca86cbc448a0df13c872521f111e264f8bb0c605b4b4f9059cec8da257e4ed6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.72.0 (2025-01-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.71.0 (2024-11-18)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.70.0 (2024-11-06)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.72.0
|
|
@@ -257,11 +257,34 @@ module Aws::ServerlessApplicationRepository
|
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
259
259
|
#
|
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
|
262
|
+
#
|
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
|
270
|
+
# is modeled and supplied.
|
|
271
|
+
#
|
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
|
263
275
|
# and 10485780 bytes inclusive.
|
|
264
276
|
#
|
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
|
279
|
+
#
|
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
|
283
|
+
# are supported.
|
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
|
287
|
+
#
|
|
265
288
|
# @option options [Proc] :retry_backoff
|
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
|
@@ -661,7 +684,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
661
684
|
# @option params [Types::RollbackConfiguration] :rollback_configuration
|
|
662
685
|
# This property corresponds to the <i>AWS CloudFormation <a
|
|
663
686
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
664
|
-
#
|
|
687
|
+
# </i> Data Type.
|
|
665
688
|
#
|
|
666
689
|
# @option params [String] :semantic_version
|
|
667
690
|
#
|
|
@@ -1263,7 +1286,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
1263
1286
|
tracer: tracer
|
|
1264
1287
|
)
|
|
1265
1288
|
context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
|
|
1266
|
-
context[:gem_version] = '1.
|
|
1289
|
+
context[:gem_version] = '1.72.0'
|
|
1267
1290
|
Seahorse::Client::Request.new(handlers, context)
|
|
1268
1291
|
end
|
|
1269
1292
|
|
|
@@ -818,28 +818,28 @@ module Aws::ServerlessApplicationRepository
|
|
|
818
818
|
# This property corresponds to the parameter of the same name for the
|
|
819
819
|
# <i>AWS CloudFormation <a
|
|
820
820
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
821
|
-
#
|
|
821
|
+
# </i> API.
|
|
822
822
|
# @return [String]
|
|
823
823
|
#
|
|
824
824
|
# @!attribute [rw] client_token
|
|
825
825
|
# This property corresponds to the parameter of the same name for the
|
|
826
826
|
# <i>AWS CloudFormation <a
|
|
827
827
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
828
|
-
#
|
|
828
|
+
# </i> API.
|
|
829
829
|
# @return [String]
|
|
830
830
|
#
|
|
831
831
|
# @!attribute [rw] description
|
|
832
832
|
# This property corresponds to the parameter of the same name for the
|
|
833
833
|
# <i>AWS CloudFormation <a
|
|
834
834
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
835
|
-
#
|
|
835
|
+
# </i> API.
|
|
836
836
|
# @return [String]
|
|
837
837
|
#
|
|
838
838
|
# @!attribute [rw] notification_arns
|
|
839
839
|
# This property corresponds to the parameter of the same name for the
|
|
840
840
|
# <i>AWS CloudFormation <a
|
|
841
841
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
842
|
-
#
|
|
842
|
+
# </i> API.
|
|
843
843
|
# @return [Array<String>]
|
|
844
844
|
#
|
|
845
845
|
# @!attribute [rw] parameter_overrides
|
|
@@ -850,14 +850,14 @@ module Aws::ServerlessApplicationRepository
|
|
|
850
850
|
# This property corresponds to the parameter of the same name for the
|
|
851
851
|
# <i>AWS CloudFormation <a
|
|
852
852
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
853
|
-
#
|
|
853
|
+
# </i> API.
|
|
854
854
|
# @return [Array<String>]
|
|
855
855
|
#
|
|
856
856
|
# @!attribute [rw] rollback_configuration
|
|
857
857
|
# This property corresponds to the parameter of the same name for the
|
|
858
858
|
# <i>AWS CloudFormation <a
|
|
859
859
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
860
|
-
#
|
|
860
|
+
# </i> API.
|
|
861
861
|
# @return [Types::RollbackConfiguration]
|
|
862
862
|
#
|
|
863
863
|
# @!attribute [rw] semantic_version
|
|
@@ -874,14 +874,14 @@ module Aws::ServerlessApplicationRepository
|
|
|
874
874
|
# This property corresponds to the parameter of the same name for the
|
|
875
875
|
# <i>AWS CloudFormation <a
|
|
876
876
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
877
|
-
#
|
|
877
|
+
# </i> API.
|
|
878
878
|
# @return [String]
|
|
879
879
|
#
|
|
880
880
|
# @!attribute [rw] tags
|
|
881
881
|
# This property corresponds to the parameter of the same name for the
|
|
882
882
|
# <i>AWS CloudFormation <a
|
|
883
883
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
884
|
-
#
|
|
884
|
+
# </i> API.
|
|
885
885
|
# @return [Array<Types::Tag>]
|
|
886
886
|
#
|
|
887
887
|
# @!attribute [rw] template_id
|
|
@@ -937,7 +937,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
937
937
|
# @!attribute [rw] rollback_configuration
|
|
938
938
|
# This property corresponds to the <i>AWS CloudFormation <a
|
|
939
939
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
940
|
-
#
|
|
940
|
+
# </i> Data Type.
|
|
941
941
|
# @return [Types::RollbackConfiguration]
|
|
942
942
|
#
|
|
943
943
|
# @!attribute [rw] semantic_version
|
|
@@ -1542,20 +1542,20 @@ module Aws::ServerlessApplicationRepository
|
|
|
1542
1542
|
|
|
1543
1543
|
# This property corresponds to the <i>AWS CloudFormation <a
|
|
1544
1544
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
1545
|
-
#
|
|
1545
|
+
# </i> Data Type.
|
|
1546
1546
|
#
|
|
1547
1547
|
# @!attribute [rw] monitoring_time_in_minutes
|
|
1548
1548
|
# This property corresponds to the content of the same name for the
|
|
1549
1549
|
# <i>AWS CloudFormation <a
|
|
1550
1550
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
1551
|
-
#
|
|
1551
|
+
# </i> Data Type.
|
|
1552
1552
|
# @return [Integer]
|
|
1553
1553
|
#
|
|
1554
1554
|
# @!attribute [rw] rollback_triggers
|
|
1555
1555
|
# This property corresponds to the content of the same name for the
|
|
1556
1556
|
# <i>AWS CloudFormation <a
|
|
1557
1557
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
1558
|
-
#
|
|
1558
|
+
# </i> Data Type.
|
|
1559
1559
|
# @return [Array<Types::RollbackTrigger>]
|
|
1560
1560
|
#
|
|
1561
1561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/RollbackConfiguration AWS API Documentation
|
|
@@ -1569,20 +1569,20 @@ module Aws::ServerlessApplicationRepository
|
|
|
1569
1569
|
|
|
1570
1570
|
# This property corresponds to the <i>AWS CloudFormation <a
|
|
1571
1571
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
|
|
1572
|
-
#
|
|
1572
|
+
# </i> Data Type.
|
|
1573
1573
|
#
|
|
1574
1574
|
# @!attribute [rw] arn
|
|
1575
1575
|
# This property corresponds to the content of the same name for the
|
|
1576
1576
|
# <i>AWS CloudFormation <a
|
|
1577
1577
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
|
|
1578
|
-
#
|
|
1578
|
+
# </i> Data Type.
|
|
1579
1579
|
# @return [String]
|
|
1580
1580
|
#
|
|
1581
1581
|
# @!attribute [rw] type
|
|
1582
1582
|
# This property corresponds to the content of the same name for the
|
|
1583
1583
|
# <i>AWS CloudFormation <a
|
|
1584
1584
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
|
|
1585
|
-
#
|
|
1585
|
+
# </i> Data Type.
|
|
1586
1586
|
# @return [String]
|
|
1587
1587
|
#
|
|
1588
1588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/RollbackTrigger AWS API Documentation
|
|
@@ -1596,20 +1596,21 @@ module Aws::ServerlessApplicationRepository
|
|
|
1596
1596
|
|
|
1597
1597
|
# This property corresponds to the <i>AWS CloudFormation <a
|
|
1598
1598
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">Tag</a>
|
|
1599
|
-
#
|
|
1599
|
+
# </i> Data Type.
|
|
1600
1600
|
#
|
|
1601
1601
|
# @!attribute [rw] key
|
|
1602
1602
|
# This property corresponds to the content of the same name for the
|
|
1603
1603
|
# <i>AWS CloudFormation <a
|
|
1604
1604
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">Tag</a>
|
|
1605
|
-
#
|
|
1605
|
+
# </i> Data Type.
|
|
1606
1606
|
# @return [String]
|
|
1607
1607
|
#
|
|
1608
1608
|
# @!attribute [rw] value
|
|
1609
1609
|
# This property corresponds to the content of the same name for the
|
|
1610
1610
|
# <i>AWS CloudFormation <a
|
|
1611
1611
|
# href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">
|
|
1612
|
-
#
|
|
1612
|
+
# Tag</a>
|
|
1613
|
+
# </i> Data Type.
|
|
1613
1614
|
# @return [String]
|
|
1614
1615
|
#
|
|
1615
1616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/Tag AWS API Documentation
|
|
@@ -54,7 +54,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-serverlessapplicationrepository/endpoint_provider'
|
|
55
55
|
autoload :Endpoints, 'aws-sdk-serverlessapplicationrepository/endpoints'
|
|
56
56
|
|
|
57
|
-
GEM_VERSION = '1.
|
|
57
|
+
GEM_VERSION = '1.72.0'
|
|
58
58
|
|
|
59
59
|
end
|
|
60
60
|
|
data/sig/client.rbs
CHANGED
|
@@ -39,7 +39,9 @@ module Aws
|
|
|
39
39
|
?logger: untyped,
|
|
40
40
|
?max_attempts: Integer,
|
|
41
41
|
?profile: String,
|
|
42
|
+
?request_checksum_calculation: String,
|
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
|
44
|
+
?response_checksum_validation: String,
|
|
43
45
|
?retry_backoff: Proc,
|
|
44
46
|
?retry_base_delay: Float,
|
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
|
@@ -39,7 +39,9 @@ module Aws
|
|
|
39
39
|
?logger: untyped,
|
|
40
40
|
?max_attempts: Integer,
|
|
41
41
|
?profile: String,
|
|
42
|
+
?request_checksum_calculation: String,
|
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
|
44
|
+
?response_checksum_validation: String,
|
|
43
45
|
?retry_backoff: Proc,
|
|
44
46
|
?retry_base_delay: Float,
|
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-serverlessapplicationrepository
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.72.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:
|
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|