aws-sdk-elasticsearchservice 1.55.0 → 1.59.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8347bdc8bd142d2cbd3abad34d3519c3fedd5e74c628dc8872da8ff2a36e2f7
4
- data.tar.gz: e63d541cf0894e5c695080af65fc6d7c39d48f417d43594b752e39d5e33e4dd5
3
+ metadata.gz: b04e08841707202a4b5dbbbb151318224c28004757e83bd5eedaf291783ae3b1
4
+ data.tar.gz: c9e768d43ca9800e3a5d810a7b9fc64c772447a2fdf70c5eb2a26384171c5431
5
5
  SHA512:
6
- metadata.gz: 97a8f0babdcf4deeb2ee51fc48af8d8134a17ecc72d94486b63e9d3772d8224ec8545247deb5f1fb67661b339d70fe4e8902158ba6f19b0ea1fea49a2e8c5a76
7
- data.tar.gz: 6d9e14d66a376887d72281f6bef87dbcb3e311373c43f7170922994737ade52e857898d45a23ca3469faa740d57f5377ed3b97abaf71ff497c5134d01f4889f8
6
+ metadata.gz: b1dac239cf4926b0e1d6e7864138c0eefe933c20c8a836c6539eea2b5c1bb4f765eeb5c6946b047b5cab7ee701be163ebbe84930605d7399a95b85e0e07df29e
7
+ data.tar.gz: 766d15531ff835e3a767af016088657d95cc3428bcac5f2dc071d1c3b79e0ff445fb3f6ba4fd8f014cbc61e63e0bb59906f2d9a3e149cabe72388f31fe18d6c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2021-11-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds an optional parameter dry-run for the UpdateElasticsearchDomainConfig API to perform basic validation checks, and detect the deployment type that will be required for the configuration change, without actually applying the change.
8
+
9
+ 1.58.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.57.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.56.0 (2021-09-17)
20
+ ------------------
21
+
22
+ * Feature - This release adds an optional parameter in the ListDomainNames API to filter domains based on the engine type (OpenSearch/Elasticsearch).
23
+
4
24
  1.55.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.59.0
@@ -275,6 +275,15 @@ module Aws::ElasticsearchService
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -2037,14 +2046,25 @@ module Aws::ElasticsearchService
2037
2046
  # Returns the name of all Elasticsearch domains owned by the current
2038
2047
  # user's account.
2039
2048
  #
2049
+ # @option params [String] :engine_type
2050
+ # Optional parameter to filter the output by domain engine type.
2051
+ # Acceptable values are 'Elasticsearch' and 'OpenSearch'.
2052
+ #
2040
2053
  # @return [Types::ListDomainNamesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2041
2054
  #
2042
2055
  # * {Types::ListDomainNamesResponse#domain_names #domain_names} => Array<Types::DomainInfo>
2043
2056
  #
2057
+ # @example Request syntax with placeholder values
2058
+ #
2059
+ # resp = client.list_domain_names({
2060
+ # engine_type: "OpenSearch", # accepts OpenSearch, Elasticsearch
2061
+ # })
2062
+ #
2044
2063
  # @example Response structure
2045
2064
  #
2046
2065
  # resp.domain_names #=> Array
2047
2066
  # resp.domain_names[0].domain_name #=> String
2067
+ # resp.domain_names[0].engine_type #=> String, one of "OpenSearch", "Elasticsearch"
2048
2068
  #
2049
2069
  # @overload list_domain_names(params = {})
2050
2070
  # @param [Hash] params ({})
@@ -2470,9 +2490,18 @@ module Aws::ElasticsearchService
2470
2490
  # @option params [Types::AutoTuneOptions] :auto_tune_options
2471
2491
  # Specifies Auto-Tune options.
2472
2492
  #
2493
+ # @option params [Boolean] :dry_run
2494
+ # This flag, when set to True, specifies whether the
2495
+ # `UpdateElasticsearchDomain` request should return the results of
2496
+ # validation checks without actually applying the change. This flag,
2497
+ # when set to True, specifies the deployment mechanism through which the
2498
+ # update shall be applied on the domain. This will not actually perform
2499
+ # the Update.
2500
+ #
2473
2501
  # @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2474
