aws-sdk-wafv2 1.111.0 → 1.113.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-wafv2/client.rb +33 -9
- data/lib/aws-sdk-wafv2/client_api.rb +19 -0
- data/lib/aws-sdk-wafv2/types.rb +51 -2
- data/lib/aws-sdk-wafv2.rb +1 -1
- data/sig/client.rbs +9 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +13 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz: '
|
3
|
+
metadata.gz: 1ef29af3c1aa369c23c0624e35aae72ab3a3add66742a93aff4e533db94fe94c
|
4
|
+
data.tar.gz: '095a7e63c4ea11e8947eddfbe1e05722b7e0f51445873826af1ac987ecb603b3'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c9d5544db07b073af63fecf44f40634815eb07884c203e8e2b5c27f673e5e462666be5ab9524ff944b5b3dad6cc61852884ffa49c668f41638fa55727c21956
|
7
|
+
data.tar.gz: 2f60e1ff3ab8de81d86d39e0560126ae371f22586f5d23ddec25f1f795570dbf29060b86b2c493189a95da20d7cf4cf6fdac62f71a90c91566c578ea7380c9ec
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.113.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.112.0 (2025-06-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS WAF can now suggest protection packs for you based on the application information you provide when you create a webACL.
|
13
|
+
|
4
14
|
1.111.0 (2025-06-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.113.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::WAFV2
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::WAFV2
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::WAFV2
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::WAFV2
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::WAFV2
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -2907,6 +2917,12 @@ module Aws::WAFV2
|
|
2907
2917
|
# protection in that web ACL will apply to all associated Application
|
2908
2918
|
# Load Balancers.
|
2909
2919
|
#
|
2920
|
+
# @option params [Types::ApplicationConfig] :application_config
|
2921
|
+
# Configures the ability for the WAF console to store and retrieve
|
2922
|
+
# application attributes during the web ACL creation process.
|
2923
|
+
# Application attributes help WAF give recommendations for protection
|
2924
|
+
# packs.
|
2925
|
+
#
|
2910
2926
|
# @return [Types::CreateWebACLResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2911
2927
|
#
|
2912
2928
|
# * {Types::CreateWebACLResponse#summary #summary} => Types::WebACLSummary
|
@@ -3879,6 +3895,14 @@ module Aws::WAFV2
|
|
3879
3895
|
# on_source_d_do_s_protection_config: {
|
3880
3896
|
# alb_low_reputation_mode: "ACTIVE_UNDER_DDOS", # required, accepts ACTIVE_UNDER_DDOS, ALWAYS_ON
|
3881
3897
|
# },
|
3898
|
+
# application_config: {
|
3899
|
+
# attributes: [
|
3900
|
+
# {
|
3901
|
+
# name: "AttributeName",
|
3902
|
+
# values: ["AttributeValue"],
|
3903
|
+
# },
|
3904
|
+
# ],
|
3905
|
+
# },
|
3882
3906
|
# })
|
3883
3907
|
#
|
3884
3908
|
# @example Response structure
|
@@ -9578,7 +9602,7 @@ module Aws::WAFV2
|
|
9578
9602
|
tracer: tracer
|
9579
9603
|
)
|
9580
9604
|
context[:gem_name] = 'aws-sdk-wafv2'
|
9581
|
-
context[:gem_version] = '1.
|
9605
|
+
context[:gem_version] = '1.113.0'
|
9582
9606
|
Seahorse::Client::Request.new(handlers, context)
|
9583
9607
|
end
|
9584
9608
|
|
@@ -33,12 +33,18 @@ module Aws::WAFV2
|
|
33
33
|
AllQueryArguments = Shapes::StructureShape.new(name: 'AllQueryArguments')
|
34
34
|
AllowAction = Shapes::StructureShape.new(name: 'AllowAction')
|
35
35
|
AndStatement = Shapes::StructureShape.new(name: 'AndStatement')
|
36
|
+
ApplicationAttribute = Shapes::StructureShape.new(name: 'ApplicationAttribute')
|
37
|
+
ApplicationAttributes = Shapes::ListShape.new(name: 'ApplicationAttributes')
|
38
|
+
ApplicationConfig = Shapes::StructureShape.new(name: 'ApplicationConfig')
|
36
39
|
AsnList = Shapes::ListShape.new(name: 'AsnList')
|
37
40
|
AsnMatchStatement = Shapes::StructureShape.new(name: 'AsnMatchStatement')
|
38
41
|
AssociateWebACLRequest = Shapes::StructureShape.new(name: 'AssociateWebACLRequest')
|
39
42
|
AssociateWebACLResponse = Shapes::StructureShape.new(name: 'AssociateWebACLResponse')
|
40
43
|
AssociatedResourceType = Shapes::StringShape.new(name: 'AssociatedResourceType')
|
41
44
|
AssociationConfig = Shapes::StructureShape.new(name: 'AssociationConfig')
|
45
|
+
AttributeName = Shapes::StringShape.new(name: 'AttributeName')
|
46
|
+
AttributeValue = Shapes::StringShape.new(name: 'AttributeValue')
|
47
|
+
AttributeValues = Shapes::ListShape.new(name: 'AttributeValues')
|
42
48
|
BlockAction = Shapes::StructureShape.new(name: 'BlockAction')
|
43
49
|
Body = Shapes::StructureShape.new(name: 'Body')
|
44
50
|
BodyParsingFallbackBehavior = Shapes::StringShape.new(name: 'BodyParsingFallbackBehavior')
|
@@ -496,6 +502,15 @@ module Aws::WAFV2
|
|
496
502
|
AndStatement.add_member(:statements, Shapes::ShapeRef.new(shape: Statements, required: true, location_name: "Statements"))
|
497
503
|
AndStatement.struct_class = Types::AndStatement
|
498
504
|
|
505
|
+
ApplicationAttribute.add_member(:name, Shapes::ShapeRef.new(shape: AttributeName, location_name: "Name"))
|
506
|
+
ApplicationAttribute.add_member(:values, Shapes::ShapeRef.new(shape: AttributeValues, location_name: "Values"))
|
507
|
+
ApplicationAttribute.struct_class = Types::ApplicationAttribute
|
508
|
+
|
509
|
+
ApplicationAttributes.member = Shapes::ShapeRef.new(shape: ApplicationAttribute)
|
510
|
+
|
511
|
+
ApplicationConfig.add_member(:attributes, Shapes::ShapeRef.new(shape: ApplicationAttributes, location_name: "Attributes"))
|
512
|
+
ApplicationConfig.struct_class = Types::ApplicationConfig
|
513
|
+
|
499
514
|
AsnList.member = Shapes::ShapeRef.new(shape: ASN)
|
500
515
|
|
501
516
|
AsnMatchStatement.add_member(:asn_list, Shapes::ShapeRef.new(shape: AsnList, required: true, location_name: "AsnList"))
|
@@ -511,6 +526,8 @@ module Aws::WAFV2
|
|
511
526
|
AssociationConfig.add_member(:request_body, Shapes::ShapeRef.new(shape: RequestBody, location_name: "RequestBody"))
|
512
527
|
AssociationConfig.struct_class = Types::AssociationConfig
|
513
528
|
|
529
|
+
AttributeValues.member = Shapes::ShapeRef.new(shape: AttributeValue)
|
530
|
+
|
514
531
|
BlockAction.add_member(:custom_response, Shapes::ShapeRef.new(shape: CustomResponse, location_name: "CustomResponse"))
|
515
532
|
BlockAction.struct_class = Types::BlockAction
|
516
533
|
|
@@ -638,6 +655,7 @@ module Aws::WAFV2
|
|
638
655
|
CreateWebACLRequest.add_member(:token_domains, Shapes::ShapeRef.new(shape: TokenDomains, location_name: "TokenDomains"))
|
639
656
|
CreateWebACLRequest.add_member(:association_config, Shapes::ShapeRef.new(shape: AssociationConfig, location_name: "AssociationConfig"))
|
640
657
|
CreateWebACLRequest.add_member(:on_source_d_do_s_protection_config, Shapes::ShapeRef.new(shape: OnSourceDDoSProtectionConfig, location_name: "OnSourceDDoSProtectionConfig"))
|
658
|
+
CreateWebACLRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
641
659
|
CreateWebACLRequest.struct_class = Types::CreateWebACLRequest
|
642
660
|
|
643
661
|
CreateWebACLResponse.add_member(:summary, Shapes::ShapeRef.new(shape: WebACLSummary, location_name: "Summary"))
|
@@ -1776,6 +1794,7 @@ module Aws::WAFV2
|
|
1776
1794
|
WebACL.add_member(:association_config, Shapes::ShapeRef.new(shape: AssociationConfig, location_name: "AssociationConfig"))
|
1777
1795
|
WebACL.add_member(:retrofitted_by_firewall_manager, Shapes::ShapeRef.new(shape: Boolean, location_name: "RetrofittedByFirewallManager"))
|
1778
1796
|
WebACL.add_member(:on_source_d_do_s_protection_config, Shapes::ShapeRef.new(shape: OnSourceDDoSProtectionConfig, location_name: "OnSourceDDoSProtectionConfig"))
|
1797
|
+
WebACL.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
1779
1798
|
WebACL.struct_class = Types::WebACL
|
1780
1799
|
|
1781
1800
|
WebACLSummaries.member = Shapes::ShapeRef.new(shape: WebACLSummary)
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
@@ -446,6 +446,42 @@ module Aws::WAFV2
|
|
446
446
|
include Aws::Structure
|
447
447
|
end
|
448
448
|
|
449
|
+
# Application details defined during the web ACL creation process.
|
450
|
+
# Application attributes help WAF give recommendations for protection
|
451
|
+
# packs.
|
452
|
+
#
|
453
|
+
# @!attribute [rw] name
|
454
|
+
# Specifies the attribute name.
|
455
|
+
# @return [String]
|
456
|
+
#
|
457
|
+
# @!attribute [rw] values
|
458
|
+
# Specifies the attribute value.
|
459
|
+
# @return [Array<String>]
|
460
|
+
#
|
461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ApplicationAttribute AWS API Documentation
|
462
|
+
#
|
463
|
+
class ApplicationAttribute < Struct.new(
|
464
|
+
:name,
|
465
|
+
:values)
|
466
|
+
SENSITIVE = []
|
467
|
+
include Aws::Structure
|
468
|
+
end
|
469
|
+
|
470
|
+
# A list of `ApplicationAttribute`s that contains information about the
|
471
|
+
# application.
|
472
|
+
#
|
473
|
+
# @!attribute [rw] attributes
|
474
|
+
# Contains the attribute name and a list of values for that attribute.
|
475
|
+
# @return [Array<Types::ApplicationAttribute>]
|
476
|
+
#
|
477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ApplicationConfig AWS API Documentation
|
478
|
+
#
|
479
|
+
class ApplicationConfig < Struct.new(
|
480
|
+
:attributes)
|
481
|
+
SENSITIVE = []
|
482
|
+
include Aws::Structure
|
483
|
+
end
|
484
|
+
|
449
485
|
# A rule statement that inspects web traffic based on the Autonomous
|
450
486
|
# System Number (ASN) associated with the request's IP address.
|
451
487
|
#
|
@@ -1770,6 +1806,13 @@ module Aws::WAFV2
|
|
1770
1806
|
# Application Load Balancers.
|
1771
1807
|
# @return [Types::OnSourceDDoSProtectionConfig]
|
1772
1808
|
#
|
1809
|
+
# @!attribute [rw] application_config
|
1810
|
+
# Configures the ability for the WAF console to store and retrieve
|
1811
|
+
# application attributes during the web ACL creation process.
|
1812
|
+
# Application attributes help WAF give recommendations for protection
|
1813
|
+
# packs.
|
1814
|
+
# @return [Types::ApplicationConfig]
|
1815
|
+
#
|
1773
1816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/CreateWebACLRequest AWS API Documentation
|
1774
1817
|
#
|
1775
1818
|
class CreateWebACLRequest < Struct.new(
|
@@ -1786,7 +1829,8 @@ module Aws::WAFV2
|
|
1786
1829
|
:challenge_config,
|
1787
1830
|
:token_domains,
|
1788
1831
|
:association_config,
|
1789
|
-
:on_source_d_do_s_protection_config
|
1832
|
+
:on_source_d_do_s_protection_config,
|
1833
|
+
:application_config)
|
1790
1834
|
SENSITIVE = []
|
1791
1835
|
include Aws::Structure
|
1792
1836
|
end
|
@@ -10681,6 +10725,10 @@ module Aws::WAFV2
|
|
10681
10725
|
# associated with Application Load Balancers.
|
10682
10726
|
# @return [Types::OnSourceDDoSProtectionConfig]
|
10683
10727
|
#
|
10728
|
+
# @!attribute [rw] application_config
|
10729
|
+
# Returns a list of `ApplicationAttribute`s.
|
10730
|
+
# @return [Types::ApplicationConfig]
|
10731
|
+
#
|
10684
10732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/WebACL AWS API Documentation
|
10685
10733
|
#
|
10686
10734
|
class WebACL < Struct.new(
|
@@ -10703,7 +10751,8 @@ module Aws::WAFV2
|
|
10703
10751
|
:token_domains,
|
10704
10752
|
:association_config,
|
10705
10753
|
:retrofitted_by_firewall_manager,
|
10706
|
-
:on_source_d_do_s_protection_config
|
10754
|
+
:on_source_d_do_s_protection_config,
|
10755
|
+
:application_config)
|
10707
10756
|
SENSITIVE = []
|
10708
10757
|
include Aws::Structure
|
10709
10758
|
end
|
data/lib/aws-sdk-wafv2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -2890,6 +2891,14 @@ module Aws
|
|
2890
2891
|
},
|
2891
2892
|
?on_source_d_do_s_protection_config: {
|
2892
2893
|
alb_low_reputation_mode: ("ACTIVE_UNDER_DDOS" | "ALWAYS_ON")
|
2894
|
+
},
|
2895
|
+
?application_config: {
|
2896
|
+
attributes: Array[
|
2897
|
+
{
|
2898
|
+
name: ::String?,
|
2899
|
+
values: Array[::String]?
|
2900
|
+
},
|
2901
|
+
]?
|
2893
2902
|
}
|
2894
2903
|
) -> _CreateWebACLResponseSuccess
|
2895
2904
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWebACLResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -71,6 +71,17 @@ module Aws::WAFV2
|
|
71
71
|
SENSITIVE: []
|
72
72
|
end
|
73
73
|
|
74
|
+
class ApplicationAttribute
|
75
|
+
attr_accessor name: ::String
|
76
|
+
attr_accessor values: ::Array[::String]
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class ApplicationConfig
|
81
|
+
attr_accessor attributes: ::Array[Types::ApplicationAttribute]
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
74
85
|
class AsnMatchStatement
|
75
86
|
attr_accessor asn_list: ::Array[::Integer]
|
76
87
|
attr_accessor forwarded_ip_config: Types::ForwardedIPConfig
|
@@ -263,6 +274,7 @@ module Aws::WAFV2
|
|
263
274
|
attr_accessor token_domains: ::Array[::String]
|
264
275
|
attr_accessor association_config: Types::AssociationConfig
|
265
276
|
attr_accessor on_source_d_do_s_protection_config: Types::OnSourceDDoSProtectionConfig
|
277
|
+
attr_accessor application_config: Types::ApplicationConfig
|
266
278
|
SENSITIVE: []
|
267
279
|
end
|
268
280
|
|
@@ -1720,6 +1732,7 @@ module Aws::WAFV2
|
|
1720
1732
|
attr_accessor association_config: Types::AssociationConfig
|
1721
1733
|
attr_accessor retrofitted_by_firewall_manager: bool
|
1722
1734
|
attr_accessor on_source_d_do_s_protection_config: Types::OnSourceDDoSProtectionConfig
|
1735
|
+
attr_accessor application_config: Types::ApplicationConfig
|
1723
1736
|
SENSITIVE: []
|
1724
1737
|
end
|
1725
1738
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-wafv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.113.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|