2502
  #
2475
2503
  # * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
2504
+ # * {Types::UpdateElasticsearchDomainConfigResponse#dry_run_results #dry_run_results} => Types::DryRunResults
2476
2505
  #
2477
2506
  # @example Request syntax with placeholder values
2478
2507
  #
@@ -2573,6 +2602,7 @@ module Aws::ElasticsearchService
2573
2602
  # },
2574
2603
  # ],
2575
2604
  # },
2605
+ # dry_run: false,
2576
2606
  # })
2577
2607
  #
2578
2608
  # @example Response structure
@@ -2705,6 +2735,8 @@ module Aws::ElasticsearchService
2705
2735
  # resp.domain_config.auto_tune_options.status.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
2706
2736
  # resp.domain_config.auto_tune_options.status.error_message #=> String
2707
2737
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
2738
+ # resp.dry_run_results.deployment_type #=> String
2739
+ # resp.dry_run_results.message #=> String
2708
2740
  #
2709
2741
  # @overload update_elasticsearch_domain_config(params = {})
2710
2742
  # @param [Hash] params ({})
@@ -2822,7 +2854,7 @@ module Aws::ElasticsearchService
2822
2854
  params: params,
2823
2855
  config: config)
2824
2856
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2825
- context[:gem_version] = '1.55.0'
2857
+ context[:gem_version] = '1.59.0'
2826
2858
  Seahorse::Client::Request.new(handlers, context)
2827
2859
  end
2828
2860
 
@@ -75,6 +75,7 @@ module Aws::ElasticsearchService
75
75
  DeletePackageResponse = Shapes::StructureShape.new(name: 'DeletePackageResponse')
76
76
  DeploymentCloseDateTimeStamp = Shapes::TimestampShape.new(name: 'DeploymentCloseDateTimeStamp')
77
77
  DeploymentStatus = Shapes::StringShape.new(name: 'DeploymentStatus')
78
+ DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
78
79
  DescribeDomainAutoTunesRequest = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesRequest')
79
80
  DescribeDomainAutoTunesResponse = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesResponse')
80
81
  DescribeElasticsearchDomainConfigRequest = Shapes::StructureShape.new(name: 'DescribeElasticsearchDomainConfigRequest')
@@ -116,6 +117,8 @@ module Aws::ElasticsearchService
116
117
  DomainPackageDetailsList = Shapes::ListShape.new(name: 'DomainPackageDetailsList')
117
118
  DomainPackageStatus = Shapes::StringShape.new(name: 'DomainPackageStatus')
118
119
  Double = Shapes::FloatShape.new(name: 'Double')
120
+ DryRun = Shapes::BooleanShape.new(name: 'DryRun')
121
+ DryRunResults = Shapes::StructureShape.new(name: 'DryRunResults')
119
122
  Duration = Shapes::StructureShape.new(name: 'Duration')
120
123
  DurationValue = Shapes::IntegerShape.new(name: 'DurationValue')
121
124
  EBSOptions = Shapes::StructureShape.new(name: 'EBSOptions')
@@ -134,6 +137,7 @@ module Aws::ElasticsearchService
134
137
  EncryptionAtRestOptions = Shapes::StructureShape.new(name: 'EncryptionAtRestOptions')
135
138
  EncryptionAtRestOptionsStatus = Shapes::StructureShape.new(name: 'EncryptionAtRestOptionsStatus')
136
139
  EndpointsMap = Shapes::MapShape.new(name: 'EndpointsMap')
140
+ EngineType = Shapes::StringShape.new(name: 'EngineType')
137
141
  ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
138
142
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
139
143
  ErrorType = Shapes::StringShape.new(name: 'ErrorType')
@@ -172,6 +176,7 @@ module Aws::ElasticsearchService
172
176
  LimitValueList = Shapes::ListShape.new(name: 'LimitValueList')
173
177
  Limits = Shapes::StructureShape.new(name: 'Limits')
174
178
  LimitsByRole = Shapes::MapShape.new(name: 'LimitsByRole')
179
+ ListDomainNamesRequest = Shapes::StructureShape.new(name: 'ListDomainNamesRequest')
175
180
  ListDomainNamesResponse = Shapes::StructureShape.new(name: 'ListDomainNamesResponse')
176
181
  ListDomainsForPackageRequest = Shapes::StructureShape.new(name: 'ListDomainsForPackageRequest')
177
182
  ListDomainsForPackageResponse = Shapes::StructureShape.new(name: 'ListDomainsForPackageResponse')
@@ -190,6 +195,7 @@ module Aws::ElasticsearchService
190
195
  MasterUserOptions = Shapes::StructureShape.new(name: 'MasterUserOptions')
191
196
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
192
197
  MaximumInstanceCount = Shapes::IntegerShape.new(name: 'MaximumInstanceCount')
198
+ Message = Shapes::StringShape.new(name: 'Message')
193
199
  MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
194
200
  NextToken = Shapes::StringShape.new(name: 'NextToken')
195
201
  NodeToNodeEncryptionOptions = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptions')
@@ -589,6 +595,7 @@ module Aws::ElasticsearchService
589
595
  DomainEndpointOptionsStatus.struct_class = Types::DomainEndpointOptionsStatus
590
596
 
591
597
  DomainInfo.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
598
+ DomainInfo.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "EngineType"))
592
599
  DomainInfo.struct_class = Types::DomainInfo
593
600
 
594
601
  DomainInfoList.member = Shapes::ShapeRef.new(shape: DomainInfo)
@@ -613,6 +620,10 @@ module Aws::ElasticsearchService
613
620
 
614
621
  DomainPackageDetailsList.member = Shapes::ShapeRef.new(shape: DomainPackageDetails)
615
622
 
623
+ DryRunResults.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "DeploymentType"))
624
+ DryRunResults.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
625
+ DryRunResults.struct_class = Types::DryRunResults
626
+
616
627
  Duration.add_member(:value, Shapes::ShapeRef.new(shape: DurationValue, location_name: "Value"))
617
628
  Duration.add_member(:unit, Shapes::ShapeRef.new(shape: TimeUnit, location_name: "Unit"))
618
629
  Duration.struct_class = Types::Duration
@@ -789,6 +800,9 @@ module Aws::ElasticsearchService
789
800
  LimitsByRole.key = Shapes::ShapeRef.new(shape: InstanceRole)
790
801
  LimitsByRole.value = Shapes::ShapeRef.new(shape: Limits)
791
802
 
803
+ ListDomainNamesRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location: "querystring", location_name: "engineType"))
804
+ ListDomainNamesRequest.struct_class = Types::ListDomainNamesRequest
805
+
792
806
  ListDomainNamesResponse.add_member(:domain_names, Shapes::ShapeRef.new(shape: DomainInfoList, location_name: "DomainNames"))
793
807
  ListDomainNamesResponse.struct_class = Types::ListDomainNamesResponse
794
808
 
@@ -1043,9 +1057,11 @@ module Aws::ElasticsearchService
1043
1057
  UpdateElasticsearchDomainConfigRequest.add_member(:node_to_node_encryption_options, Shapes::ShapeRef.new(shape: NodeToNodeEncryptionOptions, location_name: "NodeToNodeEncryptionOptions"))
1044
1058
  UpdateElasticsearchDomainConfigRequest.add_member(:encryption_at_rest_options, Shapes::ShapeRef.new(shape: EncryptionAtRestOptions, location_name: "EncryptionAtRestOptions"))
1045
1059
  UpdateElasticsearchDomainConfigRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptions, location_name: "AutoTuneOptions"))
1060
+ UpdateElasticsearchDomainConfigRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
1046
1061
  UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
1047
1062
 
1048
1063
  UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
1064
+ UpdateElasticsearchDomainConfigResponse.add_member(:dry_run_results, Shapes::ShapeRef.new(shape: DryRunResults, location_name: "DryRunResults"))
1049
1065
  UpdateElasticsearchDomainConfigResponse.struct_class = Types::UpdateElasticsearchDomainConfigResponse
1050
1066
 
1051
1067
  UpdatePackageRequest.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, required: true, location_name: "PackageID"))
@@ -1504,7 +1520,7 @@ module Aws::ElasticsearchService
1504
1520
  o.name = "ListDomainNames"
1505
1521
  o.http_method = "GET"
1506
1522
  o.http_request_uri = "/2015-01-01/domain"
1507
- o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1523
+ o.input = Shapes::ShapeRef.new(shape: ListDomainNamesRequest)
1508
1524
  o.output = Shapes::ShapeRef.new(shape: ListDomainNamesResponse)
1509
1525
  o.errors << Shapes::ShapeRef.new(shape: BaseException)
1510
1526
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -669,7 +669,7 @@ module Aws::ElasticsearchService
669
669
  include Aws::Structure
670
670
  end
671
671
 
672
- # Specifies settings for cold storage.
672
+ # Specifies the configuration for cold storage options such as enabled
673
673
  #
674
674
  # @note When making an API call, you may pass ColdStorageOptions
675
675
  # data as a hash:
@@ -679,7 +679,7 @@ module Aws::ElasticsearchService
679
679
  # }
680
680
  #
681
681
  # @!attribute [rw] enabled
682
- # True to enable cold storage for an Elasticsearch domain.
682
+ # Enable cold storage option. Accepted values true or false
683
683
  # @return [Boolean]
684
684
  #
685
685
  class ColdStorageOptions < Struct.new(
@@ -1878,8 +1878,13 @@ module Aws::ElasticsearchService
1878
1878
  # Specifies the `DomainName`.
1879
1879
  # @return [String]
1880
1880
  #
1881
+ # @!attribute [rw] engine_type
1882
+ # Specifies the `EngineType` of the domain.
1883
+ # @return [String]
1884
+ #
1881
1885
  class DomainInfo < Struct.new(
1882
- :domain_name)
1886
+ :domain_name,
1887
+ :engine_type)
1883
1888
  SENSITIVE = []
1884
1889
  include Aws::Structure
1885
1890
  end
@@ -1968,6 +1973,28 @@ module Aws::ElasticsearchService
1968
1973
  include Aws::Structure
1969
1974
  end
1970
1975
 
1976
+ # @!attribute [rw] deployment_type
1977
+ # Specifies the deployment mechanism through which the update shall be
1978
+ # applied on the domain. Possible responses are `Blue/Green` (The
1979
+ # update will require a blue/green deployment.) `DynamicUpdate` (The
1980
+ # update can be applied in-place without a Blue/Green deployment
1981
+ # required.) `Undetermined` (The domain is undergoing an update which
1982
+ # needs to complete before the deployment type can be predicted.)
1983
+ # `None` (The configuration change matches the current configuration
1984
+ # and will not result in any update.)
1985
+ # @return [String]
1986
+ #
1987
+ # @!attribute [rw] message
1988
+ # Contains an optional message associated with the DryRunResults.
1989
+ # @return [String]
1990
+ #
1991
+ class DryRunResults < Struct.new(
1992
+ :deployment_type,
1993
+ :message)
1994
+ SENSITIVE = []
1995
+ include Aws::Structure
1996
+ end
1997
+
1971
1998
  # Specifies maintenance schedule duration: duration value and duration
1972
1999
  # unit. See the [Developer Guide][1] for more information.
1973
2000
  #
@@ -2147,8 +2174,7 @@ module Aws::ElasticsearchService
2147
2174
  # @return [Integer]
2148
2175
  #
2149
2176
  # @!attribute [rw] cold_storage_options
2150
- # Specifies the `ColdStorageOptions` configuration for an
2151
- # Elasticsearch domain.
2177
+ # Specifies the `ColdStorageOptions` config for Elasticsearch Domain
2152
2178
  # @return [Types::ColdStorageOptions]
2153
2179
  #
2154
2180
  class ElasticsearchClusterConfig < Struct.new(
@@ -2893,11 +2919,31 @@ module Aws::ElasticsearchService
2893
2919
  include Aws::Structure
2894
2920
  end
2895
2921
 
2922
+ # Container for the parameters to the `ListDomainNames` operation.
2923
+ #
2924
+ # @note When making an API call, you may pass ListDomainNamesRequest
2925
+ # data as a hash:
2926
+ #
2927
+ # {
2928
+ # engine_type: "OpenSearch", # accepts OpenSearch, Elasticsearch
2929
+ # }
2930
+ #
2931
+ # @!attribute [rw] engine_type
2932
+ # Optional parameter to filter the output by domain engine type.
2933
+ # Acceptable values are 'Elasticsearch' and 'OpenSearch'.
2934
+ # @return [String]
2935
+ #
2936
+ class ListDomainNamesRequest < Struct.new(
2937
+ :engine_type)
2938
+ SENSITIVE = []
2939
+ include Aws::Structure
2940
+ end
2941
+
2896
2942
  # The result of a `ListDomainNames` operation. Contains the names of all
2897
- # Elasticsearch domains owned by this account.
2943
+ # domains owned by this account and their respective engine types.
2898
2944
  #
2899
2945
  # @!attribute [rw] domain_names
2900
- # List of Elasticsearch domain names.
2946
+ # List of domain names and respective engine types.
2901
2947
  # @return [Array<Types::DomainInfo>]
2902
2948
  #
2903
2949
  class ListDomainNamesResponse < Struct.new(
@@ -4235,6 +4281,7 @@ module Aws::ElasticsearchService
4235
4281
  # },
4236
4282
  # ],
4237
4283
  # },
4284
+ # dry_run: false,
4238
4285
  # }
4239
4286
  #
4240
4287
  # @!attribute [rw] domain_name
@@ -4316,6 +4363,15 @@ module Aws::ElasticsearchService
4316
4363
  # Specifies Auto-Tune options.
4317
4364
  # @return [Types::AutoTuneOptions]
4318
4365
  #
4366
+ # @!attribute [rw] dry_run
4367
+ # This flag, when set to True, specifies whether the
4368
+ # `UpdateElasticsearchDomain` request should return the results of
4369
+ # validation checks without actually applying the change. This flag,
4370
+ # when set to True, specifies the deployment mechanism through which
4371
+ # the update shall be applied on the domain. This will not actually
4372
+ # perform the Update.
4373
+ # @return [Boolean]
4374
+ #
4319
4375
  class UpdateElasticsearchDomainConfigRequest < Struct.new(
4320
4376
  :domain_name,
4321
4377
  :elasticsearch_cluster_config,
@@ -4330,7 +4386,8 @@ module Aws::ElasticsearchService
4330
4386
  :advanced_security_options,
4331
4387
  :node_to_node_encryption_options,
4332
4388
  :encryption_at_rest_options,
4333
- :auto_tune_options)
4389
+ :auto_tune_options,
4390
+ :dry_run)
4334
4391
  SENSITIVE = []
4335
4392
  include Aws::Structure
4336
4393
  end
@@ -4342,8 +4399,13 @@ module Aws::ElasticsearchService
4342
4399
  # The status of the updated Elasticsearch domain.
4343
4400
  # @return [Types::ElasticsearchDomainConfig]
4344
4401
  #
4402
+ # @!attribute [rw] dry_run_results
4403
+ # Contains result of DryRun.
4404
+ # @return [Types::DryRunResults]
4405
+ #
4345
4406
  class UpdateElasticsearchDomainConfigResponse < Struct.new(
4346
- :domain_config)
4407
+ :domain_config,
4408
+ :dry_run_results)
4347
4409
  SENSITIVE = []
4348
4410
  include Aws::Structure
4349
4411
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ElasticsearchService
50
50
 
51
- GEM_VERSION = '1.55.0'
51
+ GEM_VERSION = '1.59.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticsearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.59.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-22 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement